You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
595 B
16 lines
595 B
<mp-dialog show="{{show}}" title="添加子单位" bindbuttontap="onTapButton" buttons="{{buttons}}">
|
|
<view wx:if="{{show}}">
|
|
<view class="input-wrap">
|
|
<text class="key">所属单位</text>
|
|
<input class="value disable" disabled="1" value="{{school_name}}"></input>
|
|
</view>
|
|
<view class="input-wrap">
|
|
<text class="key require">子单位名称</text>
|
|
<input class="value" bindinput="updateName"></input>
|
|
</view>
|
|
<view class="input-wrap">
|
|
<text class="key">说明</text>
|
|
<input class="value" bindinput="updateRemarks"></input>
|
|
</view>
|
|
</view>
|
|
</mp-dialog> |