|
@ -18,6 +18,10 @@ |
|
|
<div>卡号:</div> |
|
|
<div>卡号:</div> |
|
|
<div>{{ cardid }}</div> |
|
|
<div>{{ cardid }}</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="detail-info" v-if="secret"> |
|
|
|
|
|
<div>密码:</div> |
|
|
|
|
|
<div>{{ secret }}</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="detail-btn"> |
|
|
<div class="detail-btn"> |
|
|
<div @click="back()" class="back">返回</div> |
|
|
<div @click="back()" class="back">返回</div> |
|
@ -39,6 +43,7 @@ export default { |
|
|
|
|
|
|
|
|
orderid: this.$route.query.orderid, |
|
|
orderid: this.$route.query.orderid, |
|
|
cardid: "", |
|
|
cardid: "", |
|
|
|
|
|
secret:"", |
|
|
|
|
|
|
|
|
copyText: '', |
|
|
copyText: '', |
|
|
clipboardInstance: null, |
|
|
clipboardInstance: null, |
|
@ -77,6 +82,7 @@ export default { |
|
|
}).then(response => { |
|
|
}).then(response => { |
|
|
if (response.data.status) { |
|
|
if (response.data.status) { |
|
|
this.cardid = response.data.data.cardid; |
|
|
this.cardid = response.data.data.cardid; |
|
|
|
|
|
this.secret = response.data.data.secret; |
|
|
this.copyText = "订单编号:" + this.orderid + "\n" + "卡号:" + this.cardid; |
|
|
this.copyText = "订单编号:" + this.orderid + "\n" + "卡号:" + this.cardid; |
|
|
} else { |
|
|
} else { |
|
|
this.promptshow(response.data.info); |
|
|
this.promptshow(response.data.info); |
|
|