forked from angelo/web-retail-h5
feat(pay): 屏蔽在线支付入口
This commit is contained in:
parent
56867615ad
commit
ab388f9971
|
@ -1,42 +1,22 @@
|
|||
<template>
|
||||
<view class="content">
|
||||
<view class="tab">
|
||||
<view v-for="(item, index) in tabList" :key="index" @click="navTab(item.id)" class="tab_i"
|
||||
:class="[isTab===item.id?'heng':'heng1']">
|
||||
{{ item.name }}
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="isTab==0">
|
||||
<activeArea></activeArea>
|
||||
</view>
|
||||
<view v-if="isTab==1">
|
||||
<seaPublick></seaPublick>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import activeArea from '@/pages/market/activeArea/activeArea.vue'
|
||||
import seaPublick from '@/pages/market/activeArea/seaPublick.vue'
|
||||
export default{
|
||||
components: {
|
||||
activeArea,seaPublick
|
||||
activeArea,
|
||||
},
|
||||
data(){
|
||||
return {
|
||||
tabList:[{
|
||||
name:"活动列表",
|
||||
id:0,
|
||||
},{ name:"沙棘公益",
|
||||
id:1,}],
|
||||
isTab:0
|
||||
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
navTab(index){
|
||||
this.isTab = index
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
<view class="tit3">{{ countDown }}</view>{{'内完成支付,否则订单将会被自动取消'}}
|
||||
</view>
|
||||
</template>
|
||||
<view class="kuang">
|
||||
<!-- 暂时隐藏 -->
|
||||
<view v-if="false" class="kuang">
|
||||
|
||||
<u-collapse :value="activeNames"
|
||||
ref="collapse"
|
||||
|
@ -362,7 +363,7 @@ export default {
|
|||
|
||||
onShow() {
|
||||
// 获取银行卡
|
||||
this.getBankList()
|
||||
// this.getBankList()
|
||||
},
|
||||
methods: {
|
||||
//查询充值抽奖次数
|
||||
|
@ -604,12 +605,12 @@ export default {
|
|||
api.jdBankList().then((res) => {
|
||||
this.jdList = res.data
|
||||
})
|
||||
api.hfBankList().then((res) => {
|
||||
this.hfList = res.data
|
||||
})
|
||||
api.tlBankList().then((res) => {
|
||||
this.tlList = res.data
|
||||
})
|
||||
// api.hfBankList().then((res) => {
|
||||
// this.hfList = res.data
|
||||
// })
|
||||
// api.tlBankList().then((res) => {
|
||||
// this.tlList = res.data
|
||||
// })
|
||||
this.$nextTick(() => {
|
||||
this.$refs.collapse.init()
|
||||
})
|
||||
|
|
|
@ -184,8 +184,9 @@
|
|||
</view>
|
||||
</view>
|
||||
</u-collapse-item>
|
||||
<!-- 暂时隐藏在线支付 -->
|
||||
<u-collapse-item name="2"
|
||||
v-if="onlinePay">
|
||||
v-if="onlinePay && false">
|
||||
<view slot="title"
|
||||
class="pf"> <img src="@/static/images/under_pay.png"
|
||||
alt="" />
|
||||
|
@ -856,7 +857,7 @@ export default {
|
|||
|
||||
onShow() {
|
||||
// 获取银行卡
|
||||
this.getBankList()
|
||||
// this.getBankList()
|
||||
},
|
||||
methods: {
|
||||
toUnBind() {
|
||||
|
@ -1435,12 +1436,12 @@ export default {
|
|||
api.jdBankList().then((res) => {
|
||||
this.jdList = res.data
|
||||
})
|
||||
api.hfBankList().then((res) => {
|
||||
this.hfList = res.data
|
||||
})
|
||||
api.tlBankList().then((res) => {
|
||||
this.tlList = res.data
|
||||
})
|
||||
// api.hfBankList().then((res) => {
|
||||
// this.hfList = res.data
|
||||
// })
|
||||
// api.tlBankList().then((res) => {
|
||||
// this.tlList = res.data
|
||||
// })
|
||||
this.$nextTick(() => {
|
||||
this.$refs.collapse.init()
|
||||
})
|
||||
|
|
|
@ -420,9 +420,9 @@ export default {
|
|||
api.jdBankList().then((res) => {
|
||||
this.jdList = res.data
|
||||
})
|
||||
api.hfBankList().then((res) => {
|
||||
this.hfList = res.data
|
||||
})
|
||||
// api.hfBankList().then((res) => {
|
||||
// this.hfList = res.data
|
||||
// })
|
||||
this.$nextTick(() => {
|
||||
this.$refs.collapse.init()
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue