From ef2b0be11f0472976f7363c0ede346b111b67a21 Mon Sep 17 00:00:00 2001 From: kongdeqiang <123456> Date: 星期四, 29 十二月 2022 16:38:56 +0800 Subject: [PATCH] 修改前端页面 --- src/components/page/Index2.vue | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/components/page/Index2.vue b/src/components/page/Index2.vue index fa4cf23..a32de5c 100644 --- a/src/components/page/Index2.vue +++ b/src/components/page/Index2.vue @@ -34,7 +34,7 @@ <!--<el-input v-model="statisticData.code" readonly></el-input>--> </el-form-item> <el-form-item style="display: flex;justify-content: center;margin-top: 4.498vh" label-width="0" v-show="showFlag"> - <el-button class="jiaofei-btn" type="primary" @click="pay()">鍘荤即璐�</el-button> + <el-button class="jiaofei-btn" type="primary" @click="pay()" :loading="payFlag">鍘荤即璐�</el-button> </el-form-item> </el-form> <el-form label-width="100px" label-position="left"> @@ -59,6 +59,7 @@ name: 'dashboard', data() { return { + payFlag:false, outParkId:"", statisticData:{ @@ -81,9 +82,10 @@ //this.outParkId = cs.code; this.code2 = cs.code; this.$byutil.postData(this, this.$systemconfig.basePath + '/outPark/findByBarrierCode', {code:cs.code}, res => { - this.statisticData = res.obj; + this.statisticData = res.data; this.outParkId = this.statisticData.id; this.status3 = this.statisticData.status3; + this.payFlag = false if(this.status3==1){ this.$message({ message: '鎮ㄦ湁杩濈珷鏈鐞嗭紝璇峰厛澶勭悊鎴栬仈绯诲仠杞﹀満绠$悊浜哄憳', @@ -95,21 +97,22 @@ }, methods: { pay(){ + this.payFlag = true; if(this.status3==1){ this.$message({ message: '鎮ㄦ湁杩濈珷鏈鐞嗭紝璇峰厛澶勭悊鎴栬仈绯诲仠杞﹀満绠$悊浜哄憳', type: 'error', - duration:5000, + duration:3000, }); return; } this.$byutil.postData(this, this.$systemconfig.basePath + '/ffPay/park', {id:this.outParkId}, res => { this.$message({ - message: '10绉掑悗鑷姩璺宠浆鍒版敮浠橀〉闈紝闃叉鍐呭缃戞暟鎹悓姝ュ欢杩燂紝璇风◢绛�', + message: '2绉掑悗鑷姩璺宠浆鍒版敮浠橀〉闈紝闃叉鍐呭缃戞暟鎹悓姝ュ欢杩燂紝璇风◢绛�', type: 'success', - duration:10000, + duration:2000, }); - setTimeout(function(){window.location.href = res.obj;},10000); + setTimeout(function(){window.location.href = res.msg;},2000); this.showFlag = false; }) }, @@ -117,7 +120,7 @@ if(this.carNo){ this.$byutil.postData(this, this.$systemconfig.basePath + '/outPark/outPark2', {code2:this.code2,carNo:this.carNo}, res => { if(res.success){ - this.outParkId = res.obj.id; + this.outParkId = res.data.id; this.pay(); this.showFlag = false; }else{ @@ -135,7 +138,7 @@ }); } - } + }, } } -- Gitblit v1.9.1