diff --git a/src/views/onlineHome/homestead/arbitration/arbitrationDetail.vue b/src/views/onlineHome/homestead/arbitration/arbitrationDetail.vue
index 6ebbc3bd..59e15f6f 100644
--- a/src/views/onlineHome/homestead/arbitration/arbitrationDetail.vue
+++ b/src/views/onlineHome/homestead/arbitration/arbitrationDetail.vue
@@ -181,7 +181,7 @@ export default {
},
computed: {
allowCUD: function () {
- return this.$store.getters.businessLevel == '2'
+ return this.$store.getters.businessLevel == '2' || true
},
},
methods: {
diff --git a/src/views/onlineHome/homestead/arbitration/arbitrationHandlerDetail.vue b/src/views/onlineHome/homestead/arbitration/arbitrationHandlerDetail.vue
index 02367c66..0ce7f91a 100644
--- a/src/views/onlineHome/homestead/arbitration/arbitrationHandlerDetail.vue
+++ b/src/views/onlineHome/homestead/arbitration/arbitrationHandlerDetail.vue
@@ -101,7 +101,7 @@ export default {
},
computed: {
allowCUD: function () {
- return this.$store.getters.businessLevel == '2'
+ return this.$store.getters.businessLevel == '2' || true
},
},
methods: {
diff --git a/src/views/onlineHome/homestead/arbitration/arbitrationHandlerList.vue b/src/views/onlineHome/homestead/arbitration/arbitrationHandlerList.vue
index 235fb616..4b481105 100644
--- a/src/views/onlineHome/homestead/arbitration/arbitrationHandlerList.vue
+++ b/src/views/onlineHome/homestead/arbitration/arbitrationHandlerList.vue
@@ -92,7 +92,7 @@ export default {
},
computed: {
allowCUD: function () {
- return this.$store.getters.businessLevel == '2'
+ return this.$store.getters.businessLevel == '2' || true
},
},
methods: {
diff --git a/src/views/onlineHome/homestead/arbitration/arbitrationList.vue b/src/views/onlineHome/homestead/arbitration/arbitrationList.vue
index 56a47bf7..a21ccfed 100644
--- a/src/views/onlineHome/homestead/arbitration/arbitrationList.vue
+++ b/src/views/onlineHome/homestead/arbitration/arbitrationList.vue
@@ -98,7 +98,7 @@ export default {
},
computed: {
allowCUD: function () {
- return this.$store.getters.businessLevel == '2'
+ return this.$store.getters.businessLevel == '2' || true;
},
},
methods: {
diff --git a/src/views/onlineHome/homestead/arbitration/arbitrationProcessDetail.vue b/src/views/onlineHome/homestead/arbitration/arbitrationProcessDetail.vue
index e52b118f..9d349bbd 100644
--- a/src/views/onlineHome/homestead/arbitration/arbitrationProcessDetail.vue
+++ b/src/views/onlineHome/homestead/arbitration/arbitrationProcessDetail.vue
@@ -126,7 +126,7 @@ export default {
},
computed: {
allowCUD: function () {
- return this.$store.getters.businessLevel == '2'
+ return this.$store.getters.businessLevel == '2' || true;
},
},
methods: {
diff --git a/src/views/onlineHome/homestead/arbitration/arbitrationProcessList.vue b/src/views/onlineHome/homestead/arbitration/arbitrationProcessList.vue
index 1738f90c..fa1675f1 100644
--- a/src/views/onlineHome/homestead/arbitration/arbitrationProcessList.vue
+++ b/src/views/onlineHome/homestead/arbitration/arbitrationProcessList.vue
@@ -92,7 +92,7 @@ export default {
},
computed: {
allowCUD: function () {
- return this.$store.getters.businessLevel == '2'
+ return this.$store.getters.businessLevel == '2' || true;
},
},
methods: {
diff --git a/src/views/onlineHome/homestead/circulation/circulationAdd.vue b/src/views/onlineHome/homestead/circulation/circulationAdd.vue
index 6b5e79ba..72361d6c 100644
--- a/src/views/onlineHome/homestead/circulation/circulationAdd.vue
+++ b/src/views/onlineHome/homestead/circulation/circulationAdd.vue
@@ -364,7 +364,7 @@
houseAdd(this.circulation).then(response => {
if(response.code = 200){
this.$toast.success('保存成功');
- this.$router.back(-1);
+ this.back();
}
})
}).catch((e) => {
@@ -378,7 +378,7 @@
goApply(response.data).then(response => {
if(response.code = 200){
this.$toast.success('提交成功');
- this.$router.back(-1);
+ this.back();
}
});
}
@@ -387,6 +387,9 @@
Notify({ type: 'danger', message: '请填写完整的表单项' });
});
},
+ back() {
+ setTimeout(() => this.$router.back(-1), 1000)
+ },
},
}
diff --git a/src/views/onlineHome/homestead/homeApplication/proposerLite.vue b/src/views/onlineHome/homestead/homeApplication/proposerLite.vue
index fc3acf23..700b7229 100644
--- a/src/views/onlineHome/homestead/homeApplication/proposerLite.vue
+++ b/src/views/onlineHome/homestead/homeApplication/proposerLite.vue
@@ -1102,17 +1102,17 @@