diff --git a/src/views/system/agencyCategory/index.vue b/src/views/system/agencyCategory/index.vue
index 7932595..03ff162 100644
--- a/src/views/system/agencyCategory/index.vue
+++ b/src/views/system/agencyCategory/index.vue
@@ -304,6 +304,9 @@ export default {
const id = row.id || this.ids;
getAgencyCategory(id).then((response) => {
this.form = response.data;
+ if (!this.form.categorySort) {
+ this.form.categorySort = undefined
+ }
this.open = true;
this.title = "修改机构类别";
});
@@ -383,7 +386,11 @@ export default {
};
diff --git a/src/views/system/subdivision/index.vue b/src/views/system/subdivision/index.vue
index 95bc14b..55fe9ac 100644
--- a/src/views/system/subdivision/index.vue
+++ b/src/views/system/subdivision/index.vue
@@ -218,6 +218,9 @@ export default {
const id = row.id || this.ids;
getSubdivision(id).then((response) => {
this.form = response.data;
+ if (!this.form.sort) {
+ this.form.sort = undefined
+ }
this.open = true;
this.title = "修改细分类别信息";
});
@@ -292,3 +295,8 @@ export default {
},
};
+
diff --git a/src/views/system/taskStatus/index.vue b/src/views/system/taskStatus/index.vue
index 0912128..390d098 100644
--- a/src/views/system/taskStatus/index.vue
+++ b/src/views/system/taskStatus/index.vue
@@ -274,7 +274,6 @@ export default {
this.form = response.data;
if (!this.form.taskStatusSort) {
this.form.taskStatusSort = undefined
-
}
this.open = true;
this.title = "修改任务状态字典";
@@ -342,8 +341,8 @@ export default {
}
};
-
diff --git a/src/views/system/taskType/index.vue b/src/views/system/taskType/index.vue
index aa4c85a..1f04d7f 100644
--- a/src/views/system/taskType/index.vue
+++ b/src/views/system/taskType/index.vue
@@ -229,6 +229,9 @@ export default {
const id = row.id || this.ids
getTaskType(id).then(response => {
this.form = response.data;
+ if(!this.form.taskTypeSort){
+ this.form.taskTypeSort=undefined
+ }
this.open = true;
this.title = "修改任务类型字典";
});