Quellcode durchsuchen

feature

- 心理建模进度查询
    - 增加 具体返回url
master
JinxChen vor 1 Jahr
Ursprung
Commit
d2cf5f8db0
3 geänderte Dateien mit 10 neuen und 3 gelöschten Zeilen
  1. +7
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +2
    -1
      src/views/psychological-modeling/index.vue

+ 7
- 1
README.md Datei anzeigen

@@ -498,4 +498,10 @@ update
`2023.6.16`
update
- 心理建模进度查询
- 增加 返回按钮
- 增加 返回按钮

## v1.0.62
`2023.6.17`
feature
- 心理建模进度查询
- 增加 具体返回url

+ 1
- 1
src/config/models.js Datei anzeigen

@@ -5,7 +5,7 @@
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js
* @description:
*/
export const VERSION_MODEL = '1.0.61F'; //版本号
export const VERSION_MODEL = '1.0.62F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


+ 2
- 1
src/views/psychological-modeling/index.vue Datei anzeigen

@@ -96,7 +96,8 @@ export default {
},
methods: {
onNavBack() {
this.$router.go(-1);
let baseUrl = process.env.NODE_ENV === "production" ? 'https://ai.ssjlai.com/parentweb' : 'https://id.ssjlai.com/parentweb';
window.location.href = `${baseUrl}/#/device`;
},
async init() {
let ssjlToken = this.$store.getters.ssjlToken;


Laden…
Abbrechen
Speichern