safecheck-client 4.0.0-2 → 4.0.0-21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from "vue";
3
+
4
+ //手机特殊目录注册到该文件中
5
+ let specialComp = {
6
+ 'safecheck-order-v': (resolve) => { require(['./android/SafecheckOrderV'], resolve) },
7
+ 'safecheck-userinfo': (resolve) => { require(['./android/SafecheckUserInfo'], resolve) },
8
+
9
+ }
10
+ exports.specialComp = specialComp
11
+
12
+
13
+
14
+
@@ -0,0 +1,12 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from "vue";
3
+
4
+ //手机特殊目录注册到该文件中
5
+ let specialComp = {
6
+
7
+ }
8
+ exports.specialComp = specialComp
9
+
10
+
11
+
12
+
@@ -709,7 +709,8 @@ export default {
709
709
  }).then((res) => {
710
710
  if (res.data.code == 200) {
711
711
  this.loading = false;
712
- this.$back()
712
+ this.$root.$emit('audit-status-changed')
713
+ this.$emit('showback')
713
714
  }
714
715
  })
715
716
  },
@@ -738,6 +739,7 @@ export default {
738
739
  this.loading = false;
739
740
  this.message = '';
740
741
  this.showModel = false;
742
+ this.$root.$emit('audit-status-changed')
741
743
  this.back();
742
744
  }
743
745
  })
@@ -1081,16 +1083,17 @@ export default {
1081
1083
  back() {
1082
1084
  if (this.role == 'inspect') {
1083
1085
  if (!this.isStrat) {
1084
- this.$back()
1086
+ this.$emit('showback')
1085
1087
  return
1086
1088
  } else {
1087
1089
  this.savePaper(true).then(() => {
1088
- this.$back()
1090
+ this.$emit('showback')
1089
1091
  this.isStrat = false
1090
1092
  })
1091
1093
  }
1092
1094
  } else {
1093
- this.$back()
1095
+ this.$root.$emit('audit-status-changed')
1096
+ this.$emit('showback')
1094
1097
  }
1095
1098
  },
1096
1099
  checkIsStart() {