1. 推广员文案修改
This commit is contained in:
@@ -496,7 +496,7 @@
|
||||
{ "path": "form", "style": { "navigationBarTitleText": "推广员", "navigationStyle": "custom" } },
|
||||
{ "path": "drug-commission/index", "style": { "navigationBarTitleText": "药品佣金", "navigationStyle": "custom" } },
|
||||
{ "path": "leads/index", "style": { "navigationBarTitleText": "获客记录", "navigationStyle": "custom" } },
|
||||
{ "path": "commission/index", "style": { "navigationBarTitleText": "分成与结算", "navigationStyle": "custom" } },
|
||||
{ "path": "commission/index", "style": { "navigationBarTitleText": "服务费与结算", "navigationStyle": "custom" } },
|
||||
{ "path": "settlement/preview", "style": { "navigationBarTitleText": "按时间段结算", "navigationStyle": "custom" } },
|
||||
{ "path": "settlement/confirm", "style": { "navigationBarTitleText": "确认结算", "navigationStyle": "custom" } },
|
||||
{ "path": "settlement/detail", "style": { "navigationBarTitleText": "结算详情", "navigationStyle": "custom" } }
|
||||
@@ -533,7 +533,7 @@
|
||||
{ "path": "my/index", "style": { "navigationBarTitleText": "我的", "navigationStyle": "custom" } },
|
||||
{ "path": "earnings/index", "style": { "navigationBarTitleText": "我的收益", "navigationStyle": "custom" } },
|
||||
{ "path": "leads/index", "style": { "navigationBarTitleText": "获客记录", "navigationStyle": "custom" } },
|
||||
{ "path": "commission/index", "style": { "navigationBarTitleText": "分成记录", "navigationStyle": "custom" } },
|
||||
{ "path": "commission/index", "style": { "navigationBarTitleText": "服务费记录", "navigationStyle": "custom" } },
|
||||
{ "path": "invitees/index", "style": { "navigationBarTitleText": "我邀请的推广员", "navigationStyle": "custom", "enablePullDownRefresh": true } },
|
||||
{ "path": "invitees/detail", "style": { "navigationBarTitleText": "收益明细", "navigationStyle": "custom" } },
|
||||
{ "path": "settlement/index", "style": { "navigationBarTitleText": "结算记录", "navigationStyle": "custom" } },
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<clinic-salesperson-page-layout title="分成记录" :show-back="true">
|
||||
<clinic-salesperson-page-layout title="服务费记录" :show-back="true">
|
||||
<view class="page">
|
||||
<view v-if="!list.length" class="empty">暂无分成记录</view>
|
||||
<view v-if="!list.length" class="empty">暂无服务费记录</view>
|
||||
<view v-for="item in list" :key="item.id" class="row">
|
||||
<view>
|
||||
<text class="order">{{ item.order_no }} <text class="status" style="margin-left: 20rpx">{{ item.settlement_id > 0 ? '已结算' : '待结算' }}</text></text>
|
||||
|
||||
@@ -27,7 +27,7 @@ export default {
|
||||
if (!wrap || !wrap.ok) return
|
||||
const stats = wrap.data?.stats || {}
|
||||
this.cards = [
|
||||
{ label: '累计分成', value: `¥${stats.money || '0.00'}` },
|
||||
{ label: '累计服务费', value: `¥${stats.money || '0.00'}` },
|
||||
{ label: '待结算', value: `¥${stats.pending_amount || '0.00'}` },
|
||||
{ label: '已结算', value: `¥${stats.settled_amount || '0.00'}` },
|
||||
{ label: '累计获客', value: `${stats.user_number || 0} 人` },
|
||||
|
||||
@@ -142,7 +142,7 @@ export default {
|
||||
// { key: 'earnings', label: '我的收益', path: `${ROOT}/earnings/index` },
|
||||
{ key: 'leads', label: '获客记录', path: `${ROOT}/leads/index` },
|
||||
{ key: 'invitees', label: '我邀请的推广员', path: `${ROOT}/invitees/index` },
|
||||
{ key: 'commission', label: '分成记录', path: `${ROOT}/commission/index` },
|
||||
{ key: 'commission', label: '服务费记录', path: `${ROOT}/commission/index` },
|
||||
{ key: 'settlement', label: '结算记录', path: `${ROOT}/settlement/index` },
|
||||
],
|
||||
}
|
||||
@@ -158,7 +158,7 @@ export default {
|
||||
// 获客:使用目标/数据相关图标
|
||||
{ bg: 'linear-gradient(135deg, #EFF6FF, #DBEAFE)', color: '#3B82F6', desc: '客户转化漏斗', icon: 'bag-fill' },
|
||||
// 分成:使用图表/比例相关图标
|
||||
{ bg: 'linear-gradient(135deg, #FAF5FF, #F3E8FF)', color: '#A855F7', desc: '分佣比例与记录', icon: 'red-packet-fill' },
|
||||
{ bg: 'linear-gradient(135deg, #FAF5FF, #F3E8FF)', color: '#A855F7', desc: '服务费与记录', icon: 'red-packet-fill' },
|
||||
// 结算:使用卡片/提现相关图标
|
||||
{ bg: 'linear-gradient(135deg, #F0FDF4, #DCFCE7)', color: '#22C55E', desc: '提现与账单', icon: 'rmb-circle-fill' },
|
||||
];
|
||||
|
||||
@@ -85,7 +85,7 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
pageTitle() {
|
||||
return this.nickName ? `分成与结算 - ${this.nickName}` : '分成与结算';
|
||||
return this.nickName ? `服务费与结算 - ${this.nickName}` : '服务费与结算';
|
||||
},
|
||||
isEmpty() {
|
||||
if (this.activeTab === 'history') return !this.settlementList.length;
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
</view>
|
||||
<view class="actions">
|
||||
<view class="action-btn" @click="goEdit(item)">编辑</view>
|
||||
<view class="action-btn primary" @click="goCommission(item)">分成与结算</view>
|
||||
<view class="action-btn primary" @click="goCommission(item)">服务费与结算</view>
|
||||
<view v-if="item.qr_code && item.qr_code.qr_code" class="action-btn" @click="openQr(item)">二维码</view>
|
||||
<view class="action-btn" @click="goLeads(item)">获客</view>
|
||||
<view
|
||||
|
||||
Reference in New Issue
Block a user