|
@@ -337,7 +337,7 @@
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tr>
|
|
<tr v-for="(td, index) in exceptionData" :key="index">
|
|
<tr v-for="(td, index) in exceptionData" :key="index">
|
|
- <td>{{ index + 1 }}</td>
|
|
|
|
|
|
+ <td>{{ (currentPage - 1) * pageSize + index + 1}}</td>
|
|
<td>{{ td.center }}</td>
|
|
<td>{{ td.center }}</td>
|
|
<td>{{ td.zone }}</td>
|
|
<td>{{ td.zone }}</td>
|
|
<td>{{ td.name }}</td>
|
|
<td>{{ td.name }}</td>
|
|
@@ -567,7 +567,7 @@ export default {
|
|
this.fetchExceptionNum(
|
|
this.fetchExceptionNum(
|
|
this.currentSysId,
|
|
this.currentSysId,
|
|
tab.id,
|
|
tab.id,
|
|
- this.currentDialogCcode,
|
|
|
|
|
|
+ this.selectedDialogZone,
|
|
this.currentDialogLevel
|
|
this.currentDialogLevel
|
|
);
|
|
);
|
|
},
|
|
},
|
|
@@ -840,7 +840,9 @@ export default {
|
|
this.regulateDistrictData = [data];
|
|
this.regulateDistrictData = [data];
|
|
this.dialogDistrictData = cloneDeep(this.regulateDistrictData);
|
|
this.dialogDistrictData = cloneDeep(this.regulateDistrictData);
|
|
let firstNode = this.dialogDistrictData[0];
|
|
let firstNode = this.dialogDistrictData[0];
|
|
- this.selectedDialogZone = this.selectedZone = firstNode.ccode;
|
|
|
|
|
|
+ this.selectedDialogZone = firstNode.ccode;
|
|
|
|
+ this.selectedZone = firstNode.ccode;
|
|
|
|
+ this.currentDialogCcode = firstNode.ccode;
|
|
this.currentDialogLevel = firstNode.level;
|
|
this.currentDialogLevel = firstNode.level;
|
|
this.currentDistrictData = res.treeData;
|
|
this.currentDistrictData = res.treeData;
|
|
this.getSystemList(data.ccode, level).then((res) => {
|
|
this.getSystemList(data.ccode, level).then((res) => {
|
|
@@ -1167,6 +1169,7 @@ export default {
|
|
*@description 打开弹窗
|
|
*@description 打开弹窗
|
|
*/
|
|
*/
|
|
openMaskPanel(system) {
|
|
openMaskPanel(system) {
|
|
|
|
+ this.currentSysId = system.smsxt;
|
|
this.tabData = [];
|
|
this.tabData = [];
|
|
this.selectedDialogZone = this.selectedZone;
|
|
this.selectedDialogZone = this.selectedZone;
|
|
system.restAssetTypeList.forEach((item) => {
|
|
system.restAssetTypeList.forEach((item) => {
|
|
@@ -1363,7 +1366,6 @@ export default {
|
|
promiseAll.push(promise);
|
|
promiseAll.push(promise);
|
|
});
|
|
});
|
|
Promise.all(promiseAll).then((result) => {
|
|
Promise.all(promiseAll).then((result) => {
|
|
- console.log(layerArr);
|
|
|
|
this.loadingInstance.close();
|
|
this.loadingInstance.close();
|
|
if (this.currentLevel === 2) {
|
|
if (this.currentLevel === 2) {
|
|
layerArr.forEach((item) => {
|
|
layerArr.forEach((item) => {
|