diff --git a/pages/eight_assignments/confined_space/gas/list.vue b/pages/eight_assignments/confined_space/gas/list.vue
index b44d5e6..9cb9b82 100644
--- a/pages/eight_assignments/confined_space/gas/list.vue
+++ b/pages/eight_assignments/confined_space/gas/list.vue
@@ -29,7 +29,7 @@
分析人:{{ item.ANALYZE_USER_NAME }}
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -77,37 +77,52 @@ export default {
this.form = resData.data.aux[0] || {}
},
async fnSubmit() {
- if (!this.form.GAS_NAME1 && !this.form.GAS_NAME2 && !this.form.GAS_NAME3 && !this.form.GAS_NAME4) {
- uni.$u.toast('最少填写一项气体名称')
- return
- }
- for (let i = 0; i < 4; i++) {
- if (this.form['GAS_NAME' + (i + 1)] && !this.form['GAS_STANDARD' + (i + 1)]) {
- uni.$u.toast('请填写气体名称(' + this.form['GAS_NAME' + (i + 1)] + ')的合格标准')
+ if (this.isView === '1') {
+ uni.$u.route({
+ url: '/pages/eight_assignments/confined_space/gas/list',
+ params: {
+ isView: this.isView,
+ GAS_NAME1: this.form.GAS_NAME1,
+ GAS_NAME2: this.form.GAS_NAME2,
+ GAS_NAME3: this.form.GAS_NAME3,
+ GAS_NAME4: this.form.GAS_NAME4,
+ EW_RU_TASK_ID: this.EW_RU_TASK_ID,
+ EW_RU_JOB_ID: this.EW_RU_JOB_ID
+ }
+ })
+ } else {
+ if (!this.form.GAS_NAME1 && !this.form.GAS_NAME2 && !this.form.GAS_NAME3 && !this.form.GAS_NAME4) {
+ uni.$u.toast('最少填写一项气体名称')
return
}
- if (this.form['GAS_STANDARD' + (i + 1)] && !this.form['GAS_NAME' + (i + 1)]) {
- uni.$u.toast('请填写合格标准(' + this.form['GAS_STANDARD' + (i + 1)] + ')的气体名称')
- return
+ for (let i = 0; i < 4; i++) {
+ if (this.form['GAS_NAME' + (i + 1)] && !this.form['GAS_STANDARD' + (i + 1)]) {
+ uni.$u.toast('请填写气体名称(' + this.form['GAS_NAME' + (i + 1)] + ')的合格标准')
+ return
+ }
+ if (this.form['GAS_STANDARD' + (i + 1)] && !this.form['GAS_NAME' + (i + 1)]) {
+ uni.$u.toast('请填写合格标准(' + this.form['GAS_STANDARD' + (i + 1)] + ')的气体名称')
+ return
+ }
}
- }
- await setConfinedSpaceGasInfoSave({
- wh: {...this.form},
- EW_RU_TASK_ID: this.EW_RU_TASK_ID,
- EW_RU_JOB_ID: this.EW_RU_JOB_ID,
- postMethod: 'application/json',
- })
- uni.$u.route({
- url: '/pages/eight_assignments/confined_space/gas/list',
- params: {
- GAS_NAME1: this.form.GAS_NAME1,
- GAS_NAME2: this.form.GAS_NAME2,
- GAS_NAME3: this.form.GAS_NAME3,
- GAS_NAME4: this.form.GAS_NAME4,
+ await setConfinedSpaceGasInfoSave({
+ wh: {...this.form},
EW_RU_TASK_ID: this.EW_RU_TASK_ID,
EW_RU_JOB_ID: this.EW_RU_JOB_ID,
- }
- })
+ postMethod: 'application/json',
+ })
+ uni.$u.route({
+ url: '/pages/eight_assignments/confined_space/gas/list',
+ params: {
+ GAS_NAME1: this.form.GAS_NAME1,
+ GAS_NAME2: this.form.GAS_NAME2,
+ GAS_NAME3: this.form.GAS_NAME3,
+ GAS_NAME4: this.form.GAS_NAME4,
+ EW_RU_TASK_ID: this.EW_RU_TASK_ID,
+ EW_RU_JOB_ID: this.EW_RU_JOB_ID,
+ }
+ })
+ }
}
},
}
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 77834bc..4ddc6f4 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -80,6 +80,7 @@ export default {
resData.PHOTO = this.$filePath + resData.PHOTO
}
await this.$store.dispatch('setUserInfo', resData);
+
uni.$u.route({
url: '/pages/index/index',
type: 'reLaunch'
diff --git a/utils/request.js b/utils/request.js
index 0d0bb95..2b950e5 100644
--- a/utils/request.js
+++ b/utils/request.js
@@ -1,7 +1,7 @@
import refreshToken from "../api/refreshToken";
// let requestPath = 'http://192.168.0.102:8059/xgf_gwj_2.0/'; // 后台请求地址
-let requestPath = 'http://192.168.0.101:8059/xgf_gwj_2.0/'; // 后台请求地址
+let requestPath = 'http://127.0.0.1:8059/xgf_gwj_2.0/'; // 后台请求地址
// let requestPath = 'https://skqhdg.porthebei.com:9006/qa-prevention-xgf/'; // 后台请求地址
// let requestPath = 'https://qgxgf.qhdsafety.com/qa-prevention-xgf/'; // 外网地址
import store from '../store/index'
@@ -146,11 +146,3 @@ function uploads(url, data) {
}
export {post, upload, uploads}
-
-setInterval(async () => {
- if (uni.getStorageSync('tokenTime') == null) return;
- if (dayjs().diff(dayjs(uni.getStorageSync('tokenTime')), "minute") >= 0.5) {
- uni.setStorageSync('tokenTime', dayjs().format("YYYY-MM-DD HH:mm:ss"))
- await setRefreshToken();
- }
-}, 1000 * 60);