diff --git a/src/views/manage/components/specialDiseaseRoute.vue b/src/views/manage/components/specialDiseaseRoute.vue
index ee18166..c1cd89a 100644
--- a/src/views/manage/components/specialDiseaseRoute.vue
+++ b/src/views/manage/components/specialDiseaseRoute.vue
@@ -82,6 +82,7 @@ import {
selectDiseaseCount, getDepartmentList, getdiseaseList
} from "@/api/system/specialDiseaseRoute";
export default {
+ props: ['routeId', 'routeName'],
name: "SpecialDiseaseRoute",
data() {
return {
@@ -131,10 +132,24 @@ export default {
created() {
this.getList();
},
+ mounted() {
+ this.handleselectId = this.routeId
+ this.handleselectName = this.routeName
+ },
watch: {
departmentName(val) {
this.infolists();
},
+ routeId(newValue, oldValue) {
+ if (newValue) {
+ this.handleselectId = newValue;
+ }
+ },
+ routeName(newValue, oldValue) {
+ if (newValue) {
+ this.handleselectName = newValue;
+ }
+ }
},
methods: {
nohandleselect() {
diff --git a/src/views/manage/continueSigning/index.vue b/src/views/manage/continueSigning/index.vue
index 570051c..2e964c5 100644
--- a/src/views/manage/continueSigning/index.vue
+++ b/src/views/manage/continueSigning/index.vue
@@ -94,7 +94,9 @@
-
+
+
@@ -142,8 +144,10 @@ import {
import { getAge } from "@/utils/age";
import { obtainendtime } from "@/utils/obtainendtime";
import { getToken } from '@/utils/auth'
+import specialDiseaseRoute from '../components/specialDiseaseRoute'
export default {
dicts: ['hardware_type'],
+ components: { specialDiseaseRoute },
name: "newSigning",
data() {
return {
@@ -204,6 +208,10 @@ export default {
this.info();
},
methods: {
+ ontemplate(item) {
+ this.signPackage.routeId = item.routeId
+ this.signPackage.routeName = item.routeName
+ },
//签约详情
info() {
let datetime = new Date();