diff --git a/src/views/manage/Auditing/index.vue b/src/views/manage/Auditing/index.vue
index 13f3ff3..8a6e57b 100644
--- a/src/views/manage/Auditing/index.vue
+++ b/src/views/manage/Auditing/index.vue
@@ -5,11 +5,18 @@
-
+
取 消
审核通过
忽略
+
+ 取 消
+ 审核通过
+ 忽略
+
@@ -100,7 +107,7 @@
@@ -129,12 +136,17 @@ export default {
list: {},
// nodelist: [],
lookitem: {},
+ routeCheckStatus: undefined,
};
},
created() {
this.info();
},
methods: {
+ //路径审核页面传值
+ onrouteCheckStatus(e) {
+ this.routeCheckStatus = e.routeCheckStatus
+ },
portraitlist(val) {
console.log(val, '999999999')
},
@@ -151,27 +163,46 @@ export default {
confirmButtonText: '确定',
cancelButtonText: '取消',
}).then(({ value }) => {
- let obj = {
- routeCheckPerson: JSON.parse(localStorage.getItem('user')).nickName,
- routeCheckRemark: value,
- routeCheckStatus: 'DISAGREE',
- // manageRouteNodeIds: manageRouteNodeIds
+ if (this.activeNametab == 'route') {
+ let obj = {
+ routeCheckRemark: value,
+ routeCheckStatus: 'DISAGREE',
+ signPatientRecordId: this.$route.query.signRecordId
+ }
+ updateRouteCheckStatus(obj).then(res => {
+ this.$notify({
+ type: 'success',
+ title: '提示',
+ message: '路径审核已忽略',
+ duration: 3000
+ });
+ setTimeout(() => {
+ this.$refs.PathReview.info();
+ }, 1500);
+ })
+ } else {
+ let obj = {
+ routeCheckPerson: JSON.parse(localStorage.getItem('user')).nickName,
+ routeCheckRemark: value,
+ routeCheckStatus: 'DISAGREE',
+ // manageRouteNodeIds: manageRouteNodeIds
+ }
+ audit(obj).then(res => {
+ this.$notify({
+ type: 'success',
+ title: '提示',
+ message: '已忽略,即将返回上一页',
+ duration: 3000
+ });
+ setTimeout(() => {
+ this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
+ this.$router.push({
+ path: "/task/manualReview",
+ });
+ })
+ }, 3000);
+ })
}
- audit(obj).then(res => {
- this.$notify({
- type: 'success',
- title: '提示',
- message: '已忽略,即将返回上一页',
- duration: 3000
- });
- setTimeout(() => {
- this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
- this.$router.push({
- path: "/task/manualReview",
- });
- })
- }, 3000);
- })
})
},
//审核
diff --git a/src/views/manage/components/PathReview.vue b/src/views/manage/components/PathReview.vue
index 73b50b5..a6d1b75 100644
--- a/src/views/manage/components/PathReview.vue
+++ b/src/views/manage/components/PathReview.vue
@@ -152,7 +152,7 @@
路径信息
-