|
@@ -36,11 +36,11 @@
|
36
|
36
|
label="所属分组"
|
37
|
37
|
align="center"
|
38
|
38
|
></el-table-column>
|
39
|
|
- <!-- <el-table-column prop="sort" label="排序" align="center">
|
|
39
|
+ <el-table-column prop="sort" label="排序" align="center">
|
40
|
40
|
<template slot-scope="scope">
|
41
|
41
|
{{scope.row.sort?scope.row.sort:""}}
|
42
|
42
|
</template>
|
43
|
|
- </el-table-column> -->
|
|
43
|
+ </el-table-column>
|
44
|
44
|
<el-table-column label="操作" align="center">
|
45
|
45
|
<template slot-scope="scope">
|
46
|
46
|
<el-tooltip
|
|
@@ -138,9 +138,9 @@
|
138
|
138
|
></el-option>
|
139
|
139
|
</el-select>
|
140
|
140
|
</el-form-item>
|
141
|
|
- <!-- <el-form-item label="排序:">
|
|
141
|
+ <el-form-item label="排序:">
|
142
|
142
|
<el-input style="width:220px" v-model="number_form.sort"></el-input>
|
143
|
|
- </el-form-item> -->
|
|
143
|
+ </el-form-item>
|
144
|
144
|
<!-- <el-form-item>
|
145
|
145
|
<el-button @click="cancelModifyDeviceNumber">取 消</el-button>
|
146
|
146
|
<el-button :disabled="$store.getters.xt_user.subscibe.state==3?true:false" type="primary" @click="editDeviceNumberSubmitAction">保存</el-button>
|
|
@@ -185,7 +185,7 @@ export default {
|
185
|
185
|
number: "",
|
186
|
186
|
zone: "",
|
187
|
187
|
group: "",
|
188
|
|
- // sort:0,
|
|
188
|
+ sort:"",
|
189
|
189
|
},
|
190
|
190
|
formLabelWidth: "110px",
|
191
|
191
|
showEditDeviceNumber: false,
|
|
@@ -221,12 +221,12 @@ export default {
|
221
|
221
|
this.number_form.number = row.number;
|
222
|
222
|
this.number_form.zone = row.zone_id;
|
223
|
223
|
this.number_form.group = row.group_id;
|
224
|
|
- // if(row.sort == 0){
|
225
|
|
- // this.number_form.sort = ""
|
226
|
|
- // }
|
227
|
|
- // if(row.sort != 0){
|
228
|
|
- // this.number_form.sort = row.sort
|
229
|
|
- // }
|
|
224
|
+ if(row.sort == 0){
|
|
225
|
+ this.number_form.sort = ""
|
|
226
|
+ }
|
|
227
|
+ if(row.sort != 0){
|
|
228
|
+ this.number_form.sort = row.sort
|
|
229
|
+ }
|
230
|
230
|
|
231
|
231
|
this.showEditDeviceNumber = true;
|
232
|
232
|
},
|
|
@@ -235,6 +235,7 @@ export default {
|
235
|
235
|
this.number_form.number = "";
|
236
|
236
|
this.number_form.zone = "";
|
237
|
237
|
this.number_form.group = "";
|
|
238
|
+ this.number_form.sort = ""
|
238
|
239
|
this.$refs.form_number.clearValidate();
|
239
|
240
|
this.showEditDeviceNumber = false;
|
240
|
241
|
},
|
|
@@ -246,7 +247,7 @@ export default {
|
246
|
247
|
this.number_form.number,
|
247
|
248
|
this.number_form.zone,
|
248
|
249
|
this.number_form.group,
|
249
|
|
- // this.number_form.sort
|
|
250
|
+ this.number_form.sort
|
250
|
251
|
).then(rs => {
|
251
|
252
|
var resp = rs.data;
|
252
|
253
|
if (resp.state === 1) {
|
|
@@ -263,7 +264,7 @@ export default {
|
263
|
264
|
this.number_form.number,
|
264
|
265
|
this.number_form.zone,
|
265
|
266
|
this.number_form.group,
|
266
|
|
- // this.number_form.sort
|
|
267
|
+ this.number_form.sort
|
267
|
268
|
).then(rs => {
|
268
|
269
|
var resp = rs.data;
|
269
|
270
|
// console.log(resp.data)
|
|
@@ -280,7 +281,7 @@ export default {
|
280
|
281
|
number.group_id = resp.data.number.group_id;
|
281
|
282
|
number.zone_name = resp.data.number.zone_name;
|
282
|
283
|
number.group_name = resp.data.number.group_name;
|
283
|
|
-
|
|
284
|
+ number.sort = resp.data.number.sort;
|
284
|
285
|
break;
|
285
|
286
|
}
|
286
|
287
|
}
|