2023-07-15 17:51:20 +08:00
|
|
|
<template>
|
|
|
|
<view class="all_box">
|
2023-09-18 18:38:37 +08:00
|
|
|
<u-sticky bgColor="#0022C7">
|
|
|
|
<u-tabs :list="tabLists" @click="changeCurrent" lineColor='white' :scrollable="false" lineWidth='20'
|
|
|
|
inactiveStyle='color:white' activeStyle="color:white"></u-tabs>
|
|
|
|
</u-sticky>
|
|
|
|
<!-- <u-empty icon="/static/img/empty/data.png"></u-empty> -->
|
|
|
|
<view class="p_list">
|
|
|
|
<merchantAudit></merchantAudit>
|
2023-07-15 17:51:20 +08:00
|
|
|
</view>
|
2023-08-03 17:44:02 +08:00
|
|
|
<!-- <u-loadmore :status="status" :loading-text="loadingText" :loadmore-text="loadmoreText" :nomore-text="nomoreText" /> -->
|
2023-07-15 17:51:20 +08:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-07-25 08:11:50 +08:00
|
|
|
import { Toast } from '@/libs/uniApi.js'
|
2023-09-18 18:38:37 +08:00
|
|
|
import merchantAudit from '@/components/merchantAudit/merchantAudit.vue'
|
2023-07-15 17:51:20 +08:00
|
|
|
export default {
|
|
|
|
components: {
|
2023-09-18 18:38:37 +08:00
|
|
|
merchantAudit
|
2023-07-15 17:51:20 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2023-09-18 18:38:37 +08:00
|
|
|
tabLists: [{
|
2023-07-18 15:10:11 +08:00
|
|
|
name: '全部',
|
2023-07-15 17:51:20 +08:00
|
|
|
}, {
|
2023-09-18 18:38:37 +08:00
|
|
|
name: '待审批',
|
2023-07-15 17:51:20 +08:00
|
|
|
}, {
|
2023-09-18 18:38:37 +08:00
|
|
|
name: '已通过'
|
2023-07-18 15:10:11 +08:00
|
|
|
}, {
|
|
|
|
name: '未通过'
|
2023-07-20 10:22:50 +08:00
|
|
|
}, ],
|
2023-07-15 17:51:20 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad() {
|
2023-09-18 18:38:37 +08:00
|
|
|
|
2023-07-15 17:51:20 +08:00
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
2023-09-18 18:38:37 +08:00
|
|
|
changeCurrent(e) {
|
|
|
|
this.current = e.index;
|
2023-07-15 17:51:20 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.all_box {
|
|
|
|
padding-bottom: 21rpx;
|
|
|
|
}
|
2023-09-18 18:38:37 +08:00
|
|
|
.p_list{
|
|
|
|
padding-top: 28rpx;
|
2023-07-15 17:51:20 +08:00
|
|
|
}
|
2023-07-20 10:22:50 +08:00
|
|
|
</style>
|