123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <template>
- <view class="">
- <view class="application-record" v-if="listData.length">
- <view class="card-list" v-for="item in listData" :key="item.mer_intention_id">
- <view class="card-top">
- <view class="title">{{item.mer_name}}</view>
- <view class="time">{{$t(`提交时间`)}}:{{item.create_time}}</view>
- <view v-if="item.fail_msg" class="reason">{{$t(`原因`)}}:{{item.fail_msg}}</view>
- </view>
- <view class="line"></view>
- <view class="card-bottom">
- <view class="card-status">
- <image class="status-icon" v-if="item.status === 0" src="../static/images/pending.png" mode=""></image>
- <image class="status-icon" v-else-if="item.status === 1" src="../static/images/passed.png" mode=""></image>
- <image class="status-icon" v-else-if="item.status === 2" src="../static/images/not-pass.png" mode=""></image>
- <text class="status-text">{{statusText(item.status)}}</text>
- </view>
- <view class="status-btn" @click="jump(item)">{{statusBtn(item.status)}}</view>
- </view>
- </view>
- </view>
- <view class='no-shop' v-if="!listData.length && !loading">
- <view class='pictrue' style="margin: 0 auto;">
- <image src='/static/images/no-shop.png'></image>
- <text>{{$t(`暂无申请记录,快去申请吧!`)}}</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- // import {
- // getApplicationRecordList
- // } from '@/api/store.js'
- export default {
- data() {
- return {
- loading: false,
- listData: [],
- pageData: {
- page: 1,
- limit: 10,
- }
- }
- },
- onLoad() {
- // this.getListData()
- },
- // 滚动到底部
- onReachBottom() {
- if (this.count == this.listData.length) {
- uni.showToast({
- title: this.$t(`没有更多啦`),
- icon: 'none',
- duration: 1000
- });
- } else {
- this.pageData.page += 1
- this.getListData()
- }
- },
- methods: {
- getListData() {
- this.loading = true
- uni.showLoading({
- title: this.$t(`正在加载中`),
- });
- getApplicationRecordList(this.pageData).then(res => {
- this.count = res.data.count
- this.listData = this.listData.concat(res.data.list)
- uni.hideLoading();
- this.loading = false
- })
- },
- // 跳转逻辑
- jump(item) {
- if ([0, 2].includes(item.status)) {
- uni.navigateTo({
- url: `/pages/store/settled/index?mer_i_id=${item.mer_intention_id}`
- })
- } else if (item.status === 1) {
- uni.navigateTo({
- url: `/pages/store/merchantDetails/index?mer_i_id=${item.mer_intention_id}&mer_id=${item.mer_id}`
- })
- }
- },
- //状态判断
- statusText(number) {
- // 使用对象
- let statusData = {
- 0: this.$t(`待审核`),
- 1: this.$t(`审核通过`),
- 2: this.$t(`审核未通过`),
- };
- return statusData[number]
- },
- // button显示文字
- statusBtn(number) {
- // 使用对象
- let statusData = {
- 0: this.$t(`编辑`),
- 1: this.$t(`查看`),
- 2: this.$t(`重新提交`),
- };
- return statusData[number]
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .main {}
- .application-record {
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #F5F5F5;
- padding: 20rpx 30rpx;
- .card-list {
- width: 100%;
- background-color: #fff;
- padding: 20rpx 24rpx;
- margin: 10rpx 20rpx;
- border-radius: 12rpx;
- .card-top {
- height: 140rpx;
- .title {
- font-size: 28rpx;
- font-weight: bold;
- color: #333333;
- }
- .time {
- color: #999999;
- font-size: 24rpx;
- padding: 5rpx 0;
- }
- .reason {
- color: #E93323;
- font-weight: bold;
- font-size: 24rpx;
- }
- }
- .line {
- height: 2rpx;
- margin: 20rpx 0 20rpx 0;
- background-color: #EEEEEE;
- }
- .card-bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #333;
- .card-status {
- display: flex;
- align-items: center;
- .status-icon {
- width: 30rpx;
- height: 30rpx;
- margin: 10rpx;
- }
- .status-text {
- font-size: 28rpx;
- font-weight: 500;
- }
- }
- .status-btn {
- font-size: 26rpx;
- color: #555;
- border: 1px solid #999999;
- padding: 8rpx 32rpx;
- border-radius: 40rpx;
- }
- }
- }
- }
- .no-shop {
- width: 100%;
- background-color: #fff;
- height: 100vh;
- .pictrue {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: $uni-nothing-text;
- image {
- width: 414rpx;
- height: 380rpx;
- }
- }
- }
- </style>
|