Commit b28b868c authored by 罗林杰's avatar 罗林杰

修改互换微信逻辑

parent 7f658efd
...@@ -77,6 +77,7 @@ ...@@ -77,6 +77,7 @@
<ELM ref="elmBlack" :msg='tipMsg' :isConfirm="isBlackConfirm" @confirm="blackConfirm"></ELM> <ELM ref="elmBlack" :msg='tipMsg' :isConfirm="isBlackConfirm" @confirm="blackConfirm"></ELM>
<ELM ref="elmMessagePay" :msg='tipMsg' :isConfirm="isMessagePayConfirm" @confirm="messagePayConfirm"></ELM> <ELM ref="elmMessagePay" :msg='tipMsg' :isConfirm="isMessagePayConfirm" @confirm="messagePayConfirm"></ELM>
<ELM ref="elmApplyPay" :msg='tipMsg' :isConfirm="isApplyPayConfirm" @confirm="applyPayConfirm"></ELM> <ELM ref="elmApplyPay" :msg='tipMsg' :isConfirm="isApplyPayConfirm" @confirm="applyPayConfirm"></ELM>
<ELM ref="elmAgain" :msg="tipMsg" :isConfirm="isAgainConfirm" confirmName="申请" @confirm="applyPayConfirm"></ELM>
</view> </view>
</template> </template>
...@@ -117,6 +118,7 @@ export default { ...@@ -117,6 +118,7 @@ export default {
isApplyPayConfirm: false, isApplyPayConfirm: false,
applyWxPayment:0, applyWxPayment:0,
acceptWxPayment:0, acceptWxPayment:0,
isAgainConfirm: false,
wxTask:[] wxTask:[]
} }
}, },
...@@ -177,13 +179,11 @@ export default { ...@@ -177,13 +179,11 @@ export default {
this.open() this.open()
} else if (this.wxTask.type == '2' && this.wxTask.status == '2'){ } else if (this.wxTask.type == '2' && this.wxTask.status == '2'){
if (this.wxTask.targetId == this.targetId){ if (this.wxTask.targetId == this.targetId){
this.tipMsg = "已拒绝对方请求"; this.wantWxC()
this.isConfirm = true;
this.$refs.elm.showDialog();
} else { } else {
this.tipMsg = "对方已拒绝请求"; this.tipMsg = "对方已拒绝请求,是否再次申请?";
this.isConfirm = true; this.isAgainConfirm = true;
this.$refs.elm.showDialog(); this.$refs.elmAgain.showDialog();
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment