爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

294 lines
8.5 KiB

<template>
<view class="tui-manage-container">
<!-- 顶部导航栏 -->
<view class="navbar" :style="navbarStyle">
<view class="nav-left" @tap="goBack">
<uni-icons type="back" size="24" color="#222" />
</view>
<view class="nav-title">推广官管理</view>
<view class="nav-right">
<!-- <uni-icons type="more-filled" size="24" color="#222" style="margin-right: 16rpx;" />
<uni-icons type="scan" size="24" color="#222" /> -->
</view>
</view>
<!-- Tab栏 -->
<view class="tab-bar-fixed" :style="{top: navBarRealHeight + 'px'}">
<view class="tab-tabs">
<view :class="['tab-item', {active: currentTab === 0}]" @tap="switchTab(0)">全部</view>
<view :class="['tab-item', {active: currentTab === 1}]" @tap="switchTab(1)">推广官申请列表</view>
</view>
<uni-icons type="search" size="28" color="#222" class="tab-search" />
</view>
<view class="tab-content" :style="{paddingTop: (navBarRealHeight + tabBarHeight) + 'px'}">
<!-- 全部 -->
<view v-if="currentTab === 0">
<view v-for="(item, idx) in tuiList" :key="idx" class="tui-card" @tap="goTuiDetail(item)">
<view class="tui-info-row"><text class="tui-label">姓名:</text><text class="tui-value">{{ item.name }}</text></view>
<view class="tui-info-row"><text class="tui-label">一级推广数:</text><text class="tui-value">{{ item.level1 }}人</text></view>
<view class="tui-info-row"><text class="tui-label">二级推广数:</text><text class="tui-value">{{ item.level2 }}人</text></view>
<view class="tui-info-row"><text class="tui-label">回收总额:</text><text class="tui-value">{{ item.totalAmount }}元</text></view>
<view class="tui-info-row"><text class="tui-label">佣金总额:</text><text class="tui-value">{{ item.commission }}元</text></view>
</view>
</view>
<!-- 推广官申请列表 -->
<view v-if="currentTab === 1">
<view v-for="(item, idx) in applyList" :key="idx" class="tui-card">
<view class="tui-info-row"><text class="tui-value">{{ item.name }} 的推广官申请</text></view>
<view class="tui-info-row"><text class="tui-label">电话:</text><text class="tui-value">{{ item.phone }}</text></view>
<view class="tui-info-row"><text class="tui-label">每日可花推广时间:</text><text class="tui-value">{{ item.time }}</text></view>
<view class="tui-info-row"><text class="tui-label">申请时间:</text><text class="tui-value">{{ item.applyTime }}</text></view>
<view class="tui-status-bar">
<view v-if="item.status==='待审批'" class="tui-status orange">待审批</view>
<view v-else-if="item.status==='已驳回'" class="tui-status red">已驳回</view>
<view v-else-if="item.status==='已确认'" class="tui-status gray">已确认</view>
</view>
<view class="tui-action-bar">
<view class="tui-action" v-if="item.status==='待审批'"><uni-icons type="undo" size="32" color="#999" /><text>驳回</text></view>
<view class="tui-action" v-if="item.status==='待审批'" @tap.stop="goApplyDetail(item)"><uni-icons type="person" size="32" color="#999" /><text>审批</text></view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import pullRefreshMixin from '../mixins/pullRefreshMixin.js'
export default {
mixins: [pullRefreshMixin],
data() {
return {
currentTab: 0,
tuiList: [
{ name: '周小艺', level1: 67, level2: 67, totalAmount: '8273.99', commission: '278.99' },
{ name: '李世海', level1: 67, level2: 67, totalAmount: '8273.99', commission: '278.99' },
{ name: '何炜', level1: 67, level2: 67, totalAmount: '8273.99', commission: '278.99' },
{ name: '李梓发', level1: 67, level2: 67, totalAmount: '8273.99', commission: '278.99' },
],
applyList: [
{ name: '周小艺', phone: '18899102278', time: '6小时', applyTime: '2025-03-20 11:00', status: '待审批' },
{ name: '周小艺', phone: '18899102278', time: '6小时', applyTime: '2025-03-20 11:00', status: '已驳回' },
{ name: '周小艺', phone: '18899102278', time: '6小时', applyTime: '2025-03-20 11:00', status: '已确认' },
{ name: '周小艺', phone: '18899102278', time: '6小时', applyTime: '2025-03-20 11:00', status: '待审批' },
],
statusBarHeight: 0,
navBarRealHeight: 0,
tabBarHeight: 80, // px
}
},
computed: {
navbarStyle() {
return `padding-top: ${this.statusBarHeight}px;`;
}
},
onLoad() {
uni.getSystemInfo({
success: (res) => {
this.statusBarHeight = res.statusBarHeight || 20;
}
});
this.$nextTick(() => {
uni.createSelectorQuery().select('.navbar').boundingClientRect(rect => {
if (rect) {
this.navBarRealHeight = rect.height;
}
}).exec();
});
},
methods: {
goBack() {
uni.navigateBack();
},
switchTab(idx) {
this.currentTab = idx;
},
goTuiDetail(tui) {
uni.navigateTo({
url: '/pages/manager/tui-detail',
success: (res) => {
res.eventChannel.emit('tuiDetail', tui);
}
});
},
goApplyDetail(apply) {
uni.navigateTo({
url: '/pages/manager/tui-apply-detail',
success: (res) => {
res.eventChannel.emit('applyDetail', apply);
}
});
},
refreshData() {
// TODO: 实现推广官列表刷新逻辑,如重新请求接口
},
async onRefresh() {
await this.refreshData && this.refreshData()
}
},
onPullDownRefresh() {
this.refreshData && this.refreshData()
uni.stopPullDownRefresh()
}
}
</script>
<style lang="scss" scoped>
.tui-manage-container {
min-height: 100vh;
background: #f7f7f7;
padding-bottom: 40rpx;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100rpx;
background: #fff;
z-index: 10;
display: flex;
align-items: flex-end;
justify-content: space-between;
box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.03);
padding: 0 32rpx;
.nav-left {
flex: 0 0 48rpx;
display: flex;
align-items: center;
height: 100%;
}
.nav-title {
flex: 1;
text-align: center;
font-size: 36rpx;
font-weight: bold;
color: #222;
line-height: 100rpx;
}
.nav-right {
flex: 0 0 80rpx;
display: flex;
align-items: center;
justify-content: flex-end;
height: 100%;
}
}
.tab-bar-fixed {
position: fixed;
left: 0;
width: 100vw;
z-index: 20;
background: #fff;
display: flex;
align-items: center;
justify-content: space-between;
height: 80rpx;
border-bottom: 2rpx solid #f3f3f3;
margin: 0;
box-sizing: border-box;
padding-left: 0;
padding-right: 32rpx;
}
.tab-tabs {
display: flex;
flex: 1;
height: 100%;
}
.tab-item {
flex: 1;
text-align: center;
font-size: 32rpx;
color: #222;
font-weight: 500;
position: relative;
padding-bottom: 12rpx;
display: flex;
align-items: center;
justify-content: center;
}
.tab-item.active {
color: #ffb400;
font-weight: bold;
}
.tab-item.active::after {
content: '';
display: block;
width: 48rpx;
height: 6rpx;
border-radius: 6rpx;
background: #ffb400;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 0;
}
.tab-search {
margin-left: 16rpx;
}
.tab-content {
margin-top: 32rpx;
}
.tui-card {
background: #fff;
border-radius: 40rpx;
margin: 0 32rpx 32rpx 32rpx;
padding: 40rpx 36rpx 36rpx 36rpx;
box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.03);
}
.tui-info-row {
display: flex;
align-items: center;
margin-bottom: 18rpx;
.tui-label {
font-size: 30rpx;
color: #b3b3b3;
width: 180rpx;
font-weight: 400;
}
.tui-value {
font-size: 32rpx;
color: #222;
font-weight: 500;
}
}
.tui-status-bar {
display: flex;
justify-content: flex-end;
margin-top: 12rpx;
}
.tui-status {
font-size: 28rpx;
border-radius: 0 0 20rpx 0;
padding: 8rpx 32rpx;
font-weight: 400;
&.orange {
background: #fff7e6;
color: #ffb400;
}
&.red {
background: #ffeaea;
color: #ff4d4f;
}
&.gray {
background: #f5f5f5;
color: #999;
}
}
.tui-action-bar {
display: flex;
justify-content: center;
align-items: center;
margin-top: 24rpx;
gap: 80rpx;
}
.tui-action {
display: flex;
flex-direction: column;
align-items: center;
font-size: 28rpx;
color: #999;
uni-icons {
margin-bottom: 4rpx;
}
}
</style>