diff --git a/uniapp/pages/market/clue/class_arrangement_detail.vue b/uniapp/pages/market/clue/class_arrangement_detail.vue
index 949d09cc..e69de29b 100755
--- a/uniapp/pages/market/clue/class_arrangement_detail.vue
+++ b/uniapp/pages/market/clue/class_arrangement_detail.vue
@@ -1,1292 +0,0 @@
-
-
-
-
- 课程安排详情
-
- 日期:{{ schedule_info.course_date }}
- 课程名称:{{ schedule_info.course_name }}
- 课程时间:{{ schedule_info.time_slot }}
- 主教练:{{ schedule_info.coach_name || '待安排' }}
- 场地信息:{{ schedule_info.venue_name }}
-
-
-
-
-
- 正式学员
-
-
-
- 待续费
- {{ stu.name && stu.name.charAt(0) }}
-
- {{ stu.name }}
- 年龄:{{ stu.age || '未知' }}岁
- 课程状态:{{ stu.courseStatus }}
- 上课情况:{{ stu.course_progress.used }}/{{ stu.course_progress.total }}节
- 到期时间:{{ stu.student_course_info.end_date || '未设置' }}
-
-
-
-
-
-
- +
-
-
- 空位
- 点击添加学员
-
-
-
-
-
-
-
- 等待位
-
-
-
- {{ stu.name && stu.name.charAt(0) }}
-
- {{ stu.name }}
- 年龄:{{ stu.age || '未知' }}岁
- 课程状态:{{ stu.courseStatus }}
- 上课情况:{{ stu.course_progress.used }}/{{ stu.course_progress.total }}节 ({{ stu.course_progress.percentage }}%)
- 到期时间:{{ stu.expiryDate || '未设置' }}
-
-
-
-
-
-
- +
-
-
- 等待位
- 点击添加学员
-
-
-
-
-
-
-
-
-
-
-
-
-
- 客户选择
-
-
-
-
-
-
- {{ student.name ? student.name.charAt(0) : '?' }}
-
-
- {{ student.name }}
- 正式学员
-
- {{ student.phone }}
-
-
- ✓
-
-
-
-
-
-
-
- 选中学员
-
- {{ (presetStudent && presetStudent.name) ? presetStudent.name.charAt(0) : '?' }}
-
- {{ (presetStudent && presetStudent.name) || '未知学员' }}
- {{ (presetStudent && presetStudent.phone) || '未知手机号' }}
-
-
-
-
-
-
- 课程安排
-
-
-
-
-
-
-
-
- 备注
-
-
-
-
-
-
-
-
-
-
-
-
- 请假原因
-
-
-
-
- 取消
- 提交
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/clue/clue_info.less b/uniapp/pages/market/clue/clue_info.less
index ce333c24..e69de29b 100755
--- a/uniapp/pages/market/clue/clue_info.less
+++ b/uniapp/pages/market/clue/clue_info.less
@@ -1,431 +0,0 @@
-// 客户详情页样式文件
-.assemble {
- background-color: #292929;
- min-height: 100vh;
-}
-
-.content {
- padding: 20rpx;
-}
-
-.tab-switcher-container {
- margin: 20rpx 0;
-}
-
-// 学生信息区域
-.student-section {
- margin-top: 20rpx;
-
- .section-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx;
-
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #fff;
- }
-
- .add-student-btn {
- display: flex;
- align-items: center;
- background: #29d3b4;
- color: #fff;
- border-radius: 20rpx;
- padding: 12rpx 20rpx;
- font-size: 24rpx;
-
- .add-icon {
- margin-right: 8rpx;
- font-weight: bold;
- font-size: 20rpx;
- }
-
- &:active {
- background: #1ea08e;
- transform: scale(0.95);
- }
- }
- }
-
- .student-cards {
- width: 100%;
- min-height: 600rpx;
-
- .student-swiper {
- width: 100%;
- height: 560rpx;
-
- .student-swiper-content {
- display: flex;
- flex-direction: column;
- height: 580rpx;
- padding: 20rpx;
- box-sizing: border-box;
- background-color: #434544;
- border-radius: 16rpx;
- margin: 0 10rpx;
- color: #fff;
- }
- }
- }
-}
-
-.popup-footer {
- display: flex;
- padding: 30rpx 40rpx;
- padding-bottom: calc(30rpx + env(safe-area-inset-bottom));
- border-top: 1px solid #333;
- gap: 30rpx;
- flex-shrink: 0; /* 确保底部按钮区域不被压缩 */
- background: #1a1a1a; /* 确保背景色一致 */
-
- .popup-footer-btns {
- display: flex;
- justify-content: space-between;
-
- .footer-btn {
- flex: 1;
- height: 88rpx;
- display: flex;
- width: 45%;
- align-items: center;
- justify-content: center;
- border-radius: 12rpx;
- font-size: 32rpx;
- font-weight: 500;
-
- &.cancel-btn {
- background: #cccccc;
- }
-
- &.confirm-btn {
- background: linear-gradient(45deg, #29D3B4, #1DB584);
- color: #ffffff;
- }
- }
- }
-
-}
-
-// 课程、通话、体测记录等区域
-.course-section, .call-section, .fitness-section, .study-plan-section {
- background-color: #434544;
- border-radius: 16rpx;
- margin: 20rpx 0;
-
- .section-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx;
-
- .context-title {
- font-size: 28rpx;
- font-weight: bold;
- color: #fff;
- }
-
- .add-record-btn {
- display: flex;
- align-items: center;
- background: #29d3b4;
- color: #fff;
- border-radius: 20rpx;
- padding: 12rpx 20rpx;
- font-size: 24rpx;
-
- .add-icon {
- margin-right: 8rpx;
- font-weight: bold;
- }
-
- &:active {
- background: #1ea08e;
- transform: scale(0.95);
- }
- }
- }
-}
-
-// 操作按钮区域 - 独立于Swiper外部
-.student-section .action-buttons-section {
- display: flex;
- gap: 8rpx;
- margin-top: 15rpx;
- padding: 15rpx;
- flex-wrap: nowrap;
- height: 100rpx;
- box-sizing: border-box;
- overflow-x: auto;
- overflow-y: hidden;
- -webkit-overflow-scrolling: touch;
- background-color: #434544;
- border-radius: 16rpx;
- margin: 15rpx 0;
-
- &::-webkit-scrollbar {
- display: none;
- }
-
- .action-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background: rgba(255, 255, 255, 0.05);
- border: 1px solid rgba(41, 211, 180, 0.3);
- border-radius: 8rpx;
- padding: 12rpx 8rpx;
- min-width: 90rpx;
- flex-shrink: 0;
- transition: all 0.3s ease;
-
- .action-icon {
- font-size: 24rpx;
- margin-bottom: 5rpx;
- line-height: 1;
- }
-
- .action-text {
- font-size: 18rpx;
- color: #fff;
- text-align: center;
- line-height: 1.2;
- word-break: break-all;
- }
-
- &:active {
- background: rgba(41, 211, 180, 0.2);
- border-color: #29d3b4;
- transform: scale(0.95);
-
- .action-text {
- color: #29d3b4;
- }
- }
- }
-}
-
-// 通用空状态样式
-.empty-state {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 60rpx 20rpx;
- min-height: 200rpx;
-
- .empty-icon {
- font-size: 60rpx;
- opacity: 0.6;
- margin-bottom: 20rpx;
- }
-
- .empty-text {
- color: #ccc;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
-
- .empty-add-btn {
- background: #29d3b4;
- color: #fff;
- padding: 12rpx 24rpx;
- border-radius: 20rpx;
- font-size: 24rpx;
- transition: all 0.3s ease;
-
- &:active {
- background: #1ea08e;
- transform: scale(0.95);
- }
- }
-}
-
-// 备注弹窗样式
-.remark-dialog {
- width: 600rpx;
- padding: 30rpx;
- background: #fff;
- border-radius: 16rpx;
-
- textarea {
- width: 100%;
- height: 200rpx;
- padding: 20rpx;
- border: 2rpx solid #e9ecef;
- border-radius: 12rpx;
- font-size: 28rpx;
- color: #333;
- background-color: #fff;
- box-sizing: border-box;
- resize: none;
-
- &::placeholder {
- color: #999;
- }
-
- &:focus {
- border-color: #29d3b4;
- outline: none;
- box-shadow: 0 0 0 2rpx rgba(41, 211, 180, 0.1);
- }
- }
-
- .dialog-btns {
- display: flex;
- gap: 20rpx;
- margin-top: 30rpx;
-
- .btn {
- flex: 1;
- padding: 20rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- text-align: center;
-
- &.cancel {
- background: #f8f9fa;
- color: #666;
- border: 2rpx solid #e9ecef;
- }
-
- &.confirm {
- background: #29d3b4;
- color: #fff;
- }
- }
- }
-}
-
-// 二维码支付弹窗样式
-.qrcode-payment-modal {
- width: 600rpx;
- background: #fff;
- border-radius: 20rpx;
- overflow: hidden;
-
- .modal-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 40rpx 40rpx 20rpx;
- border-bottom: 1px solid #f0f0f0;
-
- .modal-title {
- font-size: 36rpx;
- font-weight: 600;
- color: #333;
- }
-
- .close-btn {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 50%;
- background: #f5f5f5;
- color: #666;
- font-size: 32rpx;
-
- &:active {
- background: #e5e5e5;
- transform: scale(0.95);
- }
- }
- }
-
- .order-info {
- padding: 30rpx 40rpx;
-
- .info-row {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
-
- .label {
- font-size: 28rpx;
- color: #666;
- margin-right: 20rpx;
- }
-
- .value {
- font-size: 28rpx;
- color: #333;
- flex: 1;
- }
-
- .amount {
- font-size: 32rpx;
- color: #ff4757;
- font-weight: 600;
- flex: 1;
- }
- }
- }
-
- .qrcode-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 40rpx;
- background: #fafafa;
-
- .qrcode-image {
- width: 300rpx;
- height: 300rpx;
- border: 1px solid #e5e5e5;
- border-radius: 12rpx;
- background: #fff;
- margin-bottom: 20rpx;
- }
-
- .qrcode-tip {
- font-size: 24rpx;
- color: #666;
- text-align: center;
- line-height: 1.4;
- }
- }
-
- .modal-buttons {
- display: flex;
- padding: 30rpx 40rpx 40rpx;
- gap: 20rpx;
-
- .btn {
- flex: 1;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 40rpx;
- font-size: 28rpx;
- font-weight: 500;
-
- &.secondary {
- background: #f5f5f5;
- color: #666;
-
- &:active {
- background: #e5e5e5;
- transform: scale(0.98);
- }
- }
-
- &.primary {
- background: #29d3b4;
- color: #fff;
-
- &:active {
- background: #1ea08e;
- transform: scale(0.98);
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/uniapp/pages/market/clue/clue_info.vue b/uniapp/pages/market/clue/clue_info.vue
index a800a7aa..e69de29b 100755
--- a/uniapp/pages/market/clue/clue_info.vue
+++ b/uniapp/pages/market/clue/clue_info.vue
@@ -1,1567 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ action.icon }}
-
- {{ action.text }}
-
-
-
-
-
- 👤
- 暂无学生信息
-
- 添加第一个学生
-
-
-
-
-
-
-
-
- 📚
- 暂无课程信息
-
-
-
-
-
-
- 📞
- 暂无通话记录
-
-
-
-
-
-
-
-
-
- 📊
- 暂无体测记录
-
-
-
-
-
-
-
- 📚
- 暂无学习计划
-
-
-
-
-
-
-
-
-
-
-
-
-
- 📊
- 暂无体测记录
- 点击下方"新增"按钮添加体测记录
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 订单号:
- {{ qrCodePaymentData.order.order_no }}
-
-
- 支付金额:
- ¥{{ qrCodePaymentData.order.total_amount }}
-
-
-
-
-
-
- 二维码加载中...
- 请使用微信扫码完成支付
-
-
-
-
- 取消支付
- 发送二维码给客户
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/clue/clue_table.vue b/uniapp/pages/market/clue/clue_table.vue
index 46f36e54..e69de29b 100755
--- a/uniapp/pages/market/clue/clue_table.vue
+++ b/uniapp/pages/market/clue/clue_table.vue
@@ -1,164 +0,0 @@
-
-
-
-
- {{ row.channel }}
- {{ expanded[rIdx] ? '▲' : '▼' }}
-
-
-
-
- {{ col.label }}
- ?
-
- {{ row[col.key] || '-' }}
-
-
-
- {{ expanded[rIdx] ? '收起' : '展开全部' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/clue/edit_clues.vue b/uniapp/pages/market/clue/edit_clues.vue
index 725949d5..e69de29b 100755
--- a/uniapp/pages/market/clue/edit_clues.vue
+++ b/uniapp/pages/market/clue/edit_clues.vue
@@ -1,1806 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- 基础信息
-
- 查看修改记录
-
-
-
-
-
-
-
- {{ formData.campus ? picker_config.campus.text : '点击选择' }}
-
-
-
-
-
-
-
- {{ formData.source ? picker_config.source.text : '点击选择' }}
-
-
-
-
-
-
-
- {{ formData.source_channel ? picker_config.source_channel.text : '点击选择' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 男
-
-
-
-
-
- 女
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 是
-
-
-
-
-
- 否
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 六要素信息
-
- 查看修改记录
-
-
-
-
-
-
-
- {{ formData.purchasing_power ? picker_config.purchasing_power.text : '点击选择' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ formData.cognitive_idea ? picker_config.cognitive_idea.text : '点击选择' }}
-
-
-
-
-
-
-
- {{ formData.optional_class_time ? formData.optional_class_time : '点击选择' }}
-
-
-
-
-
-
-
- {{ formData.promised_visit_time ? formData.promised_visit_time : '点击选择' }}
-
-
-
-
-
-
-
- {{ formData.distance ? picker_config.distance.text : '点击选择' }}
-
-
-
-
-
-
-
- {{ formData.decision_maker ? picker_config.decision_maker.text : '点击选择' }}
-
-
-
-
-
-
-
-
-
-
-
- 是
-
-
-
-
-
- 否
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 跟进与面咨
-
-
-
-
- {{ formData.first_visit_time ? formData.first_visit_time : '点击选择' }}
-
-
-
-
-
-
-
-
-
-
-
-
- {{ formData.second_visit_time ? formData.second_visit_time : '点击选择' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 报名
-
-
-
-
-
- 未报名
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 请粘贴包含客户信息的文本,支持格式:
- 姓名:张三,电话:13800138000,校区:测试校区
-
-
-
-
- 取消
- 解析并填写
-
-
-
-
-
-
- 保存
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/clue/edit_clues_log.vue b/uniapp/pages/market/clue/edit_clues_log.vue
index 7340b68f..e69de29b 100755
--- a/uniapp/pages/market/clue/edit_clues_log.vue
+++ b/uniapp/pages/market/clue/edit_clues_log.vue
@@ -1,365 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{v.modification_time}}
-
-
- 修改人:{{v.staff_id_name}} 修改了如下内容
-
-
-
-
-
- | 字段名称 |
- 原数据 |
- 新数据 |
-
-
-
-
-
-
- | {{ row.field_name_zh }} |
- {{ row.old_value }} |
- {{ row.new_value }} |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{v.modification_time}}
-
-
- 修改人:{{v.staff_id_name}} 修改了如下内容
-
-
-
-
-
- | 字段名称 |
- 原数据 |
- 新数据 |
-
-
-
-
-
-
- | {{ row.field_name_zh }} |
- {{ row.old_value }} |
- {{ row.new_value }} |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/clue/index.vue b/uniapp/pages/market/clue/index.vue
deleted file mode 100755
index 3cf5b4df..00000000
--- a/uniapp/pages/market/clue/index.vue
+++ /dev/null
@@ -1,1749 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- 校区/用户名/手机号/时间范围
-
- 搜索
-
-
-
-
-
-
-
-
-
-
- {{ v.customerResource.name }}
- {{ v.customerResource.phone_number }}
-
-
- 所属校区:{{ v.customerResource.campus_name }}
-
-
- 来源:{{ v.customerResource.source }}
-
-
- 来源渠道:{{ v.customerResource.source_channel }}
-
-
-
-
-
- {{ v.customerResource.order_status || '未开单' }}
-
-
-
-
- 一访{{ v.customerResource.first_visit_status || '未到' }}
-
-
- 二访{{ v.customerResource.second_visit_status || '未到' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 校区/用户名/手机号/时间范围
-
- 搜索
-
-
-
-
- 批量操作
- 取消
-
- ✓
- 全选
-
-
-
-
- 批量分配 ({{ selectedItems.length }})
-
-
-
-
-
-
-
-
-
-
- ✓
-
-
-
-
-
- {{v.customerResource.name}}
-
-
-
- 决策人:{{v.customerResource.name}} {{v.customerResource.decision_maker}}
-
-
- 分配给:{{v.shared_by_name}}
-
-
-
-
- 分配
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 筛选
-
-
-
-
-
- 校区筛选
-
-
-
-
-
-
-
-
-
- 时间筛选
-
-
-
-
-
-
-
-
- 姓名筛选
-
-
-
-
-
-
-
-
- 电话筛选
-
-
-
-
-
-
-
-
- 搜索
- 关闭
-
-
-
-
-
-
-
-
-
-
-
diff --git a/uniapp/pages/market/data/statistics.vue b/uniapp/pages/market/data/statistics.vue
deleted file mode 100755
index 4767e7b1..00000000
--- a/uniapp/pages/market/data/statistics.vue
+++ /dev/null
@@ -1,343 +0,0 @@
-
-
-
-
-
- 市场数据统计
-
-
-
-
-
- 统计时间:
-
- {{currentDate}}
-
-
-
-
-
-
- 市场人员资源量统计
-
-
-
-
- {{item.name}}
- {{item.weekCount}}
- {{item.monthCount}}
- {{item.yearCount}}
-
-
-
-
-
-
-
- {{currentMonth}}月 - 年度校区人员资源渠道量
-
-
-
-
- {{channel.name}}
-
- {{channel[school.id] || 0}}
-
- {{channel.total}}
-
-
-
-
-
-
-
- {{currentMonth}}月 - 年度市场人员资源渠道统计
-
-
-
-
- {{channel.name}}
-
- {{staff['channel'][channel.value] || 0}}
-
- {{channel.total}}
-
-
-
-
-
-
-
-
-
-
-
diff --git a/uniapp/pages/market/index/index.vue b/uniapp/pages/market/index/index.vue
deleted file mode 100755
index 0b355e81..00000000
--- a/uniapp/pages/market/index/index.vue
+++ /dev/null
@@ -1,427 +0,0 @@
-
-
-
-
-
-
-
- {{currentDate}}
-
-
-
-
-
-
-
- 本月提成
- ¥{{totalCommission}}
-
-
-
-
- 续费提成
-
-
-
-
- {{item.time}}
- {{item.expireCount}}
- {{item.renewCount}}
- {{item.renewRate}}%
- ¥{{item.commission}}
-
-
-
-
-
-
-
- 新招课包
-
-
-
-
- {{newPackageCount}}
- ¥{{newPackageCommission}}
- ¥{{newPackageTotal}}
-
-
-
-
-
-
-
- 私教课包
-
-
-
-
- {{privatePackageCount}}
- ¥{{privatePackageCommission}}
-
-
-
-
-
-
-
- 时间卡
-
-
-
-
- {{timeCardCount}}
- {{timeCardAmount}}
- ¥{{timeCardCommission}}
-
-
-
-
-
-
-
- 其他提成
-
-
-
-
- {{item.project}}
- ¥{{item.amount}}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/campus_data.vue b/uniapp/pages/market/my/campus_data.vue
deleted file mode 100755
index bba0c6e3..00000000
--- a/uniapp/pages/market/my/campus_data.vue
+++ /dev/null
@@ -1,495 +0,0 @@
-
-
-
-
-
-
-
-
-
- 校区数据
-
-
-
-
-
-
-
- 选择校区:
-
- 请选择校区
-
-
-
-
-
-
-
-
-
-
-
- 部门数量
- --
-
-
-
-
-
-
-
-
- 员工总数
- --
-
-
-
-
-
-
-
-
- 客户总数
- --
-
-
-
-
-
-
-
-
- 校区业绩
- --
-
-
-
-
-
-
- 部门业绩对比
-
-
-
- 销售部
- ¥120000
-
-
-
-
- 80%
-
-
-
-
- 市场部
- ¥100000
-
-
-
-
- 67%
-
-
-
-
- 运营部
- ¥80000
-
-
-
-
- 53%
-
-
-
-
- 客服部
- ¥60000
-
-
-
-
- 40%
-
-
-
-
-
-
- 月度趋势
-
-
-
- 图表功能待开发
-
-
-
-
-
-
- 数据分析
-
-
-
-
-
- 校区对比
-
-
-
-
-
-
- 部门分析
-
-
-
-
-
-
- 趋势分析
-
-
-
-
-
-
- 详细报表
-
-
-
-
-
-
- 功能说明
-
- 这里将显示校区的各项数据统计,包括部门数量、员工总数、客户数量、校区业绩等。
- 具体功能待后续开发实现。
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/dept_data.vue b/uniapp/pages/market/my/dept_data.vue
index fdda74bc..e69de29b 100755
--- a/uniapp/pages/market/my/dept_data.vue
+++ b/uniapp/pages/market/my/dept_data.vue
@@ -1,445 +0,0 @@
-
-
-
-
-
-
-
-
-
- 部门数据
-
-
-
-
-
-
-
- 选择部门:
-
- 请选择部门
-
-
-
-
-
-
-
-
-
-
-
- 部门人数
- --
-
-
-
-
-
-
-
-
- 总客户数
- --
-
-
-
-
-
-
-
-
- 部门业绩
- --
-
-
-
-
-
-
-
-
- 完成率
- --
-
-
-
-
-
-
- 部门排行榜
-
-
- 1
-
- 张三
- 业绩:¥50000
-
-
-
-
-
-
-
- 2
-
- 李四
- 业绩:¥45000
-
-
-
-
-
-
-
- 3
-
- 王五
- 业绩:¥40000
-
-
-
-
-
-
-
-
-
-
- 数据分析
-
-
-
-
-
- 业绩对比
-
-
-
-
-
-
- 人员分布
-
-
-
-
-
-
- 趋势分析
-
-
-
-
-
-
- 详细报表
-
-
-
-
-
-
- 功能说明
-
- 这里将显示部门的各项数据统计,包括部门人员、客户数量、销售业绩、排行榜等。
- 具体功能待后续开发实现。
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/index.vue b/uniapp/pages/market/my/index.vue
deleted file mode 100755
index b18d5915..00000000
--- a/uniapp/pages/market/my/index.vue
+++ /dev/null
@@ -1,523 +0,0 @@
-
-
-
-
-
- 我的
-
-
-
-
-
-
-
-
- {{userInfo.name}}
-
-
-
-
-
-
-
-
-
- 校区:
- {{v.campus_id_name || ''}}
-
-
-
- 部门:
- {{v.dept_name_str || ''}}
-
-
-
-
-
-
-
-
-
-
-
-
-
- 报销记录
-
-
-
-
-
-
- 我的考勤
-
-
-
-
-
-
- 课程安排
-
-
-
-
-
-
- 我的消息
-
-
-
-
-
-
- 我的合同
-
-
-
-
-
-
- 我的数据
-
-
-
-
-
-
- 部门数据
-
-
-
-
-
-
- 校区数据
-
-
-
-
-
-
- 设置
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/info.vue b/uniapp/pages/market/my/info.vue
deleted file mode 100755
index fefbe9c5..00000000
--- a/uniapp/pages/market/my/info.vue
+++ /dev/null
@@ -1,505 +0,0 @@
-
-
-
-
-
-
-
-
-
- 修改头像
-
-
-
-
-
-
- 姓名 *
-
-
-
-
-
-
-
-
- 账号
-
-
-
-
-
-
-
-
- 部门
-
-
-
- {{formData.department_name_str || '暂无'}}
-
-
-
-
-
- 等级
-
-
-
-
-
-
-
-
-
-
- 性别 *
-
-
-
-
-
-
-
-
-
- 生日 *
-
-
-
-
-
-
-
-
-
- 邮箱 *
-
-
-
-
-
-
-
-
- 手机 *
-
-
-
-
-
-
-
-
- 微信
-
-
-
-
-
-
-
- 提交
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/my_data.vue b/uniapp/pages/market/my/my_data.vue
deleted file mode 100755
index cefe0c5e..00000000
--- a/uniapp/pages/market/my/my_data.vue
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-
-
-
-
- 我的数据
-
-
-
-
-
-
-
-
-
-
-
-
- 总客户数
- --
-
-
-
-
-
-
-
-
- 已签客户
- --
-
-
-
-
-
-
-
-
- 销售业绩
- --
-
-
-
-
-
-
-
-
- 本月任务
- --
-
-
-
-
-
-
- 数据统计
-
-
-
-
-
- 客户统计
-
-
-
-
-
-
- 业绩统计
-
-
-
-
-
-
- 趋势分析
-
-
-
-
-
-
- 详细报表
-
-
-
-
-
-
- 功能说明
-
- 这里将显示您个人的各项数据统计,包括客户数量、销售业绩、任务完成情况等。
- 具体功能待后续开发实现。
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/set_up.vue b/uniapp/pages/market/my/set_up.vue
deleted file mode 100755
index 9e17258b..00000000
--- a/uniapp/pages/market/my/set_up.vue
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
- 修改密码
- 用户协议
- 隐私策略
- 清空缓存
-
-
- 退出账号
-
-
-
-
-
-
-
diff --git a/uniapp/pages/market/my/signed_client_list.vue b/uniapp/pages/market/my/signed_client_list.vue
deleted file mode 100755
index d5525f1b..00000000
--- a/uniapp/pages/market/my/signed_client_list.vue
+++ /dev/null
@@ -1,275 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{v.name}}
- 课程截止时间:{{v.end_time}}
-
-
-
-
- {{v.have_study_time}}
- 已上课时
-
-
- {{v.end_study_time ? v.end_study_time:0}}
- 剩余课时
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/my/update_pass.vue b/uniapp/pages/market/my/update_pass.vue
deleted file mode 100755
index 7092c673..00000000
--- a/uniapp/pages/market/my/update_pass.vue
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
- 1.验证旧密码
- 2.设置新密码
-
-
-
-
-
- 为保障您的账号安全,修改密码前请填写原密码
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 上一步
-
-
- 下一步
-
- 提交
-
-
-
-
- 忘记原密码
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/reimbursement/detail.vue b/uniapp/pages/market/reimbursement/detail.vue
index 62f14af5..e69de29b 100755
--- a/uniapp/pages/market/reimbursement/detail.vue
+++ b/uniapp/pages/market/reimbursement/detail.vue
@@ -1,136 +0,0 @@
-
-
-
-
-
- 报销金额
- ¥{{ detail.amount }}
-
-
- 报销描述
- {{ detail.description }}
-
-
- 发票/收据
-
-
- {{ detail.receipt_url }}
- 无附件
-
-
-
- 状态
- {{ statusMap[detail.status] || detail.status }}
-
-
- 创建时间
- {{ detail.created_at }}
-
-
- 修改时间
- {{ detail.updated_at }}
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/uniapp/pages/market/reimbursement/list.vue b/uniapp/pages/market/reimbursement/list.vue
deleted file mode 100755
index f5eb4d60..00000000
--- a/uniapp/pages/market/reimbursement/list.vue
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
- 暂无报销记录
-
-
- 金额:
- ¥{{ item.amount }}
-
-
- 描述:
- {{ item.description }}
-
-
- 发票/收据:
-
-
- 无附件
-
-
-
- 状态:
- {{ statusMap[item.status] || item.status }}
-
-
- 创建时间:
- {{ item.created_at }}
-
-
-
-
-
-
-
-
\ No newline at end of file