소스 검색

Merge branch 'fix-load' into develop

develop
chenJinxu 11 달 전
부모
커밋
ff20dcb0fb
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      src/config/models.js
  2. +4
    -1
      src/views/gps-card-frontend/device-setting/index.vue

+ 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/',


+ 4
- 1
src/views/gps-card-frontend/device-setting/index.vue 파일 보기

@@ -104,7 +104,10 @@ 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


Loading…
취소
저장