26 lines
600 B
Plaintext
26 lines
600 B
Plaintext
<t-navbar title="选择康复计划"
|
|
left-arrow
|
|
fixed="{{false}}" />
|
|
|
|
<view class="content">
|
|
<t-input value="{{formData.hospital}}"
|
|
borderless
|
|
label="医院"
|
|
placeholder="请输入医院名称"
|
|
bind:change="onInputChange"
|
|
data-field="hospital" />
|
|
<t-input value="{{formData.department}}"
|
|
borderless
|
|
label="科室"
|
|
clearable="{{false}}"
|
|
placeholder="请输入科室名称"
|
|
bind:change="onInputChange"
|
|
data-field="department" />
|
|
|
|
<view class="btn">
|
|
<t-button block
|
|
theme="primary" bind:tap="onSubmit">
|
|
确认
|
|
</t-button>
|
|
</view>
|
|
</view> |