|
@@ -5,7 +5,7 @@
|
|
|
<view class="form-item">
|
|
|
<view class="title">
|
|
|
<text class="necessary">*</text>
|
|
|
- 户号:
|
|
|
+ 序号:
|
|
|
</view>
|
|
|
<input name="input" v-model="formMess.account_number" maxlength="50" :disabled="isdisabledFn"></input>
|
|
|
</view>
|
|
@@ -18,7 +18,7 @@
|
|
|
<input name="input" v-model="formMess.power_capacity" maxlength="10"></input>
|
|
|
</view>
|
|
|
<view class="form-item">
|
|
|
- <view class="title"><text class="necessary">*</text>线路:</view>
|
|
|
+ <view class="title"><text class="necessary">*</text>新线:</view>
|
|
|
<select name="" id="" filterable clearable v-model="formMess.route_id">
|
|
|
<option value="0">请选择</option>
|
|
|
<option :value=item.id v-for="item in routeListData" :title="item.route_name">{{ item.route_name}}
|
|
@@ -582,7 +582,7 @@
|
|
|
this.formMess = res.data.data[0];
|
|
|
},
|
|
|
|
|
|
- //线路名称下拉数据请求
|
|
|
+ //新线名称下拉数据请求
|
|
|
async getRoutrBox(params = {}) {
|
|
|
const res = await this.$myRequest({
|
|
|
url: 'Archives/getRoutrBox',
|
|
@@ -617,7 +617,7 @@
|
|
|
//提交验证
|
|
|
if (!this.formMess.account_number.replace(/^\s*/g, '')) {
|
|
|
uni.showToast({
|
|
|
- title: "请输入户号",
|
|
|
+ title: "请输入序号",
|
|
|
icon: "none"
|
|
|
});
|
|
|
return
|
|
@@ -638,7 +638,7 @@
|
|
|
}
|
|
|
if (!this.formMess.route_id) {
|
|
|
uni.showToast({
|
|
|
- title: "请输入所属线路",
|
|
|
+ title: "请输入所属新线",
|
|
|
icon: "none"
|
|
|
});
|
|
|
return
|