|
@@ -9,7 +9,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="hallist-bg">
|
|
|
- <image src="" mode=""></image>
|
|
|
+ <image src="../../static/img/hallbanner.png" mode=""></image>
|
|
|
</view>
|
|
|
<view class="message flex" >
|
|
|
<image class="message-left" src="../../static/img/hinco.png" mode=""></image>
|
|
@@ -89,7 +89,7 @@
|
|
|
</view>
|
|
|
<uni-popup ref="popup" type="center">
|
|
|
<view class="popup">
|
|
|
- <view class="popup-title">预约需要{{price}}艺金券是否立即预约?</view>
|
|
|
+ <view class="popup-title">预约需要{{price}}预约券是否立即预约?</view>
|
|
|
<view class="btn-box">
|
|
|
<view class="btn-left" @click="close()">取消</view>
|
|
|
<view class="btn-right" @click="appointment()">确定</view>
|
|
@@ -101,6 +101,7 @@
|
|
|
|
|
|
<script>
|
|
|
import uniCountdowns from '@/components/uni-countdown/uni-countdowns.vue';
|
|
|
+import { pay_list } from '../../api/wallet.js'
|
|
|
import { article } from '@/api/user.js'
|
|
|
import { mapState, mapMutations } from 'vuex';
|
|
|
import { auction_list,subscribe,advance } from '@/api/hall.js';
|
|
@@ -120,7 +121,10 @@ export default {
|
|
|
loadingType: 'more',
|
|
|
text: [],
|
|
|
article:[],
|
|
|
- list: []
|
|
|
+ list: [],
|
|
|
+ aliData: {},
|
|
|
+ bankData: {},
|
|
|
+ wx:{},
|
|
|
};
|
|
|
},
|
|
|
onLoad(option) {
|
|
@@ -133,6 +137,11 @@ export default {
|
|
|
this.text.push(e.synopsis)
|
|
|
})
|
|
|
this.article = data
|
|
|
+ pay_list({}).then(({data}) =>{
|
|
|
+ this.wx = data.wx
|
|
|
+ this.aliData = data.zfb
|
|
|
+ this.bankData = data.bank
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
computed: {
|
|
@@ -179,6 +188,21 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
open(item) {
|
|
|
+ if(this.wx == '' && this.aliData =='' && this.bankData == ''){
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content:"您未填写收款信息无法参与,是否前去填写收款信息?",
|
|
|
+ success: function (res) {
|
|
|
+ if (res.confirm) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/pages/collection/collection'
|
|
|
+ })
|
|
|
+ } else if (res.cancel) {
|
|
|
+ console.log('用户点击取消');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
if(item.sta != 1) {
|
|
|
this.id = item.id
|
|
|
advance({id: item.id}).then(e =>{
|
|
@@ -486,7 +510,6 @@ page,
|
|
|
width: 702rpx;
|
|
|
height: 300rpx;
|
|
|
border-radius: 14rpx;
|
|
|
- background-color: #2979FF;
|
|
|
image {
|
|
|
width: 100%;
|
|
|
height: 100%;
|