Compare commits
1 Commits
e1d31fb8e7
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99973d2e62 |
@@ -23,7 +23,7 @@ app.get('/api/captchaImage', (req,res,next) =>{
|
||||
// 获取验证码
|
||||
app.post('/api/sendSms', (req, res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
verifyCode:'123456'
|
||||
},
|
||||
@@ -35,7 +35,7 @@ app.post('/api/sendSms', (req, res) => {
|
||||
app.post('/api/user/login',(req,res,next) => {
|
||||
const { loginType,phone,verifyCode,username, password } = req.body;
|
||||
let retObj = {
|
||||
code: 0,
|
||||
code: 200,
|
||||
message: '登录成功',
|
||||
data: {
|
||||
'id': '@id',
|
||||
@@ -82,7 +82,7 @@ app.post('/api/getUserInfo', (req,res) => {
|
||||
// console.log("req=>",req)
|
||||
// reqBody = JSON.parse(req.body)
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
'id': '@id',
|
||||
'name': '小北',
|
||||
@@ -99,7 +99,7 @@ app.post('/api/getUserInfo', (req,res) => {
|
||||
// 搜索功能
|
||||
app.post('/api/search', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
'id': '@id',
|
||||
'content': '@cname',
|
||||
@@ -110,7 +110,7 @@ app.post('/api/search', (req,res) => {
|
||||
// 查询企业日常 Daily business
|
||||
app.post('/api/businessDaily', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{id:1,name:'任务计划',imgSrc:'static/images/business/icon-rwjh.png'},
|
||||
@@ -177,7 +177,7 @@ app.post('/api/backBlogCount', (req,res) => {
|
||||
// 首页通知消息跑马灯
|
||||
app.post('/api/swiperList', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: ["祝贺“友晟夏季封装外壳发布会”圆满成功","祝贺“友晟科技发布会”圆满成功","祝贺“友晟夏季封装外壳发布会”圆满成功"]
|
||||
}))
|
||||
});
|
||||
@@ -186,7 +186,7 @@ app.post('/api/swiperList', (req,res) => {
|
||||
// 首页日程提醒
|
||||
app.post('/api/stepData', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
date:new Date().getTime(),
|
||||
list:[
|
||||
@@ -200,7 +200,7 @@ app.post('/api/stepData', (req,res) => {
|
||||
// 首页销售任务
|
||||
app.post('/api/salesTask', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
salesList:['2025-3季度', '2025-2季度', '2025-1季度'],
|
||||
percentNum:82,
|
||||
@@ -213,7 +213,7 @@ app.post('/api/salesTask', (req,res) => {
|
||||
// 首页常用服务
|
||||
app.post('/api/commonServices', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{id:1,name:'设备管理',imgSrc:'static/images/business/icon-sbgl.png'},
|
||||
@@ -229,7 +229,7 @@ app.post('/api/commonServices', (req,res) => {
|
||||
// 新闻列表
|
||||
app.post('/api/newsQueryList', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{id:1,date:'2025-06-29',name:'友晟亮相2025慕尼黑上海电子展',imgSrc:'https://img2.baidu.com/it/u=363858033,1221485415&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=1067'},
|
||||
@@ -246,7 +246,7 @@ app.post('/api/noticeList', (req,res) => {
|
||||
let param = req.body;
|
||||
if(param.pageIndex==1){
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{id:1,date:'2025-06-30',isReady:true,title:'临时调整本周工作时间的通知',imgSrc:'static/images/notice/icon-TiXing@2x.png'},
|
||||
@@ -269,7 +269,7 @@ app.post('/api/noticeList', (req,res) => {
|
||||
}))
|
||||
}else if(param.pageIndex==2){
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{id:11,date:'2025-09-09 15:36:00',isReady:true,title:'祝贺“友晟夏季封装外壳发布会”圆满成功',imgSrc:'static/images/notice/icon-TongZhi@2x.png'},
|
||||
@@ -282,7 +282,7 @@ app.post('/api/noticeList', (req,res) => {
|
||||
}))
|
||||
}else{
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[],
|
||||
totalCount:14
|
||||
@@ -298,7 +298,7 @@ app.post('/api/visitorReportList', (req,res) => {
|
||||
// console.log(param)
|
||||
if(param.pageIndex==1){
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{
|
||||
@@ -357,7 +357,7 @@ app.post('/api/visitorReportList', (req,res) => {
|
||||
}))
|
||||
}else if(param.pageIndex==2){
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{
|
||||
@@ -386,7 +386,7 @@ app.post('/api/visitorReportList', (req,res) => {
|
||||
}))
|
||||
}else{
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[],
|
||||
totalCount:14
|
||||
@@ -399,7 +399,7 @@ app.post('/api/visitorReportList', (req,res) => {
|
||||
// 客户列表
|
||||
app.post('/api/guestList', (req,res) => {
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{id:1,name:'西安微电子技术研究所'},
|
||||
@@ -416,7 +416,7 @@ app.post('/api/visitorReportDetail', (req,res) => {
|
||||
let param = req.body;
|
||||
// console.log(111,param.id)
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
activeObj:{
|
||||
id:1,title:'客户:北京中科睿信科技有限公司',name:'YS-VR2025091515',
|
||||
@@ -437,7 +437,7 @@ app.post('/api/mattersList', (req,res) => {
|
||||
// console.log(param)
|
||||
if(param.pageIndex==1){
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{ id:1,status:1,statusName:'待王彦琳审核',title:'西安微电子技术研究所',desc:'a该企业产品线技术改造延期,本月设备供应周期预 计延长7-15天。' },
|
||||
@@ -456,7 +456,7 @@ app.post('/api/mattersList', (req,res) => {
|
||||
}))
|
||||
}else if(param.pageIndex==2){
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[
|
||||
{ id:11,status:1,statusName:'待王彦琳审核',title:'北京中科睿信科技有限公司',desc:'该企业产品线技术改造延期,本月设备供应周期预 计延长7-15天。' },
|
||||
@@ -469,7 +469,7 @@ app.post('/api/mattersList', (req,res) => {
|
||||
}))
|
||||
}else{
|
||||
res.json(Mock.mock({
|
||||
code: 0,
|
||||
code: 200,
|
||||
data: {
|
||||
list:[],
|
||||
totalCount:14
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
import request from "@/utils/request"
|
||||
|
||||
// 查询客户人员列表
|
||||
export function getCustomerList(params){
|
||||
return request.get({
|
||||
url: '/app/appCustomerIfno/pageList',
|
||||
data: params
|
||||
},{isTransformResponse: false})
|
||||
}
|
||||
|
||||
// 查询系统推荐等级
|
||||
export function getCustomerLevel(params){
|
||||
return request.get({
|
||||
url: '/app/appCrmCusUserNewController/queryCustomerLevel',
|
||||
data: params
|
||||
},{isTransformResponse: false})
|
||||
}
|
||||
|
||||
export function saveappCrmCusUserNew(params){
|
||||
return request.get({
|
||||
url: '/app/appCrmCusUserNewController/add',
|
||||
data: params
|
||||
},{isTransformResponse: false})
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
import request from "@/utils/request"
|
||||
|
||||
export function getPersonalPlanList(params) {
|
||||
return request.post({
|
||||
url: '/getPersonalPlanList',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export function getUserInfo(data) {
|
||||
return request.get({
|
||||
url: '/app/user/getUserInfo',
|
||||
data
|
||||
}, {isTransformResponse: false})
|
||||
}
|
||||
//获取所有人周计划列表
|
||||
export function getAllWeekPlanList(params){
|
||||
return request.get({
|
||||
url: '/app/appWeeklyPlan/list',
|
||||
data: params
|
||||
},{isTransformResponse: false})
|
||||
}
|
||||
//获取个人周计划列表
|
||||
export function getWeeklyPlanList(data) {
|
||||
return request.get({
|
||||
url: '/app/appWeeklyPlan/getWeeklyListByUser',
|
||||
data
|
||||
}, {isTransformResponse: false})
|
||||
}
|
||||
// 组合查询计划列表
|
||||
export function getWeekPlanListByDate(params){
|
||||
return request.get({
|
||||
url: '/app/appWeeklyPlan/weeklyListByDate',
|
||||
data: params
|
||||
},{isTransformResponse: false})
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
import request from "@/utils/request"
|
||||
|
||||
export function updateWeekPlanList(data){
|
||||
return request.post({
|
||||
url: '/app/appWeeklyPlan/updateWeekly',
|
||||
data: data,
|
||||
header: {
|
||||
'Content-Type': 'application/json;charset=UTF-8'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 判断本周是否写过计划
|
||||
export function judgeThisWeek (data){
|
||||
return request.post({
|
||||
url: '/app/appWeeklyPlan/Judgethisweek',
|
||||
data,
|
||||
header: {'Content-Type': 'application/json;charset=UTF-8'}
|
||||
})
|
||||
}
|
||||
|
||||
// 新增周计划
|
||||
export function addPlan(data){
|
||||
return request.post({
|
||||
url: '/app/appWeeklyPlan/addComment',
|
||||
data,
|
||||
header:{'Content-Type': 'application/json;charset=UTF-8'}
|
||||
})
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
}
|
||||
},
|
||||
"pages": [
|
||||
|
||||
{
|
||||
"path": "pages/loading/loading",
|
||||
"style": {
|
||||
@@ -152,56 +153,20 @@
|
||||
"style": {
|
||||
"navigationBarTitleText": "客户选择"
|
||||
}
|
||||
},
|
||||
},
|
||||
//选择客户人员(已更新)
|
||||
{
|
||||
"path": "pages/business/CRM/customerUserList",
|
||||
"style": {
|
||||
"navigationBarTitleText": "客户人员选择"
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/weekPlanUpdate",//修改周计划
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/plan/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/plan/myPlan",//我的计划列表
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/plan/planEdit",//计划修改
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/plan/planView",//周计划查看
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/customer/customerAdd",//客户人员新增
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/customer/selectCustomer",//选择客户
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/business/CRM/vistorCheckin",//签到打卡
|
||||
"style": {
|
||||
@@ -220,7 +185,22 @@
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "pages/notice/notice",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"app-plus" : {
|
||||
"bounce" : "none" // 取消APP端iOS回弹,避免与下拉刷新冲突 (可统一配在 'globalStyle')
|
||||
},
|
||||
"mp-alipay":{"allowsBounceVertical":"NO"} // 取消支付宝和钉钉小程序的iOS回弹,避免与下拉刷新冲突 (可统一配在 'globalStyle')
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/userinfo/userinfo",
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
//===================================活动报告====================
|
||||
{
|
||||
"path": "pages/business/CRM/marketActivity/visitReport",//市场信息管理
|
||||
@@ -319,23 +299,9 @@
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
//===================================活动报告====================
|
||||
{
|
||||
"path": "pages/notice/notice",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"app-plus" : {
|
||||
"bounce" : "none" // 取消APP端iOS回弹,避免与下拉刷新冲突 (可统一配在 'globalStyle')
|
||||
},
|
||||
"mp-alipay":{"allowsBounceVertical":"NO"} // 取消支付宝和钉钉小程序的iOS回弹,避免与下拉刷新冲突 (可统一配在 'globalStyle')
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/userinfo/userinfo",
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
"navigationBarTextStyle": "black",
|
||||
|
||||
@@ -1,654 +0,0 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员新增'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
<view class="head-right" @click="submitForm">
|
||||
<uni-icons custom-prefix="iconfont" type="icon-phonebaocun" size="22"
|
||||
color="#B7D2FF"></uni-icons>
|
||||
保存
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="white-bg">
|
||||
<view class="form-con">
|
||||
<uni-forms ref="formRef" :model="formData" :rules="rules" label-width="40%">
|
||||
<!-- 选择客户 -->
|
||||
<uni-forms-item label="客户名称" name="cusName" required class="f-c-right">
|
||||
<!-- <picker @change="bindPickerChange" :value="guestIndex" :range="guestArr">-->
|
||||
<!-- <view class="f-c-text">-->
|
||||
<!-- {{guestArr[guestIndex]}}-->
|
||||
<!-- -->
|
||||
<!-- </view>-->
|
||||
<!-- </picker>-->
|
||||
<view class="customer-name" @click="handleCustomerClick">
|
||||
<uni-icons type="right" size="20" color="#A0A0A0"></uni-icons>
|
||||
<text> {{ customerUser.cusName || '查询客户人员' }}</text> <!---->
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 系统推荐等级 -->
|
||||
<uni-forms-item label="系统公司等级" name="cusEstate" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.cusEstate"
|
||||
:placeholder="customerUser.sysThinkLevel?customerUser.sysThinkLevel:'默认显示公司等级'"
|
||||
disabled/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员名称 -->
|
||||
<uni-forms-item label="人员姓名" name="customerUserName" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.customerUserName" placeholder="请输入姓名"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员手机号 -->
|
||||
<uni-forms-item label="人员手机号" name="iphone" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.iphone" placeholder="请输入手机号"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员部门 -->
|
||||
<uni-forms-item label="部门" name="userDept" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.userDept" placeholder="请输入所属部门"/>
|
||||
</uni-forms-item>
|
||||
<!-- 选择职能 -->
|
||||
<uni-forms-item label="职能" name="functionalRequirements" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleFunctionChange" :range="functionalRequirementList"
|
||||
:range-key="'name'"> <!--选择职能 索引: :value="functionIndex" index1 响应:handlePlace1 -->
|
||||
<view class="flex">
|
||||
{{ formData.functionalRequirements ? formData.functionalRequirements : '请选择' }}
|
||||
<!-- 职能:functionalRequirements -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 业务员选择人员等级 -->
|
||||
<uni-forms-item label="业务人员填写等级" name="salesmanThinkLevel" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleThinkLevelChange" :range="salesmanThinkLevelList"
|
||||
:range-key="'name'"> <!--选择推荐等级 索引:value="thinkLevelIndex" index8 响应:handlePlace9 -->
|
||||
<view class="flex">
|
||||
{{ formData.salesmanThinkLevel ? formData.salesmanThinkLevel : '请选择' }}
|
||||
<!-- 思考人员等级:salesmanThinkLevel-->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 系统推荐等级 -->
|
||||
<uni-forms-item label="系统推荐等级" name="systemThinkLevel" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.systemThinkLevel" :placeholder="recommendLevel || '默认显示系统推荐等级'"
|
||||
disabled/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员职务 -->
|
||||
<uni-forms-item label="职务" name="job" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.job" placeholder="请输入职务"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入办公场地 -->
|
||||
<uni-forms-item label="办公场地" name="officeSite" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.officeSite" placeholder="请输入办公场地"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入性别 -->
|
||||
<uni-forms-item label="性别" name="sex" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleGenderChange" :value="genderIndex" :range="genderList"
|
||||
:range-key="'name'"> <!--选择性别 索引:index2 ,范围:palceArray2,响应:handlePlace2-->
|
||||
<view class="flex">
|
||||
{{ formData.sex ? formData.sex : '请选择' }} <!-- 性别:sex -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员工作电话 -->
|
||||
<uni-forms-item label="工作电话" name="jobTelphone" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.jobTelphone" placeholder="请输入工作电话"/>
|
||||
</uni-forms-item>
|
||||
<!-- 选择人员等级 -->
|
||||
<uni-forms-item label="人员等级(K)" name="userType"
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleUserTypeChange" :value="userTypeIndex" :range="userTypeList"
|
||||
:range-key="'name'"> <!--选择等级 索引:index5 ,范围:palceArray3,响应:handlePlace6-->
|
||||
<view class="flex">
|
||||
{{ formData.userType ? formData.userType : '请选择' }} <!-- 等级:userType -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 输入专业产品 majorProduct-->
|
||||
<uni-forms-item label="专业产品" name="majorProduct" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.majorProduct" placeholder="请输入专业产品"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入产品需求 product-->
|
||||
<uni-forms-item label="产品需求" name="product" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.product" placeholder="请输入产品需求"/>
|
||||
</uni-forms-item>
|
||||
<!-- 选择任职时间 tenureTime-->
|
||||
<uni-forms-item label="任职日期" name="tenureTime" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-datetime-picker type="date" :clear-icon="false" v-model="formData.tenureTime"
|
||||
@change="handleTenureTimeChange"/> <!-- 响应:orderDateChange-->
|
||||
</uni-forms-item>
|
||||
<!-- 输入需求层次 hierarchyNeeds-->
|
||||
<uni-forms-item label="需求层次" name="hierarchyNeeds"
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleHierarchyNeedsChange" :value="hierarchyNeedsIndex" :range="hierarchyNeedsList"
|
||||
:range-key="'name'"> <!--选择层次 索引:index4 ,范围:palceArray5,响应:handlePlace5-->
|
||||
<view class="flex">
|
||||
{{ formData.hierarchyNeeds ? formData.hierarchyNeeds : '请选择' }} <!-- 层次:hierarchyNeeds -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 输入职务变化 jobChange-->
|
||||
<uni-forms-item label="职务变化" name="jobChange" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.jobChange" placeholder="请输入职务变化"/>
|
||||
</uni-forms-item>
|
||||
<!-- 选择发展潜能 develop-->
|
||||
<uni-forms-item label="发展潜能" name="develop"
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleDevelopChange" :value="developIndex" :range="developList"
|
||||
:range-key="'name'"> <!--选择潜力 索引:index3 ,范围:handlePlace4,响应:handlePlace5-->
|
||||
<view class="flex">
|
||||
{{ formData.develop ? formData.develop : '请选择' }} <!-- 潜能:develop -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 输入生日 -->
|
||||
<uni-forms-item label="生日" name="birthday" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-datetime-picker type="date" :clear-icon="false" v-model="formData.birthday"
|
||||
@change="handleBirthdayChange"/> <!-- 响应:birthdayChange-->
|
||||
</uni-forms-item>
|
||||
<!-- 输入爱好 -->
|
||||
<uni-forms-item label="爱好" name="hobby" class="uni-forms-item is-direction-top is-top">
|
||||
<!-- 索引:hobbyIndex 范围:hobbyList 响应:handleHobbyChange-->
|
||||
<uni-easyinput v-model="formData.hobby" placeholder="请输入爱好"/>
|
||||
<multipleSelect :multiple="true" :value="hobbyIndex" downInner :options="hobbyList"
|
||||
@change="handleHobbyChange" :key="Math.round()" :slabel="'name'"
|
||||
|
||||
></multipleSelect><!--placeholder="请选择爱好标签"-->
|
||||
</uni-forms-item>
|
||||
|
||||
<!-- <uni-forms-item label="爱好" name="hobby" class="uni-forms-item is-direction-top is-top">-->
|
||||
<!-- <uni-easyinput v-model="formData.hobby" placeholder="请输入爱好" @click="chooseHobby"/>-->
|
||||
<!-- chooseHobby选择标签 -->
|
||||
<!-- </uni-forms-item>-->
|
||||
<!-- 输入禁忌 taboo-->
|
||||
<uni-forms-item label="禁忌" name="taboo" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.taboo" placeholder="请输入禁忌"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入籍贯 nativec-->
|
||||
<uni-forms-item label="籍贯" name="nativec" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.nativec" placeholder="请输入或选择籍贯"/>
|
||||
<uni-data-picker placeholder="请选择" :localdata="city"
|
||||
:clear-icon="false"
|
||||
:map="{text:'label',value:'value'}"
|
||||
@change="handleNativeChange">
|
||||
|
||||
</uni-data-picker>
|
||||
<!-- {{formData.nativec? formData.nativec:'请选择'}}--><!-- 响应:address-->
|
||||
</uni-forms-item>
|
||||
<!-- 输入家庭住址 homeAddress-->
|
||||
<uni-forms-item label="家庭住址" name="homeAddress" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.homeAddress" placeholder="请输入家庭住址"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入家庭情况 familyStatus-->
|
||||
<uni-forms-item label="家庭情况" name="familyStatus" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.familyStatus" placeholder="请输入家庭情况"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入婚姻状况 maritalStatus-->
|
||||
<uni-forms-item label="婚姻状况" name="maritalStatus" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.maritalStatus" placeholder="请输入婚姻状况"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入车型及牌号 motorcycleType-->
|
||||
<uni-forms-item label="车型及牌号" name="motorcycleType" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.motorcycleType" placeholder="请输入车型及牌号"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入毕业院校 graduateIns-->
|
||||
<uni-forms-item label="毕业院校" name="graduateIns" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.graduateIns" placeholder="请输入毕业院校"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人脉关系 interpersonal-->
|
||||
<uni-forms-item label="人脉关系" name="interpersonal" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.interpersonal" placeholder="请输入人脉关系"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入支持程度 support-->
|
||||
<uni-forms-item label="支持程度" name="support" class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleSupportChange" :value="supportIndex" :range="supportLevelList"
|
||||
:range-key="'name'"> <!--选择支持程度 索引:index6 ,范围:palceArray6,响应:handlePlace7-->
|
||||
<view class="flex">
|
||||
{{ formData.support ? formData.support : '请选择' }} <!-- 支持:support -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 选择工作状态 workingStatus-->
|
||||
<uni-forms-item label="工作状态" name="workingStatus" class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleWorkingStatusChange" :value="workingStatusIndex" :range="workingStatusList"
|
||||
:range-key="'name'"> <!--选择支持程度 索引:index7 ,范围:palceArray7,响应:handlePlace8-->
|
||||
<view class="flex">
|
||||
{{ formData.workingStatus ? formData.workingStatus : '请选择' }} <!-- 工作:workingStatus -->
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 输入备注 -->
|
||||
<uni-forms-item label="备注" name="remark" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput type="textarea" autoHeight v-model="formData.remark" placeholder="请输入备注"
|
||||
class="form-texarea"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<view style="padding-bottom: 30rpx; font-size: 12px; color: gray; text-align: center;">*★,°*:.☆( ̄▽ ̄)/$:*.°★*
|
||||
。<br>恭喜你完成了信息填写,赶快提交吧!
|
||||
</view>
|
||||
<view style="padding-bottom: 80rpx;">
|
||||
<button type="primary" @click="submitForm">保存</button>
|
||||
</view>
|
||||
</uni-forms>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted, computed, reactive} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import multipleSelect from '@/components/multipleSelect.vue'
|
||||
import {
|
||||
developList,
|
||||
functionalRequirementList,
|
||||
genderList,
|
||||
hierarchyNeedsList, hobbyList,
|
||||
salesmanThinkLevelList, supportLevelList,
|
||||
userTypeList, workingStatusList
|
||||
} from "./dataMap";
|
||||
import city from "@/utils/area";
|
||||
import {getCustomerLevel, saveappCrmCusUserNew} from "@/api/crm/customer/getCustomer";
|
||||
|
||||
// 表单引用
|
||||
const formRef = ref({});
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
//部门
|
||||
userDept: null,
|
||||
//客户ID
|
||||
cusId: null,
|
||||
//客户人员名称
|
||||
customerUserName: null,
|
||||
userName: null,
|
||||
|
||||
//等级(K)
|
||||
userType: null,
|
||||
//手机号
|
||||
iphone: null,
|
||||
mobilePhone: null,
|
||||
//客户姓名
|
||||
cusName: null,
|
||||
//系统中公司等级
|
||||
cusEstate: null,
|
||||
//工作手机号
|
||||
jobTelphone: null,
|
||||
//职能
|
||||
functionalRequirements: '',
|
||||
//职务
|
||||
job: null,
|
||||
//专业产品
|
||||
majorProduct: null,
|
||||
//产品需求
|
||||
product: null,
|
||||
//办公场地
|
||||
officeSite: null,
|
||||
//性别
|
||||
sex: '男',
|
||||
//任职时间
|
||||
tenureTime: null,
|
||||
//需求层次
|
||||
hierarchyNeeds: null,
|
||||
//职务变化
|
||||
jobChange: null,
|
||||
//发展潜能
|
||||
develop: null,
|
||||
//生日
|
||||
birthday: null,
|
||||
//爱好
|
||||
hobby: null,
|
||||
//禁忌
|
||||
taboo: null,
|
||||
//籍贯
|
||||
nativec: null,
|
||||
//家庭情况
|
||||
familyStatus: null,
|
||||
//婚姻状况
|
||||
maritalStatus: null,
|
||||
//车辆及牌号
|
||||
motorcycleType: null,
|
||||
//毕业院校
|
||||
graduateIns: null,
|
||||
//家庭住址
|
||||
homeAddress: null,
|
||||
//人脉关系
|
||||
interpersonal: null,
|
||||
//支持程度
|
||||
support: null,
|
||||
//工作状态
|
||||
workingStatus: null,
|
||||
//备注
|
||||
remark: null,
|
||||
//业务员认为的等级
|
||||
salesmanThinkLevel: null,
|
||||
//系统认为的等级
|
||||
systemThinkLevel: null,
|
||||
//职能
|
||||
function: null,
|
||||
});
|
||||
|
||||
// 客户人员信息
|
||||
const customerUser = ref({
|
||||
cusName: null,
|
||||
sysThinkLevel: null
|
||||
});
|
||||
|
||||
// 表单校验规则
|
||||
let rules;
|
||||
// 初始化校验规则
|
||||
(function bindRules() {
|
||||
rules = reactive({
|
||||
cusName: {rules: [{required: true, errorMessage: '客户名称不能为空', trigger: 'blur'}]},
|
||||
customerUserName: {rules: [{required: true, errorMessage: '人员名称不能为空', trigger: 'blur'}]},
|
||||
iphone: {
|
||||
rules: [{
|
||||
required: true,
|
||||
errorMessage: '请填写手机号码',
|
||||
}, {
|
||||
validateFunction: function (rule, value, data, callback) {
|
||||
let iphoneReg = (
|
||||
/^(13[0-9]|14[1579]|15[0-3,5-9]|16[6]|17[0123456789]|18[0-9]|19[89])\d{8}$/
|
||||
); //手机号码
|
||||
if (!iphoneReg.test(value)) {
|
||||
callback('手机号码格式不正确,请重新填写')
|
||||
}
|
||||
}
|
||||
}]
|
||||
},
|
||||
userDept: {rules: [{required: true, errorMessage: '所属部门不能为空', trigger: 'blur'}]},
|
||||
functionalRequirements: {rules: [{required: true, errorMessage: '职能不能为空', trigger: 'blur'}]},
|
||||
salesmanThinkLevel: {rules: [{required: true, errorMessage: '手填等级不能为空', trigger: 'blur'}]},
|
||||
job: {rules: [{required: true, errorMessage: '职务不能为空', trigger: 'blur'}]},
|
||||
officeSite: {rules: [{required: true, errorMessage: '办公场地不能为空', trigger: 'blur'}]},
|
||||
sex: {rules: [{required: true, errorMessage: '性别不能为空', trigger: 'blur'}]},
|
||||
});
|
||||
console.log(rules, "校验规则");
|
||||
})();
|
||||
|
||||
// 选择客户人员
|
||||
let handleCustomerClick = () => {
|
||||
// 在起始页面跳转到test.vue页面,并监听test.vue发送过来的事件数据
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/customer/selectCustomer',
|
||||
events: {
|
||||
// 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
|
||||
cuSelected(data) {
|
||||
console.log(data, "获取到返回的数据")
|
||||
let {
|
||||
cusName, // 公司名称
|
||||
cusEstate, // 等级
|
||||
cusId,
|
||||
} = data;
|
||||
customerUser.value.cusName = cusName;
|
||||
if (!cusEstate) customerUser.value.sysThinkLevel = "该客户暂无等级信息,无法进行系统推荐"
|
||||
formData.value.cusEstate = cusEstate;
|
||||
formData.value.cusName = cusName;
|
||||
formData.value.cusId = cusId;
|
||||
getRecommendLevel();
|
||||
}
|
||||
},
|
||||
success: function (res) {
|
||||
// 通过eventChannel向被打开页面传送数据
|
||||
res.eventChannel.emit('requestCusList', {data: {cusName: customerUser.value.cusName}})
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
// 选择职能
|
||||
let handleFunctionChange = (e) => {
|
||||
console.log(e.detail.value, '职能索引');
|
||||
const {name} = functionalRequirementList[e.detail.value];
|
||||
formData.value.functionalRequirements = name;
|
||||
getRecommendLevel();
|
||||
}
|
||||
|
||||
// 选择等级
|
||||
let handleThinkLevelChange = (e) => {
|
||||
console.log(e.detail.value, '人员等级');
|
||||
const {name} = salesmanThinkLevelList[e.detail.value];
|
||||
formData.value.salesmanThinkLevel = name;
|
||||
}
|
||||
// 系统推荐等级
|
||||
let recommendLevel = ref("");
|
||||
let getRecommendLevel = async () => {
|
||||
if (formData.value.cusEstate && formData.value.functionalRequirements) {
|
||||
let {cusEstate, functionalRequirements} = formData.value;
|
||||
let param = {cusEstate, functionalRequirements};
|
||||
if (formData.value.salesmanThinkLevel) {
|
||||
param.personnelLevel = formData.value.salesmanThinkLevel;
|
||||
}
|
||||
let res = await getCustomerLevel(param).catch(err => {
|
||||
console.error(err, "客户的系统推荐等级获取失败")
|
||||
})
|
||||
if (!res.systemRecommendationLevel) {
|
||||
recommendLevel.value = "客户无等级信息,暂无法进行等级推荐"
|
||||
console.log(formData.value.systemThinkLevel + "???")
|
||||
}
|
||||
formData.value.systemThinkLevel = res.systemRecommendationLevel;
|
||||
} else {
|
||||
recommendLevel.value = "无公司等级信息,无法推荐等级";
|
||||
}
|
||||
};
|
||||
|
||||
// 性别索引
|
||||
let genderIndex = ref(0);
|
||||
// 选择性别
|
||||
let handleGenderChange = (e) => {
|
||||
const {value} = e.detail;
|
||||
console.log(e.detail.value);
|
||||
const {name} = genderList[value];
|
||||
genderIndex.value = value;
|
||||
formData.value.sex = name;
|
||||
}
|
||||
|
||||
// 人员等级索引
|
||||
let userTypeIndex = ref(0);
|
||||
// 选择人员等级
|
||||
let handleUserTypeChange = (e) => {
|
||||
let {value} = e.detail;
|
||||
userTypeIndex.value = value;
|
||||
const {name} = userTypeList[value];
|
||||
formData.value.userType = name;
|
||||
}
|
||||
|
||||
// 选择日期
|
||||
function handleTenureTimeChange(e) {
|
||||
// console.log(e)
|
||||
}
|
||||
|
||||
// 需求层次索引
|
||||
let hierarchyNeedsIndex = ref(0);
|
||||
// 选择需求层次
|
||||
let handleHierarchyNeedsChange = e => {
|
||||
let {value} = e.detail;
|
||||
const {name} = hierarchyNeedsList[value];
|
||||
hierarchyNeedsIndex.value = value;
|
||||
formData.value.hierarchyNeeds = name;
|
||||
}
|
||||
// 发展潜能索引
|
||||
let developIndex = ref(0);
|
||||
// 选择发展潜能
|
||||
let handleDevelopChange = e => {
|
||||
let {value} = e.detail;
|
||||
developIndex.value = value;
|
||||
formData.value.develop = developList[value].name;
|
||||
}
|
||||
|
||||
// 选择生日
|
||||
function handleBirthdayChange(e) {
|
||||
// console.log(e)
|
||||
}
|
||||
|
||||
// 爱好标签索引
|
||||
let hobbyIndex = reactive([]);
|
||||
// 选择爱好标签
|
||||
const handleHobbyChange = (item, value) => {
|
||||
// console.log("爱好", item, value);
|
||||
hobbyIndex = value;
|
||||
};
|
||||
// 选择
|
||||
const handleNativeChange = (e) => {
|
||||
formData.value.nativec = (e.detail.value.map(item => {
|
||||
return item.text;
|
||||
}).join("-"))
|
||||
}
|
||||
// 支持程度索引
|
||||
let supportIndex = ref(0);
|
||||
// 选择支持程度
|
||||
let handleSupportChange = e => {
|
||||
let {value} = e.detail;
|
||||
supportIndex.value = value;
|
||||
formData.value.support = supportLevelList[value].name;
|
||||
}
|
||||
// 工作状态索引
|
||||
let workingStatusIndex = ref(0);
|
||||
let handleWorkingStatusChange = e => {
|
||||
let {value} = e.detail;
|
||||
workingStatusIndex.value = 0;
|
||||
formData.value.workingStatus = workingStatusList[value].name;
|
||||
}
|
||||
|
||||
let submitForm = async () => {
|
||||
let hobbyTags = hobbyIndex.map(it => {
|
||||
let {name} = hobbyList[it];
|
||||
return name;
|
||||
})
|
||||
const hobbyTagString = hobbyTags.join(',');
|
||||
console.log(hobbyTagString);
|
||||
if (hobbyTagString || formData.value.hobby) {
|
||||
formData.value.hobby = formData.value.hobby ? formData.value.hobby + ',' + hobbyTagString : hobbyTagString;
|
||||
}
|
||||
// console.log(formData.value, "校验表单数据")
|
||||
// console.log(recommendLevel);
|
||||
formData.value.cusName = customerUser.value.cusName;
|
||||
try {
|
||||
await formRef.value.validate()
|
||||
console.log(formData.value, "提交表单数据")
|
||||
// 请求保存
|
||||
uni.showLoading()
|
||||
saveappCrmCusUserNew(formData.value).then(res=>{
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
title: "保存成功"
|
||||
})
|
||||
setTimeout(()=>uni.navigateBack(), 1500);
|
||||
}).catch(err=>{
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: "保存失败"
|
||||
})
|
||||
})
|
||||
// 重置表单
|
||||
// 清除校验
|
||||
|
||||
} catch (err) {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: '请检查并完善信息'
|
||||
})
|
||||
console.warn(err);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
:deep(.uni-easyinput__content.is-input-border) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
:deep(.uni-easyinput__content.is-input-border.is-disabled) {
|
||||
border: none;
|
||||
}
|
||||
|
||||
:deep(.uni-easyinput__content.is-input-border.is-disabled .uni-easyinput__content-input) {
|
||||
background-color: #f0f0f0 !important;
|
||||
}
|
||||
|
||||
:deep(.is-disabled .uni-easyinput__placeholder-class) {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
:deep(.uni-select-dc-select .uni-select-multiple) {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.form-picker {
|
||||
padding: 15rpx;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
:deep(.uni-date-x .uni-date__x-input) {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
width: 750rpx;
|
||||
padding: 30rpx 0 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: 8px 8px 0 0;
|
||||
}
|
||||
|
||||
.customer-name {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row-reverse
|
||||
}
|
||||
|
||||
:deep(.uni-date-x) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
:deep(.uni-date-x .icon-calendar) {
|
||||
float: right;
|
||||
margin-top: 15rpx;
|
||||
margin-right: 20rpx;
|
||||
background: url('../../../../static/images/business/icon-date.png') no-repeat;
|
||||
background-size: 32rpx 35rpx;
|
||||
width: 32rpx;
|
||||
height: 35rpx;
|
||||
}
|
||||
|
||||
:deep(.uni-date-x .icon-calendar::before) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
:deep(.uni-date-x .uni-date__x-input) {
|
||||
padding-left: 20rpx;
|
||||
color: #919191;
|
||||
}
|
||||
</style>
|
||||
@@ -1,116 +0,0 @@
|
||||
/**
|
||||
* 职能选项列表
|
||||
* @type {[{id: number, name: string}]}
|
||||
*/
|
||||
export const functionalRequirementList = [
|
||||
{id: 1, name: '客户一把手'},
|
||||
{id: 2, name: '主管科研的高层领导'},
|
||||
{id: 3, name: '主管物资的高层领导'},
|
||||
{id: 4, name: '主管技术的重点型号两总'},
|
||||
{id: 5, name: '物资部门一把手'},
|
||||
{id: 6, name: '主管技术的型号两总'},
|
||||
{id: 7, name: '主管技术的中层领导'},
|
||||
{id: 8, name: '主管物资的中层领导'},
|
||||
{id: 9, name: '设计组长'},
|
||||
{id: 10, name: '重点设计师'},
|
||||
{id: 11, name: '采购组长'},
|
||||
{id: 12, name: '采购员'},
|
||||
{id: 13, name: '质量部门和其他相关部门中层领导'},
|
||||
{id: 14, name: '基层设计人员'},
|
||||
{id: 15, name: '其他相关人员'}
|
||||
]
|
||||
/**
|
||||
* 等级选项列表
|
||||
*/
|
||||
export const salesmanThinkLevelList = [
|
||||
{id: 1, name: 'Y1(D)', value: 'A'},
|
||||
{id: 2, name: 'Y2(C)', value: 'B'},
|
||||
{id: 3, name: 'Y3(B)', value: 'C'},
|
||||
{id: 4, name: 'Y4(A)', value: 'D'}
|
||||
]
|
||||
/**
|
||||
* 性别选项列表
|
||||
*/
|
||||
export const genderList = [
|
||||
{id: 1, name: '男'},
|
||||
{id: 2, name: '女'}
|
||||
]
|
||||
/**
|
||||
* 人员等级选项列表
|
||||
*/
|
||||
export const userTypeList = [
|
||||
{id: 1, name: 'YA'},
|
||||
{id: 2, name: 'NA'},
|
||||
{id: 3, name: 'YB-'},
|
||||
{id: 4, name: 'YB'},
|
||||
{id: 5, name: 'YB+'},
|
||||
{id: 6, name: 'NB'},
|
||||
{id: 7, name: 'YC'},
|
||||
{id: 8, name: 'YC+'},
|
||||
{id: 9, name: 'NC'},
|
||||
{id: 10, name: 'YD'},
|
||||
{id: 11, name: 'ND'}
|
||||
]
|
||||
/**
|
||||
* 需求层次列表
|
||||
*/
|
||||
export const hierarchyNeedsList = [
|
||||
{id: 1, name: '生理'},
|
||||
{id: 2, name: '安全'},
|
||||
{id: 3, name: '归属'},
|
||||
{id: 4, name: '尊重'},
|
||||
{id: 5, name: '自我实现'}
|
||||
]
|
||||
/**
|
||||
* 发展潜力列表
|
||||
*/
|
||||
export const developList = [
|
||||
{id: 1, name: '上行'},
|
||||
{id: 2, name: '平行'},
|
||||
{id: 3, name: '下行'}
|
||||
]
|
||||
/**
|
||||
* 爱好标签列表
|
||||
*/
|
||||
export const hobbyList = [
|
||||
{id: '1', value: 1, name: '游戏'},
|
||||
{id: '2', value: 2, name: '羽毛球'},
|
||||
{id: '3', value: 3, name: '篮球'},
|
||||
{id: '4', value: 4, name: '足球'},
|
||||
{id: '5', value: 5, name: '打牌'},
|
||||
{id: '6', value: 6, name: '唱歌'},
|
||||
{id: '7', value: 7, name: '钓鱼'},
|
||||
{id: '8', value: 8, name: '跑步'},
|
||||
{id: '9', value: 9, name: '滑雪'},
|
||||
{id: '11', value: 11, name: '旅游'},
|
||||
{id: '12', value: 12, name: '读书'},
|
||||
{id: '13', value: 13, name: '摩托'},
|
||||
{id: '14', value: 14, name: '汽车'},
|
||||
{id: '15', value: 15, name: '军事'},
|
||||
{id: '16', value: 16, name: '美食'},
|
||||
{id: '17', value: 17, name: '文玩'},
|
||||
{id: '18', value: 18, name: '其他'}
|
||||
]
|
||||
/**
|
||||
* 支持程度列表
|
||||
*/
|
||||
export const supportLevelList = [
|
||||
{id: 1, name: '+5:热情拥护'},
|
||||
{id: 2, name: '+4:大力支持'},
|
||||
{id: 3, name: '+3:支持'},
|
||||
{id: 4, name: '+2:感兴趣'},
|
||||
{id: 5, name: '+1:认知相同'},
|
||||
{id: 10, name: '-1:不会拒绝'},
|
||||
{id: 9, name: '-2:不感兴趣'},
|
||||
{id: 8, name: '-3:负面评价'},
|
||||
{id: 7, name: '-4:抗拒建议'},
|
||||
{id: 6, name: '-5:支持对手'}
|
||||
]
|
||||
/**
|
||||
* 工作状态列表
|
||||
*/
|
||||
export const workingStatusList = [
|
||||
{id: 1, name: '正常上班'},
|
||||
{id: 2, name: '离职'},
|
||||
{id: 3, name: '退休'}
|
||||
]
|
||||
@@ -1,265 +0,0 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户列表'" :leftFlag="true" :rightFlag="false">
|
||||
<template #right>
|
||||
<view class="head-right" @click="handleAdd">
|
||||
<uni-icons type="plus" size="24" color="#B7D2FF"></uni-icons>
|
||||
新增
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="all-body">
|
||||
<!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"-->
|
||||
<view class="search">
|
||||
<uni-search-bar class="custom-search" radius="28" placeholder="请输入客户名称" clearButton="auto"
|
||||
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
|
||||
v-model="searchValue"
|
||||
/>
|
||||
<button type="default" @click="searchValue=''" size="mini" class="btn-search">清空</button>
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
|
||||
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
|
||||
class="scroll-h" :class="{'loading-scroll':cssFlag}"
|
||||
><!-- @down="downCallback"-->
|
||||
<radio-group class="block" @change="radioChange">
|
||||
<view class="white-bg" v-for="(item, index) in list" :key="index" @click="handleDetail(item)">
|
||||
<radio class='radio'
|
||||
:class="index==selectIndex?'checked':''"
|
||||
:checked="index==selectIndex?true:false"
|
||||
:value="item"
|
||||
:data-index="index">
|
||||
</radio>
|
||||
|
||||
<view class="report-list">
|
||||
<view class="title">{{ item.cusName }}</view>
|
||||
<!-- <view class="r-list">
|
||||
<view class="r-name">{{ item.shortName }}</view>
|
||||
<view class="r-right btn-orange" size="mini">{{ item.statusName }}</view>
|
||||
</view>-->
|
||||
<view class="border-bottom"></view>
|
||||
<!-- <view class="r-list">
|
||||
<view class="r-left">日期</view>
|
||||
<view class="r-right">{{ new Date(item.createTime).toLocaleDateString()}}</view>
|
||||
</view>-->
|
||||
</view>
|
||||
</view>
|
||||
</radio-group>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import {ref, onMounted, getCurrentInstance, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
import {getCustomerList} from "@/api/crm/customer/getCustomer";
|
||||
|
||||
let instance = null;
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
const mescrollRef = ref(null);
|
||||
let searchValue = ref('')
|
||||
|
||||
let cssFlag=ref(false);//控制样式
|
||||
|
||||
const upOption = ref({
|
||||
page: { num: 0, size: 10 },
|
||||
noMoreSize: 5,
|
||||
empty: { tip: '~ 空空如也 ~' },
|
||||
textLoading: '加载中...',
|
||||
textNoMore: '已经到底了'
|
||||
});
|
||||
|
||||
const downOption = ref({
|
||||
auto: true,
|
||||
textInOffset: '下拉刷新',
|
||||
textOutOffset: '释放更新',
|
||||
textLoading: '刷新中...'
|
||||
});
|
||||
|
||||
const mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
|
||||
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('requestCusList', async (res) => {
|
||||
let {cusName} = res.data;
|
||||
// console.log(cusName, "客户选择页读取到参数");
|
||||
searchValue.value = cusName;
|
||||
})
|
||||
})
|
||||
|
||||
let timerId = null;
|
||||
// 搜索
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
// console.log(`新值: ${newValue}, 旧值: ${oldValue}`);
|
||||
if(!timerId) clearTimeout(timerId);
|
||||
cssFlag.value = true;
|
||||
timerId = setTimeout(async ()=>{
|
||||
handleSearch();
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500);
|
||||
});
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(1, upOption.value.page.size);
|
||||
cssFlag.value = false;
|
||||
list.value = res.list;
|
||||
// 正确结束下拉刷新状态
|
||||
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
|
||||
} catch (error) {
|
||||
// 发生错误时结束下拉刷新
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
const res = await getList(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.list;
|
||||
} else {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
// 正确结束上拉加载状态
|
||||
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
|
||||
} catch (error) {
|
||||
// 发生错误时结束上拉加载
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
// 触发下拉刷新以重新加载数据
|
||||
if (mescrollRef.value) {
|
||||
downCallback(mescrollRef.value.mescroll);
|
||||
}
|
||||
}
|
||||
// 获取数据列表
|
||||
const getList = async (pageIndex, pageSize) => {
|
||||
let param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
cusName: searchValue.value
|
||||
}
|
||||
let { rows, total } = await getCustomerList(param)
|
||||
return {list: rows, total};
|
||||
}
|
||||
// 选中项的索引号
|
||||
const selectIndex = ref(null);
|
||||
const radioChange = (e) => {
|
||||
let {value} = e.detail;
|
||||
let {index} = e.target.dataset;
|
||||
// console.log(value);
|
||||
// console.log(e.target.dataset);
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('cuSelected', value);
|
||||
uni.navigateBack()
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
line-height: 56rpx !important;
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search .btn-search::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search .custom-search {
|
||||
width: 80%;
|
||||
|
||||
}
|
||||
|
||||
.search .custom-search.uni-searchbar {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
//padding-bottom:10rpx;
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.radio {
|
||||
padding-right: 20rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 32rpx;
|
||||
line-height: 48rpx;
|
||||
}
|
||||
|
||||
.report-list {
|
||||
width: calc(100% - 70rpx);
|
||||
//background-color: pink;
|
||||
}
|
||||
|
||||
.border-bottom {
|
||||
margin-top: 6rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -1,66 +1,67 @@
|
||||
<template>
|
||||
<uni-forms ref="formRef" :model="formData" label-width="100px" label-position="top">
|
||||
<uni-forms-item label="客户人员" name="customerUserList" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.customerUserList" placeholder="请选择客户人员" name="input"
|
||||
:disabled="isDisabled"
|
||||
@focus="chooseClientUser"></uni-easyinput>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="我方参与人" name="myUserList" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.myUserList" placeholder="请选择我方参与人" name="input"
|
||||
:disabled="isDisabled"
|
||||
@focus="chooseMyUser"></uni-easyinput>
|
||||
</uni-forms-item>
|
||||
<uni-forms ref="formRef" :model="formData" label-width="100px" label-position="top">
|
||||
<uni-forms-item label="客户人员" name="customerUserList" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.customerUserList" placeholder="请选择客户人员" name="input"
|
||||
:disabled="isDisabled"
|
||||
@focus="chooseClientUser"></uni-easyinput>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="我方参与人" name="myUserList" class="f-c-right">
|
||||
<uni-easyinput v-model="formData.myUserList" placeholder="请选择我方参与人" name="input"
|
||||
:disabled="isDisabled"
|
||||
@focus="chooseMyUser"></uni-easyinput>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="住宿天数" name="stayDays">
|
||||
<picker
|
||||
@change="handlePickerChange"
|
||||
:value="stayDaysIndex"
|
||||
:range="stayDaysOptions"
|
||||
:disabled="isDisabled"
|
||||
>
|
||||
<view class="picker-container">
|
||||
<view class="picker-display">
|
||||
{{ stayDaysOptions[stayDaysIndex] }}
|
||||
</view>
|
||||
<uni-icons type="arrowdown" size="16" color="#666"></uni-icons>
|
||||
<uni-forms-item label="住宿天数" name="stayDays">
|
||||
<picker
|
||||
@change="handlePickerChange"
|
||||
:value="stayDaysIndex"
|
||||
:range="stayDaysOptions"
|
||||
:disabled="isDisabled"
|
||||
>
|
||||
<view class="picker-container">
|
||||
<view class="picker-display">
|
||||
{{ stayDaysOptions[stayDaysIndex] }}
|
||||
</view>
|
||||
</picker>
|
||||
</uni-forms-item>
|
||||
<uni-icons type="arrowdown" size="16" color="#666"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</uni-forms-item>
|
||||
|
||||
<uni-forms-item label="活动文字" name="activeTxt" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput type="textarea" autoHeight v-model="formData.activeTxt" placeholder="请输入" 活动文字
|
||||
class="form-texarea"/>
|
||||
</uni-forms-item>
|
||||
</uni-forms>
|
||||
<view class="footer-con">
|
||||
<button class="btn-default" type="default" @click="handleDeleteVisistDetailItem" size="mini">删 除</button>
|
||||
<button class="btn-primary" type="primary" @click="submitForm" size="mini">保存/修改</button>
|
||||
</view>
|
||||
<uni-forms-item label="活动文字" name="activeTxt" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput type="textarea" autoHeight v-model="formData.activeTxt" placeholder="请输入" 活动文字
|
||||
class="form-texarea" />
|
||||
</uni-forms-item>
|
||||
</uni-forms>
|
||||
<view class="footer-con">
|
||||
<button class="btn-default" type="default" @click="handleDeleteVisistDetailItem" size="mini">删 除</button>
|
||||
<button class="btn-primary" type="primary" @click="submitForm" size="mini">保存/修改</button>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup name="lyVisitComponent">
|
||||
import {ref, reactive} from 'vue'
|
||||
import { ref, reactive } from 'vue'
|
||||
import cache from '../../../../../utils/cache'
|
||||
import {onShow, onUnload} from '@dcloudio/uni-app';
|
||||
import {addVisistDetail, deleVisistDetailItem, getVisistDetailItem} from '../../../../../api/crm/activity/activity';
|
||||
import { onShow, onUnload } from '@dcloudio/uni-app';
|
||||
import { addVisistDetail, deleVisistDetailItem, getVisistDetailItem } from '../../../../../api/crm/activity/activity';
|
||||
|
||||
let customerUserList = ref([])
|
||||
let myUserList = ref([])
|
||||
let activeTxt = ref('')
|
||||
let isDisabled = ref(false)
|
||||
const props = defineProps({
|
||||
cusName: String, //客户单位名称
|
||||
cusId: Number,//客户ID
|
||||
visistId: Number,//活动ID
|
||||
status: String //状态
|
||||
cusName: String, //客户单位名称
|
||||
cusId: Number,//客户ID
|
||||
visistId: Number,//活动ID
|
||||
status: String //状态
|
||||
})
|
||||
|
||||
|
||||
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
customerUserList,
|
||||
myUserList,
|
||||
activeTxt
|
||||
customerUserList,
|
||||
myUserList,
|
||||
activeTxt
|
||||
});
|
||||
|
||||
// 表单ref
|
||||
@@ -68,151 +69,150 @@ const formRef = ref(null);
|
||||
|
||||
//删除明细项的内容
|
||||
let lyDeleteForm = reactive({})
|
||||
|
||||
function handleDeleteVisistDetailItem() {
|
||||
lyDeleteForm.treeName = '联谊活动'
|
||||
lyDeleteForm.visistId = props.visistId
|
||||
deleVisistDetailItem(lyDeleteForm).then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
title: '删除成功',
|
||||
duration: 2000
|
||||
});
|
||||
//响应成功,删除缓存记录
|
||||
handleDelete()
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
});
|
||||
}
|
||||
})
|
||||
lyDeleteForm.treeName = '联谊活动'
|
||||
lyDeleteForm.visistId = props.visistId
|
||||
deleVisistDetailItem(lyDeleteForm).then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
title: '删除成功',
|
||||
duration: 2000
|
||||
});
|
||||
//响应成功,删除缓存记录
|
||||
handleDelete()
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 删除内容
|
||||
let handleDelete = () => {
|
||||
formData.value.customerUserList = null
|
||||
formData.value.myUserList = null
|
||||
formData.value.activeTxt = null
|
||||
stayDaysIndex.value = 0
|
||||
if (cache.get('checkedLYClientList') != null) {
|
||||
cache.remove('checkedYWClientList');
|
||||
}
|
||||
if (cache.get('checkedLYMyUserList') != null) {
|
||||
cache.remove('checkedLYMyUserList');
|
||||
}
|
||||
formData.value.customerUserList = null
|
||||
formData.value.myUserList = null
|
||||
formData.value.activeTxt = null
|
||||
if (cache.get('checkedLYClientList') != null) {
|
||||
cache.remove('checkedYWClientList');
|
||||
}
|
||||
if (cache.get('checkedLYMyUserList') != null) {
|
||||
cache.remove('checkedLYMyUserList');
|
||||
}
|
||||
}
|
||||
|
||||
//删除缓存
|
||||
let handleDeleteLocal = () => {
|
||||
cache.remove('checkedLYClientList');
|
||||
cache.remove('checkedLYMyUserList');
|
||||
cache.remove('checkedLYClientList');
|
||||
cache.remove('checkedLYMyUserList');
|
||||
}
|
||||
|
||||
let lyForm = reactive({})
|
||||
// 保存/修改
|
||||
const submitForm = async () => {
|
||||
try {
|
||||
// 验证表单
|
||||
await formRef.value.validate();
|
||||
// 验证通过后的操作
|
||||
uni.showToast({
|
||||
title: '验证通过',
|
||||
icon: 'success'
|
||||
});
|
||||
lyForm.treeName = '联谊活动'
|
||||
lyForm.cusId = props.cusId
|
||||
lyForm.visistId = props.visistId
|
||||
|
||||
if (Array.isArray(myUserList.value)) {
|
||||
lyForm.ourPersonnel = myUserList.value.join(',')
|
||||
} else {
|
||||
lyForm.ourPersonnel = myUserList.value
|
||||
}
|
||||
|
||||
if (Array.isArray(customerUserList.value)) {
|
||||
lyForm.cusPersonnel = customerUserList.value.join(',')
|
||||
} else {
|
||||
lyForm.cusPersonnel = customerUserList.value
|
||||
}
|
||||
|
||||
lyForm.bandResult = activeTxt.value
|
||||
lyForm.multiple = stayDaysIndex.value + 1
|
||||
// 提交服务器进行新增
|
||||
addVisistDetail(lyForm).then(res => {
|
||||
if (res.code == 200) {
|
||||
try {
|
||||
// 验证表单
|
||||
await formRef.value.validate();
|
||||
// 验证通过后的操作
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
duration: 2000
|
||||
title: '验证通过',
|
||||
icon: 'success'
|
||||
});
|
||||
//响应成功,删除缓存记录
|
||||
handleDeleteLocal()
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
});
|
||||
}
|
||||
})
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err);
|
||||
}
|
||||
lyForm.treeName = '联谊活动'
|
||||
lyForm.cusId = props.cusId
|
||||
lyForm.visistId = props.visistId
|
||||
|
||||
if (Array.isArray(myUserList.value)) {
|
||||
lyForm.ourPersonnel = myUserList.value.join(',')
|
||||
} else {
|
||||
lyForm.ourPersonnel = myUserList.value
|
||||
}
|
||||
|
||||
if (Array.isArray(customerUserList.value)) {
|
||||
lyForm.cusPersonnel = customerUserList.value.join(',')
|
||||
} else {
|
||||
lyForm.cusPersonnel = customerUserList.value
|
||||
}
|
||||
|
||||
lyForm.bandResult = activeTxt.value
|
||||
lyForm.multiple = stayDaysIndex.value+1
|
||||
// 提交服务器进行新增
|
||||
addVisistDetail(lyForm).then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
duration: 2000
|
||||
});
|
||||
//响应成功,删除缓存记录
|
||||
handleDeleteLocal()
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
});
|
||||
}
|
||||
})
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err);
|
||||
}
|
||||
};
|
||||
|
||||
//页面渲染完成后,查询catch的get
|
||||
onShow(() => {
|
||||
|
||||
if (cache.get('checkedLYClientList') != null && cache.get('checkedLYClientList') != []) {
|
||||
customerUserList.value = cache.get('checkedLYClientList')
|
||||
}
|
||||
if (cache.get('checkedLYClientList') != null && cache.get('checkedLYClientList') != []) {
|
||||
customerUserList.value = cache.get('checkedLYClientList')
|
||||
}
|
||||
|
||||
if (cache.get('checkedLYMyUserList') != null && cache.get('checkedLYMyUserList') != []) {
|
||||
myUserList.value = cache.get('checkedLYMyUserList')
|
||||
}
|
||||
console.log(props.status, '获取的状态')
|
||||
if (cache.get('checkedLYMyUserList') != null && cache.get('checkedLYMyUserList') != []) {
|
||||
myUserList.value = cache.get('checkedLYMyUserList')
|
||||
}
|
||||
console.log(props.status,'获取的状态')
|
||||
|
||||
if (props.status == '完成') {
|
||||
isDisabled.value = true
|
||||
} else {
|
||||
isDisabled.value = false
|
||||
}
|
||||
if(props.status=='完成'){
|
||||
isDisabled.value = true
|
||||
}else{
|
||||
isDisabled.value = false
|
||||
}
|
||||
})
|
||||
|
||||
//查询日常走访的内容
|
||||
let queryLYForm = reactive({})
|
||||
let getLYVisitReportDetailContent = () => {
|
||||
queryLYForm.visistId = props.visistId
|
||||
queryLYForm.cusId = props.cusId
|
||||
queryLYForm.treeName = '联谊活动'
|
||||
getVisistDetailItem(queryLYForm).then(res => {
|
||||
if (res.rows[0] != null) {
|
||||
customerUserList.value = res.rows[0].customerPersonnel
|
||||
myUserList.value = res.rows[0].ourPersonnel
|
||||
stayDaysIndex.value = res.rows[0].multiple - 1
|
||||
activeTxt.value = res.rows[0].bandResult
|
||||
}
|
||||
})
|
||||
queryLYForm.visistId = props.visistId
|
||||
queryLYForm.cusId = props.cusId
|
||||
queryLYForm.treeName = '联谊活动'
|
||||
getVisistDetailItem(queryLYForm).then(res => {
|
||||
if (res.rows[0] != null) {
|
||||
customerUserList.value = res.rows[0].customerPersonnel
|
||||
myUserList.value = res.rows[0].ourPersonnel
|
||||
stayDaysIndex.value = res.rows[0].multiple-1
|
||||
activeTxt.value = res.rows[0].bandResult
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
//页面卸载之后,删除缓存信息
|
||||
onUnload(() => {
|
||||
handleDeleteLocal()
|
||||
handleDeleteLocal()
|
||||
})
|
||||
|
||||
|
||||
//选择客户人员
|
||||
function chooseClientUser() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/marketActivity/customerUserList?cusName=' + props.cusName + '&chooseType=联谊活动'
|
||||
})
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/marketActivity/customerUserList?cusName=' + props.cusName + '&chooseType=联谊活动'
|
||||
})
|
||||
}
|
||||
|
||||
//选择我方参与人
|
||||
function chooseMyUser() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/marketActivity/myUserList?chooseType=联谊活动'
|
||||
})
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/marketActivity/myUserList?chooseType=联谊活动'
|
||||
})
|
||||
}
|
||||
|
||||
// 住宿天数
|
||||
@@ -221,13 +221,13 @@ const stayDaysIndex = ref(0) // 默认未选择
|
||||
|
||||
const handlePickerChange = (e) => {
|
||||
stayDaysIndex.value = e.detail.value
|
||||
console.log("天数数字:", stayDaysIndex.value + 1)
|
||||
console.log("天数数字:",stayDaysIndex.value+1)
|
||||
}
|
||||
|
||||
// 明确暴露给父组件的方法
|
||||
defineExpose({
|
||||
handleDelete,
|
||||
getLYVisitReportDetailContent
|
||||
handleDelete,
|
||||
getLYVisitReportDetailContent
|
||||
})
|
||||
|
||||
</script>
|
||||
@@ -235,55 +235,55 @@ defineExpose({
|
||||
|
||||
<style scoped lang="scss">
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
line-height: 56rpx !important;
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
line-height: 56rpx !important;
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search .btn-search::after {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search .custom-search {
|
||||
width: 80%;
|
||||
width: 80%;
|
||||
|
||||
}
|
||||
|
||||
.search .custom-search.uni-searchbar {
|
||||
padding-right: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
padding-bottom: 10rpx;
|
||||
padding-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.picker-container {
|
||||
|
||||
@@ -101,7 +101,7 @@ watch(searchValue, (newValue, oldValue) => {
|
||||
searchContent: searchValue.value
|
||||
};
|
||||
getYsVisistList(data).then(res => {
|
||||
if (res.code === 200) {
|
||||
if (res.code == 200) {
|
||||
//设置列表数据
|
||||
list.value = res.rows;
|
||||
}
|
||||
|
||||
@@ -80,9 +80,9 @@
|
||||
</view>
|
||||
</block>
|
||||
<!-- 评论 -->
|
||||
<!-- <block v-if="activeTab === 1">-->
|
||||
<!-- <view class="white-bg white-bg-2">评论内容</view>-->
|
||||
<!-- </block>-->
|
||||
<block v-if="activeTab === 1">
|
||||
<view class="white-bg white-bg-2">评论内容</view>
|
||||
</block>
|
||||
</customTabs>
|
||||
|
||||
|
||||
@@ -139,7 +139,7 @@ const getVisitorReportDetail = async () => {
|
||||
|
||||
// 报告明细&评论
|
||||
const activeTab = ref(0);//默认报告明细
|
||||
const tabList = ['报告明细'];
|
||||
const tabList = ['报告明细', '评论'];
|
||||
|
||||
// 点击赞
|
||||
let zanFlag = ref(false)
|
||||
|
||||
@@ -71,11 +71,7 @@ import { ref, reactive, onMounted } from 'vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import { getNavBarPaddingTop } from '@/utils/system.js'
|
||||
import { getQueryVisistList } from '../../../../api/crm/activity/activity';
|
||||
import {onShow} from "@dcloudio/uni-app";
|
||||
|
||||
onShow(()=>{
|
||||
downCallback(mescrollRef.value.mescroll)
|
||||
})
|
||||
|
||||
let list = ref([])
|
||||
let queryParams = reactive({
|
||||
@@ -122,22 +118,17 @@ const downCallback = async (mescroll) => {
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
queryParams.pageNum = 1;
|
||||
queryParams.pageSize = upOption.value.page.size;
|
||||
const res = await getQueryVisistList(queryParams);
|
||||
// const res = await getVisitorReportList(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.rows;
|
||||
// list.value = res.list;
|
||||
} else {
|
||||
list.value.push(...res.rows);
|
||||
// list.value.push(...res.list);
|
||||
}
|
||||
console.log(res,'长度测试')
|
||||
mescroll.endBySize(res.rows.length, res.total);
|
||||
// mescroll.endBySize(res.list.length, res.total);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
mescroll.endErr();
|
||||
}
|
||||
|
||||
console.log('长度测试111')
|
||||
}
|
||||
|
||||
const upOption = ref({
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<!-- 正文内容 -->
|
||||
<view class="white-bg">
|
||||
<view class="form-con">
|
||||
<uni-forms ref="formRef" :model="formData" label-width="100px">
|
||||
<uni-forms ref="formRef" :model="formData" :rules="rules" label-width="100px">
|
||||
<view @click="addVisistReport" class="form-item-container">
|
||||
<uni-forms-item label="客户名称" name="cusName" class="f-c-right">
|
||||
<text class="name">{{ formData.cusName }}</text>
|
||||
@@ -65,12 +65,14 @@
|
||||
|
||||
|
||||
|
||||
<uni-forms-item label="我方领导" name="leader"
|
||||
<uni-forms-item label="我方领导" name="leader" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
|
||||
<multipleSelect :multiple="true" :value="chooseMyLeaderList" downInner
|
||||
:options="myLeaderList" @change="changeValue2" :key="Math.round()" :slabel="'text'">
|
||||
</multipleSelect>
|
||||
<!-- <uni-easyinput v-model="formData.leader" placeholder="请输入我方领导" />-->
|
||||
|
||||
</uni-forms-item>
|
||||
|
||||
|
||||
@@ -121,6 +123,14 @@ const changeValue2 = (item, value) => {
|
||||
formData.value.leader = chooseMyLeaderList
|
||||
};
|
||||
|
||||
// 验证规则
|
||||
const rules = {
|
||||
leader: {
|
||||
rules: [
|
||||
{ required: true, errorMessage: '我方领导不能为空' }
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
// 修改日期
|
||||
let changeDate = (e) => {
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
const ordinals = [
|
||||
"firstDayOfThe", // 第1天
|
||||
"secondDayOfThis", // 第2天
|
||||
"thirdDayOfThe", // 第3天
|
||||
"fourthDayOfThe", // 第4天
|
||||
"fifthDayOfThe", // 第5天
|
||||
"sixthDayOfThe", // 第6天
|
||||
"seventhDayOfThe", // 第7天
|
||||
]
|
||||
const week = [
|
||||
"Monday", // 周一
|
||||
"Tuesday", // 周二
|
||||
"Wednesday", // 周三
|
||||
"Thursday", // 周四
|
||||
"Friday", // 周五
|
||||
"Saturday", // 周六
|
||||
"Sunday", // 周日
|
||||
]
|
||||
const weekCN = [
|
||||
"一",
|
||||
"二",
|
||||
"三",
|
||||
"四",
|
||||
"五",
|
||||
"六",
|
||||
"日"
|
||||
]
|
||||
export const WORK_TYPE = [ // 工作类型
|
||||
"外出",
|
||||
"出差",
|
||||
"公司",
|
||||
"办事处",
|
||||
"请假",
|
||||
"法定假日"
|
||||
];
|
||||
export const COLOR_MAP = {
|
||||
"外出": "#04C660",
|
||||
"出差": "#41b883",
|
||||
"公司": "#20A0F1",
|
||||
"办事处": "#307af5",
|
||||
"请假": "#f2c55c",
|
||||
"法定假日": "#e88f89",/*#ED8A73*/
|
||||
"null": "#e7e7e7"
|
||||
};
|
||||
// 地区/部门
|
||||
export const AreaList = [
|
||||
"北京",
|
||||
"市场二部",
|
||||
"南区",
|
||||
"北区",
|
||||
"西区",
|
||||
"市场三部"
|
||||
];
|
||||
|
||||
export const OrdinalDate = ordinals.map(item => `${item}Week`);
|
||||
export const WeekCN = weekCN.map(item => `星期${item}`);
|
||||
export const WeekShortCN = weekCN.map(item => `周${item}`);
|
||||
export const WorkType = week.map(item => `typeOf${item}`);
|
||||
export const WorkEvent = week.map(item => `eventOf${item}`);
|
||||
@@ -1,153 +0,0 @@
|
||||
/**
|
||||
* 获取当前是本月第几周
|
||||
* @returns {number}
|
||||
*/
|
||||
export function getCurrentWeekNum() {
|
||||
// 获取当前日期
|
||||
var currentDate = new Date();
|
||||
|
||||
// 获取本月的第一天
|
||||
var firstDayOfMonth = new Date(currentDate.getFullYear(), currentDate.getMonth(), 1);
|
||||
|
||||
// 获取本月的第一天是星期几
|
||||
var firstDayOfWeek = firstDayOfMonth.getDay();
|
||||
|
||||
// 计算当前日期是本月的第几周
|
||||
var weekNumber = Math.ceil((currentDate.getDate() + firstDayOfWeek) / 7);
|
||||
|
||||
// console.log("当前时间是本月的第 " + weekNumber + " 周");
|
||||
return weekNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取一周日期
|
||||
* @param weekType 本周/下周
|
||||
* @returns {{year, month, firstDayOfTheWeek, secondDayOfThisWeek, thirdDayOfTheWeek, fourthDayOfTheWeek, fifthDayOfTheWeek, sixthDayOfTheWeek, seventhDayOfTheWeek}}
|
||||
*/
|
||||
export function getWeek2(weekType) {
|
||||
console.log(weekType, 888888888);
|
||||
var date = [];
|
||||
let weekIndex = new Date().getDay();
|
||||
//可得到当前日期以及之前的
|
||||
for (let i = weekIndex - 1; i >= 0; i--) {
|
||||
if (weekType === '本周') {
|
||||
date.push(getNowWeek(-i))
|
||||
} else {
|
||||
date.push(getNextWeek(-i))
|
||||
}
|
||||
}
|
||||
for (let i = 1; i <= 7 - weekIndex; i++) {
|
||||
if (weekType === '本周') {
|
||||
date.push(getNowWeek(i))
|
||||
} else {
|
||||
date.push(getNextWeek(i))
|
||||
}
|
||||
}
|
||||
return {
|
||||
year: date[0].year,
|
||||
month: date[0].month,
|
||||
day: date[0].day,
|
||||
firstDayOfTheWeek: date[0].result,
|
||||
secondDayOfThisWeek: date[1].result,
|
||||
thirdDayOfTheWeek: date[2].result,
|
||||
fourthDayOfTheWeek: date[3].result,
|
||||
fifthDayOfTheWeek: date[4].result,
|
||||
sixthDayOfTheWeek: date[5].result,
|
||||
seventhDayOfTheWeek: date[6].result
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//本周日期
|
||||
export function getNowWeek(day) {
|
||||
var today = new Date();
|
||||
var ts = today.getTime();//转化为时间戳毫秒数
|
||||
var targetday_milliseconds = today.getTime() + 1000 * 60 * 60 * 24 * day;
|
||||
today.setTime(targetday_milliseconds);
|
||||
var tYear = today.getFullYear();
|
||||
var tMonth = today.getMonth();
|
||||
var tDate = today.getDate();
|
||||
tMonth = tMonth + 1;
|
||||
tDate = tDate;
|
||||
//ios的格式判断
|
||||
if (uni.getSystemInfoSync().platform == 'ios') {
|
||||
//周几
|
||||
let time = tYear + "-" + tMonth + "-" + tDate
|
||||
let weekIndex = new Date(time).getDay();
|
||||
//改变今天的选中状态
|
||||
var d = new Date()
|
||||
var days = d.getDate()
|
||||
let daylist = {
|
||||
day: tDate, // 天
|
||||
isToday: tDate == days ? true : false, // 是否选中
|
||||
month: tMonth, // 月份
|
||||
result: tYear + "-" + tMonth + "-" + tDate, // 日期整体值
|
||||
week: weekIndex, //星期
|
||||
year: tYear, // 年份
|
||||
}
|
||||
return daylist
|
||||
} else {
|
||||
//周几
|
||||
let time = tYear + "-" + tMonth + "-" + tDate
|
||||
let weekIndex = new Date(time).getDay();
|
||||
//改变今天的选中状态
|
||||
var d = new Date()
|
||||
var days = d.getDate()
|
||||
let daylist = {
|
||||
day: tDate, // 天
|
||||
isToday: tDate == days ? true : false, // 是否选中
|
||||
month: tMonth, // 月份
|
||||
result: tYear + "-" + tMonth + "-" + tDate, // 日期整体值
|
||||
week: weekIndex, //星期
|
||||
year: tYear, // 年份
|
||||
}
|
||||
return daylist
|
||||
}
|
||||
}
|
||||
|
||||
//下周日期
|
||||
export function getNextWeek(day) {
|
||||
var today = new Date();
|
||||
var ts = today.getTime();//转化为时间戳毫秒数
|
||||
var targetday_milliseconds = today.getTime() + 1000 * 60 * 60 * 24 * day;
|
||||
today.setTime(targetday_milliseconds + 1000 * 60 * 60 * 24 * 7);
|
||||
var tYear = today.getFullYear();
|
||||
var tMonth = today.getMonth();
|
||||
var tDate = today.getDate();
|
||||
tMonth = tMonth + 1;
|
||||
tDate = tDate;
|
||||
//ios的格式判断
|
||||
if (uni.getSystemInfoSync().platform == 'ios') {
|
||||
//周几
|
||||
let time = tYear + "-" + tMonth + "-" + tDate
|
||||
let weekIndex = new Date(time).getDay();
|
||||
//改变今天的选中状态
|
||||
var d = new Date()
|
||||
var days = d.getDate()
|
||||
let daylist = {
|
||||
day: tDate, // 天
|
||||
isToday: tDate == days ? true : false, // 是否选中
|
||||
month: tMonth, // 月份
|
||||
result: tYear + "-" + tMonth + "-" + tDate, // 日期整体值
|
||||
week: weekIndex, //星期
|
||||
year: tYear, // 年份
|
||||
}
|
||||
return daylist
|
||||
} else {
|
||||
//周几
|
||||
let time = tYear + "-" + tMonth + "-" + tDate
|
||||
let weekIndex = new Date(time).getDay();
|
||||
//改变今天的选中状态
|
||||
var d = new Date()
|
||||
var days = d.getDate()
|
||||
let daylist = {
|
||||
day: tDate, // 天
|
||||
isToday: tDate == days ? true : false, // 是否选中
|
||||
month: tMonth, // 月份
|
||||
result: tYear + "-" + tMonth + "-" + tDate, // 日期整体值
|
||||
week: weekIndex, //星期
|
||||
year: tYear, // 年份
|
||||
}
|
||||
return daylist
|
||||
}
|
||||
}
|
||||
@@ -1,108 +0,0 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<customHeader ref="customHeaderRef" :title="'计划表'" :leftFlag="true">
|
||||
</customHeader>
|
||||
<!-- #ifdef H5 -->
|
||||
<view style="height:50rpx"></view>
|
||||
<!-- #endif -->
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<view class="white-bg">
|
||||
<navigator url="/pages/business/CRM/plan/myPlan">
|
||||
<view class="list-item item-padding">
|
||||
<img class="l-icon" :src="'static/images/business/icon-zfsp.png'"/>
|
||||
<text>我的计划</text>
|
||||
<view class="list-right">
|
||||
<uni-icons type="right" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
</navigator>
|
||||
<view class="item-border"></view>
|
||||
<navigator url="/pages/business/CRM/plan/planView">
|
||||
<view class="list-item item-padding">
|
||||
<img class="l-icon" :src="'static/images/business/icon-jhck.png'"/>
|
||||
<text>计划查看</text>
|
||||
<view class="list-right">
|
||||
<uni-icons type="right" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
</navigator>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.head-pic .head-right img {
|
||||
display: block;
|
||||
width: 28rpx;
|
||||
height: 25rpx;
|
||||
margin-left: auto;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.backlog-b-item img {
|
||||
width: 90rpx;
|
||||
height: 90rpx;
|
||||
margin: 0 auto 10rpx;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
width: 590rpx; /*690*/
|
||||
padding: 30rpx 50rpx;
|
||||
}
|
||||
|
||||
.list-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 32rpx;
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
|
||||
.list-item.item-padding {
|
||||
padding: 45rpx 0;
|
||||
}
|
||||
|
||||
.list-item.item-padding:first-child {
|
||||
padding-top: 20rpx;
|
||||
}
|
||||
|
||||
.list-item.item-padding:last-child {
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.item-border {
|
||||
height: 1px;
|
||||
background-color: #E7E7E7;
|
||||
width: 640rpx;
|
||||
}
|
||||
|
||||
.list-item .l-icon {
|
||||
width: 90rpx;
|
||||
height: 90rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.list-item .list-right {
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -1,330 +0,0 @@
|
||||
<!--
|
||||
* @Description 我的计划列表
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'周计划列表'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
<view class="head-right" @click="handleCreate">
|
||||
<uni-icons type="plus" size="24" color="#B7D2FF"></uni-icons>
|
||||
新增
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height"></view>
|
||||
|
||||
<view class="week-plan-title">
|
||||
<view>姓名:<strong>{{ userInfo.nickName || userInfo.userName }}</strong></view>
|
||||
<view v-if="weekNum">
|
||||
{{ yearMonth }}
|
||||
<view v-if="isThisWeek" style=" display: inline-block;">
|
||||
<strong>本周</strong>
|
||||
</view>
|
||||
<view v-else style="display: inline-block"> 第 <strong>{{ weekNum }}</strong> 周</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="nav-list">
|
||||
<view class="nav-item" :class="{active:index==activeTab}"
|
||||
v-for="(item,index) in allPlans" :key="index"
|
||||
@click="handleNav(index)"
|
||||
>{{ getTapLabel(item) }}
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<block v-if="onShowPlan" v-for="(item, index) in OrdinalDate" :key="item">
|
||||
<!-- 计划详情 -->
|
||||
<view class="white-bg white-bg-2" :class="index == 0 ? 'white-bg-r' : ''">
|
||||
<view class="report-list">
|
||||
<view class="w-b-title">
|
||||
<view class="r-left">{{ getWorkDate(index) }} {{ WeekCN[index] }}</view>
|
||||
<view class="r-right btn-edit" @click="handleEdit(index)">编辑</view>
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">工作类型</view>
|
||||
<view class="r-right">{{ getWorkType(index) || '' }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">内容</view>
|
||||
<view class="r-right">{{ getWorkEvent(index) || '' }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
|
||||
<!-- 底部加高度来避免tabbar遮挡 -->
|
||||
<view class="bottom-height"></view>
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import {onMounted, ref, reactive, computed} from "vue";
|
||||
import {useRoute} from "vue-router"
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import {WeekCN, WorkType, WorkEvent, OrdinalDate} from "./dataMap";
|
||||
import {getCurrentWeekNum} from "./dateTimeUtils";
|
||||
import {getUserInfo, getWeeklyPlanList} from "@/api/crm/plan/getPlan";
|
||||
import {useMessage} from "@/utils/message";
|
||||
import {judgeThisWeek} from "@/api/crm/plan/updatePlan";
|
||||
|
||||
const userInfo = ref(null)
|
||||
const route = useRoute();
|
||||
userInfo.value = {
|
||||
nickName: '',
|
||||
userName: ''
|
||||
}
|
||||
const queryParams = ref({
|
||||
pageNum: 1,
|
||||
pageSize: 10
|
||||
});
|
||||
const date = new Date(); // 当前日期
|
||||
const activeTab = ref(0);
|
||||
const yearMonth = ref(null);
|
||||
const weekNum = ref(0);
|
||||
const allPlans = ref([]);
|
||||
const onShowPlan = ref(null);
|
||||
const message = useMessage();
|
||||
|
||||
let getWorkDate = (index) => {
|
||||
return onShowPlan.value ? onShowPlan.value[OrdinalDate[index]] : '';
|
||||
};
|
||||
let getWorkType = (index) => {
|
||||
return onShowPlan.value ? onShowPlan.value[WorkType[index]] : '';
|
||||
};
|
||||
let getWorkEvent = (index) => {
|
||||
return onShowPlan.value ? onShowPlan.value[WorkEvent[index]] : '';
|
||||
};
|
||||
// 刷新计划列表
|
||||
const refreshPlanList = () => {
|
||||
message.showLoading();
|
||||
// 获取用户信息
|
||||
getUserInfo().then(res => {
|
||||
userInfo.value = res.user;
|
||||
console.log(route.path, ":用户信息获取成功");
|
||||
}).catch(err => {
|
||||
console.warn(err, "用户信息获取失败")
|
||||
});
|
||||
// 获取周计划列表
|
||||
getWeeklyPlanList(queryParams.value).then(res => {
|
||||
const {rows} = res;
|
||||
if (rows.length > 0) {
|
||||
allPlans.value = rows;
|
||||
onShowPlan.value = rows[0];
|
||||
weekNum.value = rows[0].date;
|
||||
yearMonth.value = rows[0].firstDayOfTheWeek.substring(0, 7);
|
||||
}
|
||||
console.log(route.path, ":用户周计划列表获取成功");
|
||||
}).catch(err => {
|
||||
console.warn(err, "用户周计划列表获取失败");
|
||||
message.error("周计划获取失败");
|
||||
}).finally(() => {
|
||||
message.hideLoading();
|
||||
})
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
refreshPlanList();
|
||||
})
|
||||
|
||||
// 判断计划是否为本周
|
||||
let isThisWeek = computed(() => {
|
||||
let theYear = onShowPlan.value.year || onShowPlan.value.firstDayOfTheWeek.substring(0, 4); // 获取年份
|
||||
weekNum.value = onShowPlan.value.date; // 当目前展示的计划列表变化时,更新weekNum.value
|
||||
yearMonth.value = onShowPlan.value.firstDayOfTheWeek.substring(0, 7); // 获取年月
|
||||
return date.getFullYear() === parseInt(theYear) &&
|
||||
date.getMonth() + 1 === onShowPlan.value.month &&
|
||||
getCurrentWeekNum() === onShowPlan.value.date;
|
||||
})
|
||||
|
||||
// 跳转到计划编辑页
|
||||
function handlePlanEdit(param, isAdd) {
|
||||
// 在起始页面跳转到planEdit.vue页面,并监听planEdit.vue发送过来的事件数据
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/plan/planEdit',
|
||||
events: {
|
||||
// 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
|
||||
// 监听页面返回事件,用于刷新数据
|
||||
refreshData: function () {
|
||||
refreshPlanList(); // 页面返回时调用刷新函数
|
||||
}
|
||||
},
|
||||
success: function (res) {
|
||||
// 通过eventChannel向被打开页面传送数据
|
||||
res.eventChannel.emit('editPlanData', {param, isAdd})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 创建计划
|
||||
function handleCreate() {
|
||||
console.log("handleCreate", "前往增加计划");
|
||||
const itemList = ["本周", "下周"];
|
||||
uni.showActionSheet({
|
||||
itemList,
|
||||
success(result) {
|
||||
// console.log("选择"+itemList[res.tapIndex])
|
||||
// if(res.tapIndex == 0){ // 创建本周计划
|
||||
judgeThisWeek({
|
||||
month: new Date().getMonth() + 1,
|
||||
date: getCurrentWeekNum()
|
||||
}).then((res) => {
|
||||
console.log(res, "可以创建周计划")
|
||||
handlePlanEdit({itemList, selectIndex: result.tapIndex}, true);
|
||||
}).catch((err) => {
|
||||
console.warn(err, "已存在周计划")
|
||||
uni.showToast({
|
||||
icon: 'error',
|
||||
title: '已有本周或下周计划',
|
||||
duration: 2000
|
||||
})
|
||||
})
|
||||
// }else{ // 创建下周计划
|
||||
// }
|
||||
},
|
||||
fail(err) {
|
||||
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
// 获取计划时间段
|
||||
function getTapLabel(row) {
|
||||
return row.firstDayOfTheWeek.substring(0, 4) + '年' + row.month + '月 第' + row.date + '周';
|
||||
}
|
||||
|
||||
// 选中计划时间段
|
||||
function handleNav(index) {
|
||||
console.log(index, "tab更换时间段");
|
||||
activeTab.value = index;
|
||||
onShowPlan.value = allPlans.value[index]; // 更新计划列表视图
|
||||
}
|
||||
|
||||
// 修改计划
|
||||
function handleEdit(index) {
|
||||
const {
|
||||
planId, // 主键ID
|
||||
year, // 年
|
||||
month, // 月
|
||||
date, // 周
|
||||
planDateId, // 周计划ID
|
||||
} = onShowPlan.value;
|
||||
|
||||
let formData = {
|
||||
planId, year, month, date, planDateId
|
||||
};
|
||||
|
||||
for (let i = 0; i < OrdinalDate.length; i++) {
|
||||
// 周一到周日的日期
|
||||
formData[OrdinalDate[i]] = getWorkDate(i);
|
||||
// 周一到周日的工作类型
|
||||
formData[WorkType[i]] = getWorkType(i);
|
||||
// 周一到周日的工作内容
|
||||
formData[WorkEvent[i]] = getWorkEvent(i);
|
||||
}
|
||||
|
||||
// console.log(JSON.stringify(formData))
|
||||
console.log(route.path, formData, "前往修改页面");
|
||||
const editFields = [OrdinalDate[index], WorkType[index], WorkEvent[index]];
|
||||
let userName = userInfo.value.nickName || userInfo.value.userName;
|
||||
handlePlanEdit({userName, formData, editFields}, false);
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.week-plan-title {
|
||||
color: #fff;
|
||||
padding: 0 30rpx 30rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
width: 690rpx;
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.white-bg-r {
|
||||
width: 690rpx;
|
||||
margin: 0;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
||||
|
||||
.white-bg .w-b-title {
|
||||
color: #3384DF;
|
||||
font-size: 38rpx;
|
||||
}
|
||||
|
||||
.white-bg.white-bg-2 {
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.report-list .w-b-title .btn-edit {
|
||||
background-color: #5C96F7;
|
||||
}
|
||||
|
||||
.con-bg {
|
||||
height: 445rpx;
|
||||
}
|
||||
|
||||
.nav-list {
|
||||
/* display: flex;*/
|
||||
/* width: 690rpx;*/
|
||||
overflow-x: auto; /* 允许横向滚动 */
|
||||
/*overflow-y: hidden; 隐藏垂直滚动 */
|
||||
/*-ms-overflow-style: none; IE 隐藏滚动条 */
|
||||
/* scrollbar-width: none; */ /*Firefox 隐藏滚动条 */
|
||||
/* 添加高度以确保有足够的空间 */
|
||||
/* height: 80rpx;*/
|
||||
white-space: nowrap; /* 保持子元素在同一行显示 */
|
||||
/* 添加这些属性确保滚动正常工作 */
|
||||
scroll-behavior: smooth;
|
||||
/* #ifdef APP-PLUS */
|
||||
padding: 80rpx 30rpx 0;
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
padding: 20rpx 30rpx 0;
|
||||
/* #endif */
|
||||
}
|
||||
/* 为 Webkit 浏览器隐藏滚动条 */
|
||||
.nav-list::-webkit-scrollbar {
|
||||
background-color: transparent;
|
||||
}
|
||||
.nav-list .nav-item {
|
||||
/* flex: 0 0 auto; 关键:不放大、不缩小、自动宽度 */
|
||||
/* width: 200rpx;*/
|
||||
display: inline-block;
|
||||
background-color: #05A3F4;
|
||||
border-radius: 10rpx;
|
||||
color: #FFFFFF;
|
||||
font-size: 28rpx;
|
||||
text-align: center;
|
||||
padding: 10rpx 25rpx;
|
||||
margin-right: 15rpx;
|
||||
margin-bottom: 20rpx;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*.nav-list .nav-item:nth-child(3n){
|
||||
margin-right:0;
|
||||
}*/
|
||||
|
||||
.nav-list .nav-item.active {
|
||||
background-color: #fff;
|
||||
color: #3384DF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -1,329 +0,0 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="title" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
<view class="head-right" @click="submitForm" v-if="userInfo.nickName || userInfo.userName">
|
||||
<uni-icons custom-prefix="iconfont" type="icon-phonebaocun" size="22"
|
||||
color="#B7D2FF"></uni-icons>
|
||||
保存
|
||||
</view>
|
||||
</template>
|
||||
</customHeader>
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="week-plan-title">
|
||||
<view>姓名:<strong>{{ userInfo.nickName || userInfo.userName }}</strong></view>
|
||||
<view>{{ currentEditDate.yearMonth }} 第 <strong>{{ currentEditDate.weekNum }}</strong> 周</view>
|
||||
</view>
|
||||
<uni-forms ref="formRef" :model="weekPlanFormData" :rules="rules" label-width="100px" label-position="top">
|
||||
<block v-for="(item, index) in OrdinalDate">
|
||||
<view class="white-bg" :class="index==0?'white-bg-2':'white-bg-3'">
|
||||
<view class="w-b-title" @click="handleExpand(index)">
|
||||
{{ weekPlanFormData[item] }} {{ WeekCN[index] }}
|
||||
<text>{{ expandFlag[index] ? '收起' : '展开' }}
|
||||
<i :class="{iconfont:true,'icon-up':expandFlag[index],'icon-down':!expandFlag[index]}"></i>
|
||||
</text>
|
||||
</view>
|
||||
|
||||
<view v-show="expandFlag[index]" class="form-con">
|
||||
<uni-forms-item label="工作类型" :name="getTypeField(index)" :required="index < workDays">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleTypeChange" :range="WORK_TYPE" :data-field="getTypeField(index)">
|
||||
<view class="flex">
|
||||
{{ weekPlanFormData[getTypeField(index)] }}
|
||||
<uni-icons type="down" size="20" color="#A0A0A0"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="内容" :name="getEventField(index)" :required="index < workDays">
|
||||
<uni-easyinput type="textarea" autoHeight v-model="weekPlanFormData[getEventField(index)]"
|
||||
placeholder="请输入" class="form-texarea"/>
|
||||
</uni-forms-item>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</block>
|
||||
</uni-forms>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, reactive, onMounted, getCurrentInstance, computed} from 'vue'
|
||||
import {OrdinalDate, WorkEvent, WorkType, WORK_TYPE, WeekCN} from "./dataMap";
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import {useRoute} from "vue-router"
|
||||
import {useMessage} from "@/utils/message";
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
import {updateWeekPlanList, addPlan} from "@/api/crm/plan/updatePlan";
|
||||
import {getUserInfo} from "@/api/crm/plan/getPlan";
|
||||
import {getDate} from "@/utils/datetime";
|
||||
import {getWeek2, getCurrentWeekNum} from "./dateTimeUtils";
|
||||
|
||||
const message = useMessage();
|
||||
// 当前页面路由
|
||||
const route = useRoute();
|
||||
// 当前编辑周期
|
||||
const currentEditDate = ref({
|
||||
yearMonth: '',
|
||||
weekNum: 0
|
||||
});
|
||||
// 用户信息
|
||||
const userInfo = ref({nickName: null, userName: null});
|
||||
// 编辑模式
|
||||
const isAdd = ref(true);
|
||||
// 标题
|
||||
const title = ref("修改周计划");
|
||||
// 表单项展开状态
|
||||
const expandFlag = ref([true, true, true, true, true, true, true]);
|
||||
// 表单ref
|
||||
const formRef = ref(null);
|
||||
// 工作类型的index
|
||||
const workTypeIndex = ref({});
|
||||
// 表单数据
|
||||
const weekPlanFormData = ref({
|
||||
// planId: 0, // 主键ID
|
||||
// planDateId: 0, // 周计划ID
|
||||
|
||||
year: 0, // 年
|
||||
month: 0, // 月
|
||||
date: 0, // 周
|
||||
|
||||
firstDayOfTheWeek: null, // 周一日期
|
||||
secondDayOfThisWeek: null, // 周二日期
|
||||
thirdDayOfTheWeek: null, // 周三日期
|
||||
fourthDayOfTheWeek: null, // 周四日期
|
||||
fifthDayOfTheWeek: null, // 周五日期
|
||||
sixthDayOfTheWeek: null, // 周六日期
|
||||
seventhDayOfTheWeek: null, // 周日日期
|
||||
|
||||
typeOfMonday: null, // 周一工作类型
|
||||
typeOfTuesday: null, // 周二工作类型
|
||||
typeOfWednesday: null, //周三工作类型
|
||||
typeOfThursday: null, // 周四工作类型
|
||||
typeOfFriday: null, // 周五工作类型
|
||||
typeOfSaturday: null, // 周六工作类型
|
||||
typeOfSunday: null, // 周日工作类型
|
||||
|
||||
eventOfMonday: null, // 周一工作内容
|
||||
eventOfTuesday: null, // 周二工作内容
|
||||
eventOfWednesday: null, // 周三工作内容
|
||||
eventOfThursday: null, // 周四工作内容
|
||||
eventOfFriday: null, // 周五工作内容
|
||||
eventOfSaturday: null, // 周六工作内容
|
||||
eventOfSunday: null // 周日工作内容
|
||||
});
|
||||
|
||||
// 校验规则
|
||||
const rules = reactive({});
|
||||
// 工作日数量
|
||||
const workDays = 5;
|
||||
// const instance = getCurrentInstance().proxy;
|
||||
let instance = null;
|
||||
// 初始化创建任务
|
||||
let initCreate = (params)=>{
|
||||
const {itemList, selectIndex} = params;
|
||||
// 获取用户信息
|
||||
getUserInfo().then(res => {
|
||||
userInfo.value = res.user;
|
||||
console.log(route.path, ":用户信息获取成功");
|
||||
}).catch(err => {
|
||||
console.warn(err, "用户信息获取失败")
|
||||
});
|
||||
console.log(route.path,`:创建${itemList[selectIndex]}计划`);
|
||||
title.value="创建周计划";
|
||||
currentEditDate.value.yearMonth = getDate({format: true}).substring(0, 7); // 只要年月
|
||||
currentEditDate.value.weekNum = getCurrentWeekNum() + selectIndex; // 取巧做法,当期周则selectIndex为0,下周则selectIndex为1,用加法处理
|
||||
const week = getWeek2(itemList[selectIndex]); // 获取本周/下周一周日期
|
||||
// weekPlanFormData.value.year = getDate({format:true}).substring(0, 4); // 年份
|
||||
// weekPlanFormData.value.month = parseInt(currentEditDate.value.yearMonth.substring(5, 7)); // 月份
|
||||
weekPlanFormData.value.date = getCurrentWeekNum() + selectIndex; // 第几周
|
||||
const {year, month} = week;
|
||||
weekPlanFormData.value.year = year;
|
||||
weekPlanFormData.value.month = month;
|
||||
for(let index in OrdinalDate){
|
||||
let dateField = getDateField(index);
|
||||
weekPlanFormData.value[dateField] = week[dateField];
|
||||
// console.log(week[dateField]);
|
||||
if(index>=workDays){
|
||||
let typeField = getTypeField(index);
|
||||
weekPlanFormData.value[typeField] = "法定假日"; // TODO: 换成更规范代码
|
||||
workTypeIndex.value[typeField] = WORK_TYPE.indexOf("法定假日");
|
||||
}
|
||||
}
|
||||
console.log(weekPlanFormData.value);
|
||||
}
|
||||
onLoad((options) => {
|
||||
// console.log(options); // 参数
|
||||
// console.log(route.path, ":计划编辑页面");
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('editPlanData', (data) => {
|
||||
isAdd.value = data.isAdd;
|
||||
if (!data.isAdd) {
|
||||
let {userName, formData, editFields} = data.param;
|
||||
console.log(route.path, userName, formData, editFields, "计划编辑页读取到参数");
|
||||
weekPlanFormData.value = formData;
|
||||
userInfo.value.userName = userName;
|
||||
currentEditDate.value.yearMonth = formData.firstDayOfTheWeek.substring(0, 7);
|
||||
currentEditDate.value.weekNum = formData.date; // 周数
|
||||
// for(let typeField of WorkType){
|
||||
// workTypeIndex.value[typeField] = WORK_TYPE.indexOf(formData[typeField]);
|
||||
// }
|
||||
for (let index in OrdinalDate) {
|
||||
expandFlag.value[index] = editFields.includes(getTypeField(index)) || editFields.includes(getEventField(index));
|
||||
// console.log(index, expandFlag.value[index], "展开状态");
|
||||
}
|
||||
}else{
|
||||
initCreate(data.param);
|
||||
}
|
||||
|
||||
})
|
||||
});
|
||||
|
||||
// 工作日期的field
|
||||
function getDateField(index) {
|
||||
return OrdinalDate[index]
|
||||
}
|
||||
|
||||
// 工作类型的field
|
||||
function getTypeField(index) {
|
||||
return WorkType[index]
|
||||
}
|
||||
|
||||
// 工作内容的field
|
||||
function getEventField(index) {
|
||||
return WorkEvent[index];
|
||||
}
|
||||
|
||||
// 初始化校验规则
|
||||
(function bindRules(){
|
||||
for (let i in WorkType) {
|
||||
if (i < workDays) {
|
||||
rules[getTypeField(i)] = {
|
||||
rules: [{
|
||||
required: true,
|
||||
errorMessage: '请选择工作类型',
|
||||
trigger: 'blur'
|
||||
}]
|
||||
}
|
||||
}
|
||||
}
|
||||
for (let i in WorkEvent) {
|
||||
if (i < workDays) {
|
||||
rules[getEventField(i)] = {
|
||||
rules: [{
|
||||
required: true,
|
||||
errorMessage: '请输入工作内容',
|
||||
trigger: 'blur'
|
||||
}]
|
||||
}
|
||||
}
|
||||
}
|
||||
// console.log(rules, '初始化校验规则完成');
|
||||
})();
|
||||
|
||||
// 展开事件
|
||||
function handleExpand(index) {
|
||||
expandFlag.value[index] = !expandFlag.value[index];
|
||||
}
|
||||
|
||||
// 选择工作类型
|
||||
const handleTypeChange = (e) => {
|
||||
const {field} = e.target.dataset;
|
||||
console.log("选中工作类型: ", WORK_TYPE[e.detail.value], ",更新类型字段: ", field);
|
||||
workTypeIndex.value[field] = e.detail.value;
|
||||
weekPlanFormData.value[field] = WORK_TYPE[e.detail.value];
|
||||
};
|
||||
|
||||
// 保存
|
||||
const submitForm = async () => {
|
||||
try {
|
||||
// 验证表单
|
||||
await formRef.value.validate()
|
||||
|
||||
// 验证通过后的操作
|
||||
|
||||
// console.log('表单数据:', weekPlanFormData.value);
|
||||
|
||||
// 这里可以添加提交到服务器的代码
|
||||
if(!isAdd.value){ // 请求修改
|
||||
let res = await updateWeekPlanList(weekPlanFormData.value).catch(err=>{
|
||||
message.error('操作失败!');
|
||||
console.warn(err, "更新周计划失败");
|
||||
})
|
||||
message.success('修改成功!');
|
||||
setTimeout(()=>{
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('refreshData');
|
||||
uni.navigateBack()
|
||||
}, 500);
|
||||
}else{ // 请求新增
|
||||
console.log(weekPlanFormData.value,"新增计划");
|
||||
let res = await addPlan(weekPlanFormData.value).catch(err=>{
|
||||
message.error('操作失败!');
|
||||
console.error(err, "周计划新增失败");
|
||||
})
|
||||
message.success('保存成功!');
|
||||
setTimeout(()=>{
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('refreshData');
|
||||
uni.navigateBack()
|
||||
}, 500);
|
||||
}
|
||||
} catch (err) {
|
||||
uni.showToast({
|
||||
icon:'none',
|
||||
title:"请完善内容",
|
||||
duration: 1500
|
||||
})
|
||||
console.log('表单验证失败:', err);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.week-plan-title {
|
||||
color: #fff;
|
||||
padding: 0 30rpx 30rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
width: 690rpx;
|
||||
margin: 0;
|
||||
border-radius: 8px 8px 0 0;
|
||||
}
|
||||
|
||||
.white-bg.white-bg-2 {
|
||||
/*margin-bottom: 20rpx;*/
|
||||
}
|
||||
|
||||
.white-bg.white-bg-3 {
|
||||
border-top: 1rpx solid #E5E5E5;
|
||||
border-radius: 0
|
||||
}
|
||||
|
||||
.white-bg .w-b-title {
|
||||
color: #3384DF;
|
||||
font-size: 38rpx;
|
||||
}
|
||||
|
||||
.form-con {
|
||||
padding: 30rpx 0 0;
|
||||
}
|
||||
|
||||
:deep(.form-con .uni-forms-item) {
|
||||
margin-bottom: 22px !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -1,394 +0,0 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'周计划表'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
<!-- <view class="head-right" @click="handleAdd">
|
||||
<uni-icons type="plus" size="24" color="#B7D2FF"></uni-icons>新增
|
||||
</view>-->
|
||||
</template>
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view>
|
||||
|
||||
<!-- 搜索 -->
|
||||
<view class="search">
|
||||
<picker mode="date" :value="defaultDate" :start="startDate" :end="endDate"
|
||||
@change="bindDateChange" class="picker-bg">
|
||||
<view class="picker">
|
||||
<uni-icons custom-prefix="iconfont" color="#ffffff" type="icon-phoneshizhong" size="18"></uni-icons>
|
||||
<view>{{ defaultDate }}</view>
|
||||
<uni-icons type="down" size="18"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
<picker @change="bindPickerChange" :value="areaIndex" :range="AreaList" class="picker-bg">
|
||||
<view class="picker">
|
||||
<uni-icons type="person" size="18"></uni-icons>
|
||||
<view>{{ AreaList[areaIndex] }}</view>
|
||||
<uni-icons type="down" size="18"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
<button type="default" @click="handleSearch" size="mini" class="btn-search">查询</button>
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
<!-- <mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"-->
|
||||
<!-- :up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"-->
|
||||
<!-- class="scroll-h" :class="{'loading-scroll':cssFlag}">-->
|
||||
<view class="white-bg" v-if="list.length">
|
||||
<!--v-for="(item, index) in list" :key="index" @click="handleDetail(item)"-->
|
||||
<view style="text-align: center; margin-bottom: 30rpx; font-size: 30rpx;">
|
||||
{{ parseInt(searchValue.selectDate.substring(5, 7)) }}月
|
||||
<span class="line"></span>
|
||||
{{searchValue.selectDate.substring(0, 4) }}年
|
||||
</view>
|
||||
<uni-row class="demo-uni-row">
|
||||
<uni-col :span="1">
|
||||
<view class="demo-uni-col right-radius">序号</view>
|
||||
</uni-col>
|
||||
<uni-col :span="2">
|
||||
<view class="demo-uni-col left-radius">姓名</view>
|
||||
</uni-col>
|
||||
<block v-for="(field, i) in OrdinalDate">
|
||||
<uni-col :span="3">
|
||||
<view class="demo-uni-col mar-left">
|
||||
<text>{{ WeekShortCN[i] }}</text>
|
||||
<text v-if="list[0][field]">{{ list[0][field].substring(8) }}</text>
|
||||
</view>
|
||||
</uni-col>
|
||||
</block>
|
||||
</uni-row>
|
||||
<block v-for="(item, index) in list" :key="index">
|
||||
<uni-row class="demo-uni-row">
|
||||
<uni-col :span="1">
|
||||
<view class="demo-uni-col right-radius">
|
||||
<text>{{ index + 1 }}</text>
|
||||
</view>
|
||||
</uni-col>
|
||||
<uni-col :span="2">
|
||||
<view class="demo-uni-col left-radius">
|
||||
<text>{{ item.nickName || item.userName }}</text>
|
||||
</view>
|
||||
</uni-col>
|
||||
<block v-for="(field, i) in WorkType">
|
||||
<uni-col :span="3">
|
||||
<view class="demo-uni-col mar-left color-white" @click="handleDetail(index, i)"
|
||||
:style="{ backgroundColor: COLOR_MAP[item[field]] }"
|
||||
><!--@click="handleView(index, i)"-->
|
||||
<text v-if="item[field]">{{ item[field] }}</text>
|
||||
<text v-else style="color: gray">暂无</text>
|
||||
</view>
|
||||
</uni-col>
|
||||
</block>
|
||||
</uni-row>
|
||||
</block>
|
||||
</view>
|
||||
<view v-else style="text-align: center; margin-top: 50%; color: white">
|
||||
暂无数据
|
||||
</view>
|
||||
<!-- </mescroll-uni>-->
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {getAllWeekPlanList} from "@/api/crm/plan/getPlan";
|
||||
import {AreaList, COLOR_MAP, OrdinalDate, WeekShortCN, WorkEvent, WorkType} from "./dataMap";
|
||||
import {getCurrentWeekNum} from "./dateTimeUtils";
|
||||
import {getDate} from "@/utils/datetime";
|
||||
import {getWeekPlanListByDate} from "@/api/crm/plan/getPlan";
|
||||
|
||||
// const currentYear = new Date().getFullYear();
|
||||
const currentMonth = new Date().getMonth() + 1;
|
||||
const currentWeekNum = getCurrentWeekNum();
|
||||
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
uni.showLoading({})
|
||||
getPlanList().then(res=>{
|
||||
let {total, rows} = res;
|
||||
console.log(rows, "周计划数据获取成功")
|
||||
list.value = rows;
|
||||
uni.hideLoading();
|
||||
})
|
||||
})
|
||||
|
||||
// 开始时间
|
||||
let startDate = getDate('start');
|
||||
// 结束时间,间隔10年
|
||||
let endDate = getDate('end');
|
||||
let defaultDate = getDate({format: true})
|
||||
// 区域索引
|
||||
let areaIndex = ref(0);
|
||||
// 搜索内容
|
||||
let searchValue = ref({
|
||||
selectDate: defaultDate,
|
||||
region: AreaList[areaIndex.value]
|
||||
});
|
||||
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
const mescrollRef = ref(null);
|
||||
const upOption = ref({
|
||||
page: {num: 0, size: 10},
|
||||
noMoreSize: 5,
|
||||
empty: {tip: '~ 空空如也 ~'},
|
||||
textLoading: '加载中...',
|
||||
textNoMore: '已经到底了'
|
||||
});
|
||||
|
||||
const downOption = ref({
|
||||
auto: true,
|
||||
textInOffset: '下拉刷新',
|
||||
textOutOffset: '释放更新',
|
||||
textLoading: '刷新中...'
|
||||
});
|
||||
|
||||
let cssFlag = ref(false);//控制样式
|
||||
|
||||
// 获取数据列表
|
||||
const getPlanList = (month, date, pageIndex, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
// 查询参数
|
||||
let queryParams = {
|
||||
month: month ? month : currentMonth,
|
||||
date: date ? date : currentWeekNum,
|
||||
pageNum: pageIndex ? pageIndex : 1,
|
||||
pageSize: pageSize ? pageSize : 10
|
||||
}
|
||||
|
||||
let {rows, total} = await getAllWeekPlanList(queryParams);
|
||||
resolve({
|
||||
rows,
|
||||
total
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// 搜索日期变更
|
||||
let bindDateChange = (e) => {
|
||||
defaultDate = e.detail.value
|
||||
searchValue.value.selectDate = e.detail.value;
|
||||
handleSearch();
|
||||
}
|
||||
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
console.log(searchValue.value, '查询参数')
|
||||
uni.showLoading();
|
||||
getWeekPlanListByDate(searchValue.value).then(res=>{
|
||||
const {total, rows } = res;
|
||||
list.value = rows;
|
||||
console.log(rows, '查询成功');
|
||||
}).catch(err=>{
|
||||
console.warn(err,'数据获取失败');
|
||||
}).finally(()=>{
|
||||
uni.hideLoading();
|
||||
})
|
||||
}
|
||||
const mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
// 搜索区域变更
|
||||
const bindPickerChange = (e) => {
|
||||
// console.log('picker发送选择改变,携带值为', peopleIndex.value)
|
||||
areaIndex.value = e.detail.value
|
||||
searchValue.value.region = AreaList[e.detail.value]
|
||||
// 查询
|
||||
handleSearch();
|
||||
}
|
||||
|
||||
// 跳转到详情
|
||||
let handleDetail = (rowIndex, colIndex) => {
|
||||
let detail = list.value[rowIndex];
|
||||
let workDate = detail[OrdinalDate[colIndex]];
|
||||
let workType = detail[WorkType[colIndex]];
|
||||
let workEvent = detail[WorkEvent[colIndex]];
|
||||
if(workType && workEvent){
|
||||
uni.showModal({
|
||||
title: `${workDate}\n${workType}`,
|
||||
content: `${workEvent}`,
|
||||
confirmText: '关闭',
|
||||
showCancel: false,
|
||||
maskClosable: true, // 允许点击蒙层关闭弹窗
|
||||
success: function (res) {
|
||||
if (res.confirm) {
|
||||
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
else{
|
||||
uni.showToast({
|
||||
title: "暂无内容",
|
||||
icon: "none",
|
||||
duration: 1500
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.demo-uni-row {
|
||||
margin-bottom: 4rpx;
|
||||
/* QQ、抖音小程序文档写有 :host,但实测不生效 */
|
||||
/* 百度小程序没有 :host,需要设置block */
|
||||
/* #ifdef MP-TOUTIAO || MP-QQ || MP-BAIDU */
|
||||
display: block;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
/* 支付宝小程序没有 demo-uni-row 层级 */
|
||||
/* 微信小程序使用了虚拟化节点,没有 demo-uni-row 层级 */
|
||||
/* #ifdef MP-ALIPAY || MP-WEIXIN */
|
||||
/deep/ .uni-row {
|
||||
margin-bottom: 4rpx;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
padding: 0 30rpx;
|
||||
height: 68rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
line-height: normal;
|
||||
color: #fff;
|
||||
/*line-height: 56rpx !important;*/
|
||||
padding: 10rpx 0 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search .btn-search::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search .picker-bg {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
background-color: #6FA2F8;
|
||||
border-radius: 25px;
|
||||
color: #fff;
|
||||
font-size: 28rpx;
|
||||
padding: 0rpx 20rpx;
|
||||
/* #ifndef APP-PLUS */
|
||||
padding: 10rpx 20rpx 0 20rpx;
|
||||
/* #endif */
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.search .picker-bg .picker {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
/* #ifndef APP-PLUS */
|
||||
padding-top: 2rpx;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search .picker-bg .picker .uni-icons {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.search .picker-bg .picker .uni-icons:first-child {
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
|
||||
.search .picker-bg .picker .uniui-down {
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
display: inline-block;
|
||||
width: 10rpx;
|
||||
border-right: solid gray 1rpx;
|
||||
height: 20rpx;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
|
||||
.demo-uni-col {
|
||||
height: 36px;
|
||||
border-radius: 4px;
|
||||
background-color: #E7E7E7;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
line-height: 32rpx;
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 13rpx;
|
||||
min-height: 130rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mar-left {
|
||||
margin-left: 5rpx;
|
||||
}
|
||||
|
||||
.right-radius {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.left-radius {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.color-white {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
width: 690rpx;
|
||||
margin: 20rpx 0 0 0;
|
||||
border-radius: 8px 8px 0 0;
|
||||
}
|
||||
|
||||
.white-bg.white-bg-2 {
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.white-bg.white-bg-3 {
|
||||
border-radius: 0
|
||||
}
|
||||
|
||||
.white-bg .w-b-title {
|
||||
color: #3384DF;
|
||||
font-size: 38rpx;
|
||||
}
|
||||
|
||||
.form-con {
|
||||
padding: 30rpx 0 0;
|
||||
}
|
||||
|
||||
:deep(.form-con .uni-forms-item) {
|
||||
margin-bottom: 22px !important;
|
||||
}
|
||||
/*.con-bg {
|
||||
height: 420rpx;
|
||||
}*/
|
||||
</style>
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user