From e169657e21dba58f05aef5d82aacc8cb1e79a0d6 Mon Sep 17 00:00:00 2001 From: lisl <1223762861@qq.com> Date: Tue, 23 Nov 2021 13:17:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8B=E6=8B=89=E5=88=B7?= =?UTF-8?q?=E6=96=B0=E4=B8=8D=E5=AE=8C=E5=96=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FrontCode2/sunshine_levy/src/App.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/FrontCode2/sunshine_levy/src/App.vue b/FrontCode2/sunshine_levy/src/App.vue index 0ab7996..fed4ecc 100644 --- a/FrontCode2/sunshine_levy/src/App.vue +++ b/FrontCode2/sunshine_levy/src/App.vue @@ -55,7 +55,7 @@ export default { mode: false, isLoading: true, - show: true, + show: true }; }, created() { @@ -91,16 +91,16 @@ export default { }, callphone(phonenumber) { ZWJSBridge.phoneCall({ - corpId: phonenumber, + corpId: phonenumber }) - .then((result) => { + .then(result => { console.log(result); }) - .catch((error) => { + .catch(error => { console.log(error); }); - }, - }, + } + } };