poiId:{{ item.poiId }}
+水域类型:{{ item.title }}
+水域名称:{{ item.address }}
+设置时间:{{ item.createTime }}
+ +暂无数据~
+From bb6baa43e63eab3aef4fc2ec04022820064e13ce Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Mon, 25 Sep 2023 09:16:45 +0800 Subject: [PATCH 1/7] =?UTF-8?q?update=20-=20=E9=97=AE=E5=8D=B7=E8=B0=83?= =?UTF-8?q?=E6=9F=A5=20=20=20=20=20-=20=E4=BF=AE=E6=94=B9=20=E7=AD=94?= =?UTF-8?q?=E9=A2=98=E5=AE=8C=E6=88=90=E5=90=8E=E8=BF=94=E5=9B=9E=E6=96=B9?= =?UTF-8?q?=E6=B3=95=EF=BC=8C=E4=BF=AE=E5=A4=8D=E4=BD=BF=E7=94=A8=E6=B5=8F?= =?UTF-8?q?=E8=A7=88=E5=99=A8=E5=8E=9F=E7=94=9F=E8=BF=94=E5=9B=9E=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E5=8F=AF=E8=83=BD=E4=BC=9A=E5=AF=BC=E8=87=B4=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E8=BF=94=E5=9B=9E=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 ++++++++- src/config/models.js | 4 ++-- src/views/psychological-questionnaire/index.vue | 9 ++++++++- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 15d314f..edeb1b5 100644 --- a/README.md +++ b/README.md @@ -704,4 +704,11 @@ update # 无基础套餐时 #是零川或者小台风,跳转话费查询页面 #否则跳转错误页面 - - 增加 一个物联网卡的错误页面 \ No newline at end of file + - 增加 一个物联网卡的错误页面 + + +## v1.0.88 +`2023.9.25` +update +- 问卷调查 + - 修改 答题完成后返回方法,修复使用浏览器原生返回方法可能会导致页面返回异常 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index b1405c7..bbdac91 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -1,11 +1,11 @@ /* * @Date: 2021-11-20 10:26:39 * @LastEditors: JinxChen - * @LastEditTime: 2023-09-18 10:45:59 + * @LastEditTime: 2023-09-25 09:15:41 * @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.87F'; //版本号 +export const VERSION_MODEL = '1.0.88F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/psychological-questionnaire/index.vue b/src/views/psychological-questionnaire/index.vue index 798d0ec..28744c2 100644 --- a/src/views/psychological-questionnaire/index.vue +++ b/src/views/psychological-questionnaire/index.vue @@ -203,7 +203,14 @@ export default { if (re.success) { this.$toast('问卷提交成功', 3000) setTimeout(() => { - window.history.back(-1) + // 2023.09.25 使用此返回方法可能会导致页面返回异常,故使用路由跳转到指定页面 + this.$router.replace({ + name: 'PsychologicalModeling', + query: { + uid: this.uid + } + }) + /* window.history.back(-1); */ }, 3000) } else { //this.$toast(re.msg); From 9a5e43f7e2f6e708746bf7c858eb3db1ea794466 Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Mon, 9 Oct 2023 09:48:05 +0800 Subject: [PATCH 2/7] =?UTF-8?q?update=20-=20=E9=97=AE=E5=8D=B7=E8=B0=83?= =?UTF-8?q?=E6=9F=A5=20=20=20=20=20-=20=E5=A2=9E=E5=8A=A0=20=E7=AD=94?= =?UTF-8?q?=E9=A2=98=E5=AE=8C=E6=88=90=E8=BF=94=E5=9B=9E=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=90=8E=E5=A6=82=E6=9E=9C=E6=98=AF=E4=BB=8E=E9=9A=8F=E6=89=8B?= =?UTF-8?q?=E7=B2=BE=E7=81=B5=E5=85=AC=E4=BC=97=E5=8F=B7=E8=B0=83=E8=BF=87?= =?UTF-8?q?=E6=9D=A5=E7=9A=84=E7=94=A8=E6=88=B7=EF=BC=8C=E5=88=99=E7=AC=AC?= =?UTF-8?q?8=2011=E9=A2=98=E6=96=87=E5=AD=97=E5=8F=98=E7=BA=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 ++++++++-- src/config/models.js | 4 ++-- .../psychological-questionnaire/index.vue | 22 +++++++++++++++---- 3 files changed, 29 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index edeb1b5..85ba996 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -711,4 +711,11 @@ update `2023.9.25` update - 问卷调查 - - 修改 答题完成后返回方法,修复使用浏览器原生返回方法可能会导致页面返回异常 \ No newline at end of file + - 修改 答题完成后返回方法,修复使用浏览器原生返回方法可能会导致页面返回异常 + + +## v1.0.89 +`2023.10.9` +update +- 问卷调查 + - 增加 答题完成返回错误后如果是从随手精灵公众号调过来的用户,则第8 11题文字变红 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index bbdac91..25ef92d 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -1,11 +1,11 @@ /* * @Date: 2021-11-20 10:26:39 * @LastEditors: JinxChen - * @LastEditTime: 2023-09-25 09:15:41 + * @LastEditTime: 2023-10-09 09:38:30 * @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.88F'; //版本号 +export const VERSION_MODEL = '1.0.89F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/psychological-questionnaire/index.vue b/src/views/psychological-questionnaire/index.vue index 28744c2..e1cdfaa 100644 --- a/src/views/psychological-questionnaire/index.vue +++ b/src/views/psychological-questionnaire/index.vue @@ -22,7 +22,7 @@
{{ item.title }} | +
---|
+ {{ row[col.key] }} + | +
查看数据
+poiId:{{ item.poiId }}
+水域类型:{{ item.title }}
+水域名称:{{ item.address }}
+设置时间:{{ item.createTime }}
+ +暂无数据~
+poiId:{{ item.poiId }}
@@ -30,6 +30,7 @@ export default { data(){ return { drownList: [], + loading: false, } }, computed: { @@ -58,6 +59,8 @@ export default { this.$toast.success({ message: '数据加载完成' }); } } + }).catch(() => {}).finally(() => { + this.loading = true; }) }, } @@ -139,7 +142,7 @@ export default { margin: 100px auto 0; background-size: 165px 120px; p { - @include colorAndFont(#999, 28); + @include colorAndFont(#999, 16); margin: 100px auto 0; } } From 71e54f29005a0069e0a050865029baa555b1fa34 Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Mon, 16 Oct 2023 10:47:50 +0800 Subject: [PATCH 6/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E5=8A=9F=E8=80=97?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E9=A1=B5=E9=9D=A2=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/gps-card-frontend/device-power/index.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/views/gps-card-frontend/device-power/index.vue b/src/views/gps-card-frontend/device-power/index.vue index 052da50..3984aff 100644 --- a/src/views/gps-card-frontend/device-power/index.vue +++ b/src/views/gps-card-frontend/device-power/index.vue @@ -1,7 +1,7 @@ @@ -28,7 +28,7 @@