This commit is contained in:
weipengfei 2023-12-23 10:01:16 +08:00
parent 558e4844c6
commit 1a05002050
2 changed files with 4 additions and 2 deletions

View File

@ -238,7 +238,7 @@
icon: '/static/applet/icons.png', icon: '/static/applet/icons.png',
data: { data: {
id: "__UNI__D087881", id: "__UNI__D087881",
url: "https://lihai001.oss-cn-chengdu.aliyuncs.com/def/c5a3b202312221802534062.wgt", url: "https://lihai001.oss-cn-chengdu.aliyuncs.com/def/3b1b1202312230957197588.wgt",
}, },
type: 4 type: 4
} }

View File

@ -338,6 +338,7 @@
import { import {
HTTP_REQUEST_URL HTTP_REQUEST_URL
} from '@/config/app'; } from '@/config/app';
import { Toast } from '../../../libs/uniApi';
const app = getApp(); const app = getApp();
export default { export default {
components: { components: {
@ -805,8 +806,9 @@
that.merchantData.social_credit_code = res.data.register_number; that.merchantData.social_credit_code = res.data.register_number;
// that.$set('merchantData', that.merchantData); // that.$set('merchantData', that.merchantData);
uni.hideLoading(); uni.hideLoading();
}).catch(()=>{ }).catch((e)=>{
uni.hideLoading(); uni.hideLoading();
Toast(e)
}) })
}); });
}, },