|
@@ -7,22 +7,22 @@
|
|
|
<text class="necessary">*</text>
|
|
|
户号:
|
|
|
</view>
|
|
|
- <input name="input" v-model="formMess.account_number"></input>
|
|
|
+ <input name="input" v-model="formMess.account_number" maxlength="8"></input>
|
|
|
</view>
|
|
|
<view class="form-item">
|
|
|
<view class="title"><text class="necessary">*</text>流变变比:</view>
|
|
|
- <input name="input" v-model="formMess.rheological_change"></input>
|
|
|
+ <input name="input" v-model="formMess.rheological_change" maxlength="8"></input>
|
|
|
</view>
|
|
|
<view class="form-item">
|
|
|
<view class="title" style="width:240rpx"><text class="necessary">*</text>单路电源容量:</view>
|
|
|
- <input name="input" v-model="formMess.power_capacity"></input>
|
|
|
+ <input name="input" v-model="formMess.power_capacity" maxlength="8"></input>
|
|
|
</view>
|
|
|
<view class="form-item">
|
|
|
<view class="title"><text class="necessary">*</text>线路:</view>
|
|
|
<!-- <input name="input" v-model="formMess.route_id"></input> -->
|
|
|
<select name="" id="" filterable clearable v-model="formMess.route_id">
|
|
|
<option value="0">请选择</option>
|
|
|
- <option :value=item.id v-for="item in routeListData">{{ item.route_name}}</option>
|
|
|
+ <option :value=item.id v-for="item in routeListData" :title="item.route_name">{{ item.route_name}}</option>
|
|
|
</select>
|
|
|
|
|
|
|
|
@@ -30,8 +30,9 @@
|
|
|
<view class="form-item">
|
|
|
<view class="title"><text class="necessary">*</text>站点名称:</view>
|
|
|
<select name="" id="" v-model="formMess.site_id" filterable clearable>
|
|
|
- <option value="0">请选择</option>
|
|
|
- <option :value="item.id" v-for="item in siteListData">{{ item.site_name}}</option>
|
|
|
+ <optgroup><option value="0">请选择</option>
|
|
|
+ <option :value="item.id" v-for="item in siteListData">{{ item.site_name}}</option></optgroup>
|
|
|
+
|
|
|
</select>
|
|
|
</view>
|
|
|
<view class="form-item">
|