|
@@ -11,7 +11,7 @@
|
|
|
<view class="textclass"> 支付成功 </view>
|
|
|
<view class="textclass" style="margin-top: 20rpx"> ¥{{ detail.totalAmount }} </view>
|
|
|
</view>
|
|
|
- <view class="zhuangtaitubiao" v-if="[3].includes(type)">
|
|
|
+ <view class="zhuangtaitubiao" v-if="[3, 4].includes(type)">
|
|
|
<view class="icon">
|
|
|
<text class="iconfont icon-shibai false" style="font-size: 100rpx; color: red"></text>
|
|
|
</view>
|
|
@@ -46,7 +46,7 @@
|
|
|
<view class="anniukuang" v-if="[1].includes(type)">
|
|
|
<u-button text="取消" @click="back"></u-button>
|
|
|
</view>
|
|
|
- <view class="anniukuang" v-if="[1, 3].includes(type)">
|
|
|
+ <view class="anniukuang" v-if="[1, 3, 4].includes(type)">
|
|
|
<u-button type="primary" text="重新扫描" @click="scan"></u-button>
|
|
|
</view>
|
|
|
<view class="anniukuang" v-if="[2].includes(type)">
|
|
@@ -71,7 +71,7 @@ export default {
|
|
|
},
|
|
|
state: {
|
|
|
type: [String, Number],
|
|
|
- default: 3
|
|
|
+ default: 0
|
|
|
}
|
|
|
},
|
|
|
data() {
|