2024-03-21 17:52:58 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<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">提交时间:{{item.create_time}}</view>
|
|
|
|
|
<view v-if="item.fail_msg" class="reason">原因:{{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="`${domain}/static/images/noCart.png`"></image>
|
|
|
|
|
<text>暂无申请记录,快去申请入驻吧!</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
|
import {
|
|
|
|
|
getApplicationRecordList
|
|
|
|
|
} from '@/api/store.js'
|
|
|
|
|
import {HTTP_REQUEST_URL} from '@/config/app';
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
domain:HTTP_REQUEST_URL,
|
|
|
|
|
loading: false,
|
|
|
|
|
listData: [],
|
|
|
|
|
pageData: {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.getListData()
|
|
|
|
|
},
|
|
|
|
|
// 滚动到底部
|
|
|
|
|
onReachBottom() {
|
|
|
|
|
if (this.count == this.listData.length) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '没有更多啦',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 1000
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.pageData.page += 1
|
|
|
|
|
this.getListData()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getListData() {
|
|
|
|
|
this.loading = true
|
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: '数据加载中',
|
|
|
|
|
});
|
|
|
|
|
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) {
|
|
|
|
|
console.log(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: "待审核",
|
|
|
|
|
1: "审核通过",
|
|
|
|
|
2: "审核未通过",
|
|
|
|
|
};
|
|
|
|
|
return statusData[number]
|
|
|
|
|
},
|
|
|
|
|
// button显示文字
|
|
|
|
|
statusBtn(number) {
|
|
|
|
|
// 使用对象
|
|
|
|
|
let statusData = {
|
|
|
|
|
0: "编辑",
|
|
|
|
|
1: "查看",
|
|
|
|
|
2: "重新提交",
|
|
|
|
|
};
|
|
|
|
|
return statusData[number]
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.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>
|