Przeglądaj źródła

去掉权限与模板消息

wgl 4 lat temu
rodzic
commit
135aeb4212

+ 1 - 2
src/projects/business/router/master.js

@@ -1274,10 +1274,9 @@ const routesMaster = [
 						name: 'MasterHealthCodeList',
 						component: () => import('../views/Master/Health/CodeList.vue'),
 						meta: {
-							requireAuth: true,
+							requireAuth: false,
 							role: [],
 							title: '健康码明细列表',
-							mode: true
 						}
 					},
 				],

+ 14 - 12
src/projects/business/views/Other/Return/Info.vue

@@ -166,20 +166,22 @@
 			tel(phone) {
 				window.top.location.href = 'tel:' + phone;
 			},
-			asynCallBack() {},
+			asynCallBack() {
+				//获取详情
+				this.getInfo();
+				var _this = this;
+				//获取居住地
+				this.getregionList('1', function(list) {
+					_this.liveRegionIdList = list;
+				})
+				//获取始发地
+				this.getregionList('2', function(list) {
+					_this.originIdList = list;
+				})
+			},
 		},
 		mounted() {
-			//获取详情
-			this.getInfo();
-			var _this = this;
-			//获取居住地
-			this.getregionList('1', function(list) {
-				_this.liveRegionIdList = list;
-			})
-			//获取始发地
-			this.getregionList('2', function(list) {
-				_this.originIdList = list;
-			})
+
 		},
 		destroyed() {},
 		computed: {