diff --git a/public/config/config.json b/public/config/config.json index 057ea1b..1dd79b3 100644 --- a/public/config/config.json +++ b/public/config/config.json @@ -1,6 +1,6 @@ { "title":"计量业务系统", - "versionByEqpt":"1.3.2.0", + "versionByEqpt":"1.3.3.2", "baseUrl": "http://111.198.10.15:21611", "baseUrlBusiness": "http://111.198.10.15:21606", "baseUrlLaboratory": "http://111.198.10.15:21610", diff --git a/public/config/config.json b/public/config/config.json index 057ea1b..1dd79b3 100644 --- a/public/config/config.json +++ b/public/config/config.json @@ -1,6 +1,6 @@ { "title":"计量业务系统", - "versionByEqpt":"1.3.2.0", + "versionByEqpt":"1.3.3.2", "baseUrl": "http://111.198.10.15:21611", "baseUrlBusiness": "http://111.198.10.15:21606", "baseUrlLaboratory": "http://111.198.10.15:21610", diff --git a/src/views/tested/MeasurementBusiness/detection/index.vue b/src/views/tested/MeasurementBusiness/detection/index.vue index 1c1c923..c944567 100644 --- a/src/views/tested/MeasurementBusiness/detection/index.vue +++ b/src/views/tested/MeasurementBusiness/detection/index.vue @@ -123,6 +123,14 @@ ElMessage.warning('无可打印内容') } } +onActivated(() => { + // 从编辑或者新增页面回来需要重新获取列表数据 + // $router.options.history.state.forward 上一次路由地址 + if (!($router.options.history.state.forward as string || '').includes('detail')) { + console.log('需要重新获取列表') + fetchData(false) + } +})