ソースを参照

Merge branch 'fix-load' into test

test
chenJinxu 11ヶ月前
コミット
24120bb3fc
3個のファイルの変更13行の追加4行の削除
  1. +7
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +5
    -2
      src/views/gps-card-frontend/device-setting/index.vue

+ 7
- 1
README.md ファイルの表示

@@ -865,4 +865,10 @@ update
`2023.12.12`
update
- 心理监测周报列表
- 增加 无数据文字提示
- 增加 无数据文字提示

## v1.0.110
`2023.12.13`
update
- 设备设置列表
- 优化 全部接口响应完成才加载完成

+ 1
- 1
src/config/models.js ファイルの表示

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


+ 5
- 2
src/views/gps-card-frontend/device-setting/index.vue ファイルの表示

@@ -104,12 +104,15 @@ export default {
const promise = Promise.all(allPromise);
try {
const result = await promise;
if(result) {
const isLoadAllSuccess = result.every(item => {
return item;
});
if(isLoadAllSuccess) {
this.$toast.success({
message: '数据加载完成',
duration: 2000
});
}
};
} catch(error){
console.log('error', error);
this.$toast.clear();


読み込み中…
キャンセル
保存