Merge remote-tracking branch 'origin/develop-718' into develop-718
This commit is contained in:
349
src/pages/business/CRM/customer/changeCustomerOwner.vue
Normal file
349
src/pages/business/CRM/customer/changeCustomerOwner.vue
Normal file
@@ -0,0 +1,349 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @date 2025年8月19日
|
||||
* @description 主归属人变更
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员信息'" :leftFlag="true" :rightFlag="false">
|
||||
</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" @clear="clearSearchValue"
|
||||
/>
|
||||
</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 margin-bottom20" v-for="(item, index) in list" :key="index"
|
||||
@touchstart="handleTouchStart(item)"
|
||||
@touchend="handleTouchEnd">
|
||||
<view class="report-list">
|
||||
<view class="w-b-title title" @dblclick.stop="handleDetail(item)">
|
||||
{{ item.cusName }}
|
||||
<!--<view v-if="item.nodeCode" class="r-right btn-edit" @click.prevent="handleCopyInfo(item)"> 复制信息 </view>-->
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户人员名称</view>
|
||||
<view class="r-right">{{ item.userName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">性别</view>
|
||||
<view class="r-right">{{ item.sex }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">手机号</view>
|
||||
<view class="r-right">{{ item.mobilePhone || item.iphone }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">部门</view>
|
||||
<view class="r-right">{{ item.userDept }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">业务员认定等级</view>
|
||||
<view class="r-right">{{ item.salesmanThinkLevel }}</view>
|
||||
</view>
|
||||
|
||||
<!-- <view v-if="item.systemThinkLevel" class="r-list">
|
||||
<view class="r-left">系统认定等级</view>
|
||||
<view class="r-right">{{ item.systemThinkLevel }}</view>
|
||||
</view>-->
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {SearchForAllPerson} from "@/api/crm/customer/getCustomer"
|
||||
import {submissionOfChangeOfMainOwner} from "@/api/crm/customer/updateCustomer"
|
||||
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
// 搜索内容
|
||||
let searchValue = ref(null);
|
||||
// 分页
|
||||
const mescrollRef = ref(null);
|
||||
// 防抖计时
|
||||
let timerId = null;
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
// 防抖搜索 console.log(searchValue.value)
|
||||
if (timerId) clearTimeout(timerId);
|
||||
timerId = setTimeout(async () => {
|
||||
|
||||
// let res = await getList(1, upOption.value.page.size)
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500)
|
||||
}
|
||||
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
handleSearch()
|
||||
})
|
||||
let clearSearchValue = ()=>{
|
||||
searchValue.value = '';
|
||||
}
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
|
||||
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 mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
uni.showLoading();
|
||||
cssFlag.value = true;
|
||||
setTimeout(async () => {
|
||||
// 重置页码为第一页
|
||||
const res = await getList(1, mescroll.size || upOption.page.size);
|
||||
list.value = res.list;
|
||||
cssFlag.value = false;
|
||||
// 正确传递 total 参数
|
||||
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
|
||||
uni.hideLoading();
|
||||
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
uni.showLoading();
|
||||
setTimeout(async () => {
|
||||
// 使用 mescroll 提供的页码和大小参数
|
||||
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.total > mescroll.num * mescroll.size);
|
||||
uni.hideLoading();
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据列表
|
||||
const getList = (pageIndex, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
let param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
searchContent: searchValue.value
|
||||
}
|
||||
|
||||
let res = await SearchForAllPerson(param);
|
||||
resolve({
|
||||
list: res.rows,
|
||||
total: res.total
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// 跳转到详情
|
||||
let handleDetail = (item) => {
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/customer/components/customerUserEdit",
|
||||
events: {
|
||||
|
||||
},
|
||||
success(res){
|
||||
res.eventChannel.emit('editCusData', {param: item, isAdd: false})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 长按定时器ID
|
||||
let touchTimerId = null;
|
||||
|
||||
// 开始触摸
|
||||
let handleTouchStart = (item)=>{
|
||||
touchTimerId = setTimeout(()=>{
|
||||
// console.log(item, "长按客户人员项")
|
||||
handleChange(item)
|
||||
|
||||
clearTimeout(touchTimerId);
|
||||
}, 1500)
|
||||
}
|
||||
|
||||
// 结束触摸
|
||||
let handleTouchEnd = ()=>{
|
||||
if(touchTimerId !== null){
|
||||
clearTimeout(touchTimerId);
|
||||
}
|
||||
}
|
||||
|
||||
// 变更主归属人
|
||||
let handleChange = (item)=>{
|
||||
|
||||
uni.showModal({
|
||||
title: '是否将该客户人员主的归属人变更为自己?',
|
||||
editable: true,
|
||||
placeholderText: '请输入变更理由',
|
||||
success(res){
|
||||
if(res.confirm){
|
||||
if(res.content){
|
||||
submissionOfChangeOfMainOwner({
|
||||
userId: item.userId,
|
||||
userName: item.userName,
|
||||
reasonForChange: res.content
|
||||
}).then(res=>{
|
||||
if(res.code===200){
|
||||
uni.showToast({
|
||||
title: '操作成功'
|
||||
})
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
})
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败!变更原因不能为空',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 复制信息
|
||||
let handleCopyInfo=(item)=>{
|
||||
const {cusName, userName, sex, iphone, mobilePhone, jobTelphone, userDept, salesmanThinkLevel} = item;
|
||||
/* item = JSON.stringify({
|
||||
'客户名称':item.cusName,
|
||||
'客户人员名称': item.userName,
|
||||
'性别': item.sex,
|
||||
'手机号': item.iphone || item.mobilePhone || item.jobTelphone,
|
||||
'部门': item.userDept,
|
||||
'业务员认定等级': item.salesmanThinkLevel}
|
||||
);
|
||||
console.log(item, '复制信息');*/
|
||||
uni.setClipboardData({
|
||||
data: `客户名称:${cusName}
|
||||
客户人员名称:${userName}
|
||||
性别:${iphone||mobilePhone||jobTelphone}
|
||||
部门:${userDept}
|
||||
业务员认定等级:${salesmanThinkLevel}`,
|
||||
success: function () {
|
||||
uni.showToast({
|
||||
title: '已复制到剪贴板',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
padding-bottom: 10rpx;
|
||||
.w-b-title{
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-edit{
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
721
src/pages/business/CRM/customer/components/confirmForm.vue
Normal file
721
src/pages/business/CRM/customer/components/confirmForm.vue
Normal file
@@ -0,0 +1,721 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @date 2025年8月20日
|
||||
* @description 提交客户人员审批意见
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员详情'" :leftFlag="true" :rightFlag="false">
|
||||
</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">
|
||||
<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="userName" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.userName" placeholder="请输入姓名" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择等级 索引: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>
|
||||
<!-- 输入人员工作电话 -->
|
||||
<uni-forms-item label="工作电话" name="jobTelphone" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.jobTelphone" placeholder="请输入工作电话" :disabled="!editable"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员手机号 -->
|
||||
<uni-forms-item v-if="formData.mobilePhone" label="人员手机号" name="mobilePhone" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.mobilePhone" placeholder="请输入手机号" :disabled="!editable"/>
|
||||
</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="请输入所属部门" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择职能 索引: :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="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="salesmanThinkLevel" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleThinkLevelChange" :range="salesmanThinkLevelList"
|
||||
:range-key="'name'" :disabled="!editable"> <!--选择推荐等级 索引: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="job" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.job" placeholder="请输入职务" :disabled="!editable"/>
|
||||
</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="请输入专业产品" :disabled="!editable"/>
|
||||
</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="请输入产品需求" :disabled="!editable"/>
|
||||
</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="请输入办公场地" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择性别 索引: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>
|
||||
|
||||
<!-- 选择任职时间 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" :disabled="!editable"/> <!-- 响应: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'" :disabled="!editable"> <!--选择层次 索引: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="请输入职务变化" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择潜力 索引: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" :disabled="!editable"/> <!-- 响应: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="请输入爱好" :disabled="!editable"/>
|
||||
<multipleSelect :multiple="true" :value="hobbyIndex" downInner :options="hobbyList"
|
||||
@change="handleHobbyChange" :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="请输入禁忌" :disabled="!editable"/>
|
||||
</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="请输入或选择籍贯" :disabled="!editable"/>
|
||||
<uni-data-picker placeholder="请选择" :localdata="city"
|
||||
:clear-icon="false"
|
||||
:map="{text:'label',value:'value'}"
|
||||
@change="handleNativeChange" :readonly="!editable">
|
||||
|
||||
</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="请输入家庭住址" :disabled="!editable"/>
|
||||
</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="请输入家庭情况" :disabled="!editable"/>
|
||||
</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="请输入婚姻状况" :disabled="!editable"/>
|
||||
</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="请输入车型及牌号" :disabled="!editable"/>
|
||||
</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="请输入毕业院校" :disabled="!editable"/>
|
||||
</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="请输入人脉关系" :disabled="!editable"/>
|
||||
</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" :disabled="!editable"
|
||||
: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'" :disabled="!editable"> <!--选择支持程度 索引: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" style="padding-bottom: 220rpx;">
|
||||
<uni-easyinput type="textarea" autoHeight v-model="formData.reasonForChange" placeholder="请输入备注"
|
||||
class="form-texarea" :disabled="!editable"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<view v-if="formData.userId" class="fab">
|
||||
<button class="mini-btn btn" type="warn" @click="handleReject">✘ 驳回</button>
|
||||
<button class="mini-btn btn" type="primary" @click="handleApprove">✔ 通过</button>
|
||||
</view>
|
||||
</uni-forms>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, reactive, getCurrentInstance} 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, getCusUserApprovalListDetail} from "@/api/crm/customer/getCustomer";
|
||||
import {customerPersonnelsRejectio, clientPersonnelsApproval} from "@/api/crm/customer/updateCustomer";
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
// 表单引用
|
||||
const formRef = ref({});
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
// 客户人员的ID
|
||||
userId: null,
|
||||
//部门
|
||||
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, "校验规则");
|
||||
})();
|
||||
const editable = ref(true);
|
||||
// getCurrentInstance().proxy
|
||||
let instance = null;
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('auditCusUser', async (param) => {
|
||||
editable.value = param.editable;
|
||||
if(!param.editable){ // 只读模式
|
||||
let {userId} = param.data;
|
||||
console.log(param.data, "客户人员所属详情编辑页面读取到参数");
|
||||
let res = await getCusUserApprovalListDetail({userId}).catch(err=>{
|
||||
console.warn(err,'客户人员所属编辑信息获取失败');
|
||||
})
|
||||
const {rows} = res;
|
||||
let source = rows[0];
|
||||
const filteredData = Object.keys(source)
|
||||
.filter(key => source[key] !== null && source[key] !== "null")
|
||||
.reduce((obj, key) => {
|
||||
obj[key] = source[key];
|
||||
return obj;
|
||||
}, {});
|
||||
const {cusName} = source;
|
||||
customerUser.value.cusName = cusName;
|
||||
console.log(filteredData, "过滤空值属性")
|
||||
if(rows.length) Object.assign(formData.value, filteredData); // 对表单赋值
|
||||
formData.value.functionalRequirements = source.function; // 特殊处理
|
||||
}
|
||||
})
|
||||
})
|
||||
// 选择客户人员
|
||||
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) {
|
||||
let {value} = e.detail;
|
||||
formData.value.tenureTime = value;
|
||||
}
|
||||
|
||||
// 需求层次索引
|
||||
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) {
|
||||
let{value} = e.detail
|
||||
formData.value.birthday = value;
|
||||
}
|
||||
|
||||
// 爱好标签索引
|
||||
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 handleReject = () => {
|
||||
uni.showModal({
|
||||
title: '是否确认驳回?',
|
||||
editable: true,
|
||||
placeholderText: '请输入驳回原因',
|
||||
async success(res){
|
||||
if(res.confirm){
|
||||
if(res.content){
|
||||
uni.showLoading()
|
||||
let ret = await customerPersonnelsRejectio({
|
||||
userRejectedGrounds: res.content,
|
||||
userId: formData.value.userId
|
||||
})
|
||||
uni.hideLoading()
|
||||
if(ret.code === 200){
|
||||
uni.showToast({
|
||||
title: '驳回成功'
|
||||
})
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack();
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('refreshUserAuditList')
|
||||
},1000)
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败!驳回原因不能为空',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
let handleApprove = () => {
|
||||
uni.showLoading();
|
||||
clientPersonnelsApproval({
|
||||
userId: formData.value.userId
|
||||
}).then(res=>{
|
||||
uni.hideLoading();
|
||||
if(res.code==200){
|
||||
uni.showToast({
|
||||
title: '操作成功'
|
||||
})
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack()
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('refreshUserAuditList')
|
||||
},1000)
|
||||
}
|
||||
}).catch(err=>{
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
</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;
|
||||
}
|
||||
.btn{
|
||||
height: 100rpx;
|
||||
width: 180rpx;
|
||||
border-radius: 50rpx;
|
||||
border: none;
|
||||
line-height: 100rpx;
|
||||
text-align: center;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
.fab{
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 100rpx;
|
||||
display: flex;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100vw;
|
||||
left: 0;
|
||||
background-color: rgba(255, 255, 255, 0.4);
|
||||
backdrop-filter: blur(10px);
|
||||
box-shadow: 0 0 60rpx rgba(255, 255, 255, 0.9);
|
||||
z-index: 999;
|
||||
}
|
||||
</style>
|
||||
690
src/pages/business/CRM/customer/components/customerUserEdit.vue
Normal file
690
src/pages/business/CRM/customer/components/customerUserEdit.vue
Normal file
@@ -0,0 +1,690 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="isAdd?'客户人员新增':'客户人员归属详情'" :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">
|
||||
<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="userName" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.userName" placeholder="请输入姓名"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员手机号 -->
|
||||
<uni-forms-item v-if="formData.mobilePhone" label="人员手机号" name="mobilePhone" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.mobilePhone" 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" :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;">*★,°*:.☆( ̄▽ ̄)/$:*.°★*
|
||||
。<p v-if="isAdd">恭喜你完成了信息填写,赶快提交吧!</p>
|
||||
</view>
|
||||
<view v-if="isAdd" 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, getCurrentInstance} 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, getCusUserApprovalListDetail} from "@/api/crm/customer/getCustomer";
|
||||
import {upadateappCrmCusUserNew} from "@/api/crm/customer/updateCustomer";
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
// 表单引用
|
||||
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, "校验规则");
|
||||
})();
|
||||
const isAdd = ref(true);
|
||||
// getCurrentInstance().proxy
|
||||
let instance = null;
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('editCusData', async (data) => {
|
||||
isAdd.value = data.isAdd;
|
||||
if(!data.isAdd){ // 查看模式
|
||||
let {userId} = data.param;
|
||||
console.log(data.param, "客户人员所属详情编辑页面读取到参数");
|
||||
let res = await getCusUserApprovalListDetail({userId}).catch(err=>{
|
||||
console.warn(err,'客户人员所属编辑信息获取失败');
|
||||
})
|
||||
const {rows} = res;
|
||||
let source = rows[0];
|
||||
const filteredData = Object.keys(source)
|
||||
.filter(key => source[key] !== null && source[key] !== "null")
|
||||
.reduce((obj, key) => {
|
||||
obj[key] = source[key];
|
||||
return obj;
|
||||
}, {});
|
||||
const {cusName} = source;
|
||||
customerUser.value.cusName = cusName;
|
||||
console.log(filteredData, "过滤空值属性")
|
||||
if(rows.length) Object.assign(formData.value, filteredData); // 对表单赋值
|
||||
formData.value.functionalRequirements = source.function; // 特殊处理
|
||||
}
|
||||
})
|
||||
})
|
||||
// 选择客户人员
|
||||
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;
|
||||
formData.value.function = 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) {
|
||||
let {value} = e.detail;
|
||||
formData.value.tenureTime = value;
|
||||
}
|
||||
|
||||
// 需求层次索引
|
||||
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) {
|
||||
let{value} = e.detail
|
||||
formData.value.birthday = value;
|
||||
}
|
||||
|
||||
// 爱好标签索引
|
||||
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;
|
||||
})
|
||||
formData.value.iphone = formData.value.mobilePhone; // 特殊处理
|
||||
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()
|
||||
upadateappCrmCusUserNew(formData.value).then(ret=>{
|
||||
uni.hideLoading();
|
||||
if(ret.code === 200){
|
||||
uni.showToast({
|
||||
title: "更新成功"
|
||||
})
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack();
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit("refreshCusUserList");
|
||||
},1000);
|
||||
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: "操作失败",
|
||||
icon: "error"
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
// 重置表单
|
||||
// 清除校验
|
||||
|
||||
} 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,3 +1,7 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @description 客户人员新增
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
@@ -29,7 +33,7 @@
|
||||
<!-- </picker>-->
|
||||
<view class="customer-name" @click="handleCustomerClick">
|
||||
<uni-icons type="right" size="20" color="#A0A0A0"></uni-icons>
|
||||
<text> {{ customerUser.cusName || '查询客户人员' }}</text> <!---->
|
||||
<text> {{ customerUser.cusName || '查询客户名称' }}</text> <!---->
|
||||
</view>
|
||||
</uni-forms-item>
|
||||
<!-- 系统推荐等级 -->
|
||||
@@ -485,7 +489,8 @@ let handleUserTypeChange = (e) => {
|
||||
|
||||
// 选择日期
|
||||
function handleTenureTimeChange(e) {
|
||||
// console.log(e)
|
||||
let {value} = e.detail;
|
||||
formData.value.tenureTime = value;
|
||||
}
|
||||
|
||||
// 需求层次索引
|
||||
@@ -508,7 +513,8 @@ let handleDevelopChange = e => {
|
||||
|
||||
// 选择生日
|
||||
function handleBirthdayChange(e) {
|
||||
// console.log(e)
|
||||
let{value} = e.detail
|
||||
formData.value.birthday = value;
|
||||
}
|
||||
|
||||
// 爱好标签索引
|
||||
@@ -560,9 +566,15 @@ let submitForm = async () => {
|
||||
uni.showLoading()
|
||||
saveappCrmCusUserNew(formData.value).then(res=>{
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
title: "保存成功"
|
||||
})
|
||||
if(res.code === 200){
|
||||
uni.showToast({
|
||||
title: "保存成功"
|
||||
})
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: "操作失败"
|
||||
})
|
||||
}
|
||||
setTimeout(()=>uni.navigateBack(), 1500);
|
||||
}).catch(err=>{
|
||||
uni.showToast({
|
||||
|
||||
242
src/pages/business/CRM/customer/customerAudit.vue
Normal file
242
src/pages/business/CRM/customer/customerAudit.vue
Normal file
@@ -0,0 +1,242 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @date 2025年8月20日
|
||||
* @description 客户人员审核
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员审核'" :leftFlag="true" :rightFlag="false">
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="all-body">
|
||||
<!-- 搜索-->
|
||||
<!-- <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="clearSearchValue" 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 margin-bottom20" v-for="(item, index) in list" :key="index">
|
||||
<view class="report-list" @click.stop="handleDetail(item)">
|
||||
<view class="r-list title">
|
||||
{{ item.cusName }}
|
||||
<view class="r-right" :class="item.auditStatus ? '' : 'btn-pink' ">
|
||||
{{ item.auditStatus ? '' : '待您审批' }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户人员名称</view>
|
||||
<view class="r-right">{{ item.userName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">目前业务员</view>
|
||||
<view class="r-right">{{ item.belonger }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建时间</view>
|
||||
<view class="r-right">{{ item.createTime }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">职能</view>
|
||||
<view class="r-right">{{ item.function }}</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system'
|
||||
import {getCusUserApprovalList} from "@/api/crm/customer/getCustomer"
|
||||
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
// 搜索内容
|
||||
let searchValue = ref(null);
|
||||
// 分页
|
||||
const mescrollRef = ref(null);
|
||||
// 防抖计时
|
||||
let timerId = null;
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
// 防抖搜索 console.log(searchValue.value)
|
||||
if (timerId) clearTimeout(timerId);
|
||||
uni.showLoading()
|
||||
timerId = setTimeout(async () => {
|
||||
|
||||
cssFlag.value = true;
|
||||
|
||||
// let res = await getList(1, upOption.value.page.size)
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
|
||||
cssFlag.value = false;
|
||||
uni.hideLoading();
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500)
|
||||
}
|
||||
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
handleSearch()
|
||||
})
|
||||
let clearSearchValue = () => {
|
||||
searchValue.value = '';
|
||||
}
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
|
||||
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 mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
// 重置页码为第一页
|
||||
const res = await getList(1, mescroll.size || upOption.page.size);
|
||||
|
||||
list.value = res.list;
|
||||
// 正确传递 total 参数
|
||||
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
// 使用 mescroll 提供的页码和大小参数
|
||||
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.total > mescroll.num * mescroll.size);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据列表
|
||||
const getList = (pageIndex, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
let param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
searchContent: searchValue.value
|
||||
}
|
||||
|
||||
let res = await getCusUserApprovalList(param);
|
||||
resolve({
|
||||
list: res.rows,
|
||||
total: res.total
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// 跳转到详情
|
||||
let handleDetail = (item) => {
|
||||
const {userId} = item;
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/customer/components/confirmForm",
|
||||
events: {
|
||||
refreshUserAuditList() {
|
||||
handleSearch();
|
||||
}
|
||||
},
|
||||
success(res) {
|
||||
res.eventChannel.emit('auditCusUser', {data: {userId}, editable: false})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.all-body {
|
||||
/* #ifdef APP-PLUS */
|
||||
top: 150rpx;
|
||||
height: calc(100vh - 75px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
top: 120rpx;
|
||||
height: calc(100vh);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
padding-bottom: 10rpx;
|
||||
|
||||
.title {
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-pink {
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
343
src/pages/business/CRM/customer/customerUserBelong.vue
Normal file
343
src/pages/business/CRM/customer/customerUserBelong.vue
Normal file
@@ -0,0 +1,343 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @date 2025年8月18日
|
||||
* @description 客户人员所属
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员查看'" :leftFlag="true" :rightFlag="false">
|
||||
</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"
|
||||
@clear="clearSearchValue"
|
||||
v-model="searchValue"
|
||||
/>
|
||||
</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 margin-bottom20" v-for="(item, index) in list" :key="index"
|
||||
@click.stop="handleDetail(item)">
|
||||
<view class="report-list">
|
||||
<view class="w-b-title title" @touchstart.prevent="handleTouchStart(item)"
|
||||
@touchend.prevent="handleTouchEnd">
|
||||
{{ item.cusName }}
|
||||
<view v-if="item.nodeCode" class="r-right btn-edit" :class="statusColorMap[item.nodeCode]">
|
||||
{{ item.nodeCode }}
|
||||
</view><!---->
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户人员名称</view>
|
||||
<view class="r-right">{{ item.userName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户等级</view>
|
||||
<view class="r-right">{{ item.cusEstate }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">职能</view>
|
||||
<view class="r-right">{{ item.function }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建时间</view>
|
||||
<view class="r-right">{{ item.createTime }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">业务员认定等级</view>
|
||||
<view class="r-right">{{ item.salesmanThinkLevel }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">系统认定等级</view>
|
||||
<view class="r-right">{{ item.systemThinkLevel }}</view>
|
||||
</view>
|
||||
<view v-if="item.opinion" class="border-bottom"></view>
|
||||
|
||||
<view v-if="item.opinion" class="r-list">
|
||||
<view class="r-left">驳回原因</view>
|
||||
<view class="r-right">{{ item.opinion }}</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {SearchForAllCustomersSalesperson} from "@/api/crm/customer/getCustomer"
|
||||
import {statusColorMap} from "./dataMap";
|
||||
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
// 搜索内容
|
||||
let searchValue = ref(null);
|
||||
// 分页
|
||||
const mescrollRef = ref(null);
|
||||
// 防抖计时
|
||||
let timerId = null;
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
console.log(searchValue.value)
|
||||
if (timerId) clearTimeout(timerId);
|
||||
|
||||
timerId = setTimeout(async () => {
|
||||
// let res = await getList(1, upOption.value.page.size)
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500)
|
||||
}
|
||||
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
handleSearch()
|
||||
})
|
||||
let clearSearchValue = () => {
|
||||
searchValue.value = '';
|
||||
}
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
|
||||
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 mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
cssFlag.value = true;
|
||||
uni.showLoading();
|
||||
setTimeout(async () => {
|
||||
// 重置页码为第一页
|
||||
const res = await getList(1, mescroll.size || upOption.page.size);
|
||||
cssFlag.value = false;
|
||||
list.value = res.list;
|
||||
// 正确传递 total 参数
|
||||
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
|
||||
uni.hideLoading();
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
// 使用 mescroll 提供的页码和大小参数
|
||||
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.total > mescroll.num * mescroll.size);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据列表
|
||||
const getList = (pageIndex, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
let param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
searchContent: searchValue.value
|
||||
}
|
||||
|
||||
let res = await SearchForAllCustomersSalesperson(param);
|
||||
resolve({
|
||||
list: res.rows,
|
||||
total: res.total
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// 跳转到详情
|
||||
let handleDetail = (item) => {
|
||||
if (item.nodeCode !== '完成') {
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/customer/components/customerUserEdit",
|
||||
events: {
|
||||
refreshCusUserList() {
|
||||
handleSearch();
|
||||
}
|
||||
},
|
||||
success(res) {
|
||||
res.eventChannel.emit('editCusData', {param: item, isAdd: false})
|
||||
}
|
||||
})
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '已完成审核,不可修改',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 长按定时器ID
|
||||
let touchTimerId = null;
|
||||
|
||||
// 开始触摸
|
||||
let handleTouchStart = (item) => {
|
||||
touchTimerId = setTimeout(() => {
|
||||
// console.log(item, "长按客户人员项")
|
||||
uni.showModal({
|
||||
title: "提示",
|
||||
content: "是否确认删除本条消息?",
|
||||
success(res) {
|
||||
if (res.confirm) {
|
||||
handleDelete(item);
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
})
|
||||
clearTimeout(touchTimerId);
|
||||
}, 1500)
|
||||
}
|
||||
|
||||
// 结束触摸
|
||||
let handleTouchEnd = () => {
|
||||
if (touchTimerId !== null) {
|
||||
clearTimeout(touchTimerId);
|
||||
}
|
||||
}
|
||||
|
||||
// 删除消息
|
||||
let handleDelete = async (item) => {
|
||||
// console.log(item)
|
||||
const visitId = item.visitId;
|
||||
// await removeVisit({visitId})
|
||||
// uni.hideLoading();
|
||||
uni.showToast({
|
||||
title: visitId ? visitId : "没有visitId字段,无法删除",
|
||||
icon: 'none'
|
||||
});
|
||||
}
|
||||
</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 .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;
|
||||
}
|
||||
|
||||
|
||||
.scroll-h {
|
||||
/* #ifdef APP-PLUS */
|
||||
height: calc(100vh - 120px);
|
||||
/* #endif */
|
||||
/* #ifndef APP-PLUS */
|
||||
height: calc(100vh - 110px);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
padding-bottom: 10rpx;
|
||||
|
||||
.w-b-title {
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-edit {
|
||||
white-space: nowrap;
|
||||
|
||||
&.wancheng-deal {
|
||||
border: solid 1rpx #00aa7f;
|
||||
background-color: #00aa7f;
|
||||
}
|
||||
|
||||
&.daishenhe-un-deal {
|
||||
border: solid 1rpx #ffaa7f;
|
||||
background-color: #ffaa7f;
|
||||
}
|
||||
|
||||
&.chaoqi-deal {
|
||||
border: 1rpx solid #ff0000;
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
&.tijiao-deal {
|
||||
border: 1rpx solid #00aaff;
|
||||
background-color: #00aaff;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -113,4 +113,14 @@ export const workingStatusList = [
|
||||
{id: 1, name: '正常上班'},
|
||||
{id: 2, name: '离职'},
|
||||
{id: 3, name: '退休'}
|
||||
]
|
||||
]
|
||||
/**
|
||||
* 人员所属审核状态字典
|
||||
*/
|
||||
export const statusColorMap = {
|
||||
'提交': 'tijiao-deal',
|
||||
'驳回': 'chaoqi-deal',
|
||||
'超期': 'chaoqi-deal',
|
||||
'完成': 'wancheng-deal',
|
||||
'待审核': 'daishenhe-un-deal'
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户列表'" :leftFlag="true" :rightFlag="false">
|
||||
<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>
|
||||
@@ -20,9 +20,9 @@
|
||||
<view class="search">
|
||||
<uni-search-bar class="custom-search" radius="28" placeholder="请输入客户名称" clearButton="auto"
|
||||
cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"
|
||||
v-model="searchValue"
|
||||
v-model="searchValue" @clear="searchValue=''"
|
||||
/>
|
||||
<button type="default" @click="searchValue=''" size="mini" class="btn-search">清空</button>
|
||||
<!-- <button type="default" @click="searchValue=''" size="mini" class="btn-search">清空</button>-->
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
@@ -117,7 +117,7 @@ let timerId = null;
|
||||
// 搜索
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
// console.log(`新值: ${newValue}, 旧值: ${oldValue}`);
|
||||
if(!timerId) clearTimeout(timerId);
|
||||
if(timerId) clearTimeout(timerId);
|
||||
cssFlag.value = true;
|
||||
timerId = setTimeout(async ()=>{
|
||||
handleSearch();
|
||||
@@ -135,6 +135,7 @@ const downCallback = async (mescroll) => {
|
||||
// 正确结束下拉刷新状态
|
||||
mescroll.endSuccess(res.list.length, res.total >= upOption.value.page.size);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
// 发生错误时结束下拉刷新
|
||||
mescroll.endErr();
|
||||
}
|
||||
@@ -152,16 +153,19 @@ const upCallback = async (mescroll) => {
|
||||
// 正确结束上拉加载状态
|
||||
mescroll.endSuccess(res.list.length, res.list.length >= mescroll.size);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
// 发生错误时结束上拉加载
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
let handleSearch = async () => {
|
||||
// 触发下拉刷新以重新加载数据
|
||||
if (mescrollRef.value) {
|
||||
downCallback(mescrollRef.value.mescroll);
|
||||
uni.showLoading()
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
uni.hideLoading()
|
||||
}
|
||||
}
|
||||
// 获取数据列表
|
||||
@@ -200,10 +204,6 @@ const radioChange = (e) => {
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
@@ -219,15 +219,6 @@ const radioChange = (e) => {
|
||||
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);
|
||||
|
||||
743
src/pages/business/CRM/mainOwner/audit/confirmForm.vue
Normal file
743
src/pages/business/CRM/mainOwner/audit/confirmForm.vue
Normal file
@@ -0,0 +1,743 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @date 2025年8月19日
|
||||
* @description 提交审批意见
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员主归属人变更人员详情'" :leftFlag="true" :rightFlag="false">
|
||||
</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">
|
||||
<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="userName" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.userName" placeholder="请输入姓名" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择等级 索引: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>
|
||||
<!-- 输入人员工作电话 -->
|
||||
<uni-forms-item label="工作电话" name="jobTelphone" class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.jobTelphone" placeholder="请输入工作电话" :disabled="!editable"/>
|
||||
</uni-forms-item>
|
||||
<!-- 输入人员手机号 -->
|
||||
<uni-forms-item v-if="formData.mobilePhone" label="人员手机号" name="mobilePhone" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.mobilePhone" placeholder="请输入手机号" :disabled="!editable"/>
|
||||
</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="请输入所属部门" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择职能 索引: :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="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="salesmanThinkLevel" required
|
||||
class="uni-forms-item is-direction-top is-top">
|
||||
<view class="form-picker">
|
||||
<picker @change="handleThinkLevelChange" :range="salesmanThinkLevelList"
|
||||
:range-key="'name'" :disabled="!editable"> <!--选择推荐等级 索引: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="job" required class="uni-forms-item is-direction-top is-top">
|
||||
<uni-easyinput v-model="formData.job" placeholder="请输入职务" :disabled="!editable"/>
|
||||
</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="请输入专业产品" :disabled="!editable"/>
|
||||
</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="请输入产品需求" :disabled="!editable"/>
|
||||
</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="请输入办公场地" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择性别 索引: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>
|
||||
|
||||
<!-- 选择任职时间 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" :disabled="!editable"/> <!-- 响应: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'" :disabled="!editable"> <!--选择层次 索引: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="请输入职务变化" :disabled="!editable"/>
|
||||
</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'" :disabled="!editable"> <!--选择潜力 索引: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" :disabled="!editable"/> <!-- 响应: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="请输入爱好" :disabled="!editable"/>
|
||||
<multipleSelect :multiple="true" :value="hobbyIndex" downInner :options="hobbyList"
|
||||
@change="handleHobbyChange" :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="请输入禁忌" :disabled="!editable"/>
|
||||
</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="请输入或选择籍贯" :disabled="!editable"/>
|
||||
<uni-data-picker placeholder="请选择" :localdata="city"
|
||||
:clear-icon="false"
|
||||
:map="{text:'label',value:'value'}"
|
||||
@change="handleNativeChange" :readonly="!editable">
|
||||
|
||||
</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="请输入家庭住址" :disabled="!editable"/>
|
||||
</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="请输入家庭情况" :disabled="!editable"/>
|
||||
</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="请输入婚姻状况" :disabled="!editable"/>
|
||||
</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="请输入车型及牌号" :disabled="!editable"/>
|
||||
</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="请输入毕业院校" :disabled="!editable"/>
|
||||
</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="请输入人脉关系" :disabled="!editable"/>
|
||||
</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" :disabled="!editable"
|
||||
: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'" :disabled="!editable"> <!--选择支持程度 索引: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" style="padding-bottom: 220rpx;">
|
||||
<uni-easyinput type="textarea" autoHeight v-model="formData.reasonForChange" placeholder="请输入备注"
|
||||
class="form-texarea" :disabled="!editable"/>
|
||||
</uni-forms-item>
|
||||
|
||||
<view v-if="formData.userId" class="fab">
|
||||
<button class="mini-btn btn" type="warn" @click="handleReject">✘ 驳回</button>
|
||||
<button class="mini-btn btn" type="primary" @click="handleApprove">✔ 通过</button>
|
||||
</view>
|
||||
</uni-forms>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, reactive, getCurrentInstance} 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 "../../customer/dataMap";
|
||||
import city from "@/utils/area";
|
||||
import {getCustomerLevel, getCusUserApprovalListDetail} from "@/api/crm/customer/getCustomer";
|
||||
import {changeOfPrimaryOwnershipNoApproved, changeOfPrimaryOwnershipApproved} from "@/api/crm/mainOwner/mainOwner";
|
||||
import {onLoad} from "@dcloudio/uni-app";
|
||||
// 表单引用
|
||||
const formRef = ref({});
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
// 客户人员的ID
|
||||
userId: null,
|
||||
//部门
|
||||
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, "校验规则");
|
||||
})();
|
||||
const editable = ref(true);
|
||||
// getCurrentInstance().proxy
|
||||
let instance = null;
|
||||
onLoad((options)=>{
|
||||
instance = getCurrentInstance().proxy;
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.on('auditCusOwner', async (param) => {
|
||||
editable.value = param.editable;
|
||||
if(!param.editable){ // 只读模式
|
||||
let {userId} = param.data;
|
||||
console.log(param.data, "客户人员所属详情编辑页面读取到参数");
|
||||
let res = await getCusUserApprovalListDetail({userId}).catch(err=>{
|
||||
console.warn(err,'客户人员所属编辑信息获取失败');
|
||||
})
|
||||
const {rows} = res;
|
||||
let source = rows[0];
|
||||
const filteredData = Object.keys(source)
|
||||
.filter(key => source[key] !== null && source[key] !== "null")
|
||||
.reduce((obj, key) => {
|
||||
obj[key] = source[key];
|
||||
return obj;
|
||||
}, {});
|
||||
const {cusName} = source;
|
||||
customerUser.value.cusName = cusName;
|
||||
console.log(filteredData, "过滤空值属性")
|
||||
if(rows.length) Object.assign(formData.value, filteredData); // 对表单赋值
|
||||
formData.value.functionalRequirements = source.function; // 特殊处理
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
// 选择职能
|
||||
let handleFunctionChange = (e) => {
|
||||
console.log(e.detail.value, '职能索引');
|
||||
const {name} = functionalRequirementList[e.detail.value];
|
||||
formData.value.functionalRequirements = name;
|
||||
formData.value.function = 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) {
|
||||
let {value} = e.detail;
|
||||
formData.value.tenureTime = value;
|
||||
}
|
||||
|
||||
// 需求层次索引
|
||||
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) {
|
||||
let{value} = e.detail
|
||||
formData.value.birthday = value;
|
||||
}
|
||||
|
||||
// 爱好标签索引
|
||||
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;
|
||||
})
|
||||
formData.value.iphone = formData.value.mobilePhone; // 特殊处理
|
||||
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()
|
||||
upadateappCrmCusUserNew(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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
let handleReject = () => {
|
||||
uni.showModal({
|
||||
title: '是否确认驳回?',
|
||||
editable: true,
|
||||
placeholderText: '请输入驳回原因',
|
||||
async success(res){
|
||||
if(res.confirm){
|
||||
if(res.content){
|
||||
let res = await changeOfPrimaryOwnershipNoApproved({
|
||||
opinionOwn: res.content,
|
||||
userId: formData.value.userId
|
||||
})
|
||||
if(res.code==200){
|
||||
uni.showToast({
|
||||
title: '操作成功',
|
||||
success(){
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('refreshOwnerChangeList')
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack()
|
||||
},1000)
|
||||
}
|
||||
})
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败!驳回原因不能为空',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
let handleApprove = () => {
|
||||
changeOfPrimaryOwnershipApproved({
|
||||
userId: formData.value.userId
|
||||
}).then(res=>{
|
||||
if(res.code==200){
|
||||
uni.showToast({
|
||||
title: '操作成功',
|
||||
success(){
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack()
|
||||
const eventChannel = instance.getOpenerEventChannel();
|
||||
eventChannel.emit('refreshOwnerChangeList')
|
||||
},1000)
|
||||
}
|
||||
})
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
}).catch(err=>{
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
</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;
|
||||
}
|
||||
.btn{
|
||||
height: 100rpx;
|
||||
width: 180rpx;
|
||||
border-radius: 50rpx;
|
||||
border: none;
|
||||
line-height: 100rpx;
|
||||
text-align: center;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
.fab{
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 100rpx;
|
||||
display: flex;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100vw;
|
||||
left: 0;
|
||||
background-color: rgba(255, 255, 255, 0.4);
|
||||
backdrop-filter: blur(10px);
|
||||
box-shadow: 0 0 60rpx rgba(255, 255, 255, 0.9);
|
||||
z-index: 999;
|
||||
}
|
||||
</style>
|
||||
277
src/pages/business/CRM/mainOwner/audit/mainOwnerChangeAudit.vue
Normal file
277
src/pages/business/CRM/mainOwner/audit/mainOwnerChangeAudit.vue
Normal file
@@ -0,0 +1,277 @@
|
||||
<!--
|
||||
* @author wangzhuo
|
||||
* @date 2025年8月19日
|
||||
* @description 主归属人变更审核
|
||||
-->
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'客户人员主归属人变更审核'" :leftFlag="true" :rightFlag="false">
|
||||
</customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<view class="all-body">
|
||||
<!-- 搜索-->
|
||||
<!-- <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="clearSearchValue" 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 margin-bottom20" v-for="(item, index) in list" :key="index">
|
||||
<view class="report-list" @click.stop="handleDetail(item)">
|
||||
<view class="r-list title" >
|
||||
{{ item.cusName }}
|
||||
<view class="r-right" :class="item.auditStatus ? '' : 'btn-pink' ">{{item.auditStatus?'':'待您审批'}}</view>
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户人员名称</view>
|
||||
<view class="r-right">{{ item.userName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">目前业务员</view>
|
||||
<view class="r-right">{{ item.belonger }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建时间</view>
|
||||
<view class="r-right">{{ item.createTime }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">职能</view>
|
||||
<view class="r-right">{{ item.function }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list" style="font-weight: bold">
|
||||
<view class="r-left">申请变更人姓名</view>
|
||||
<view class="r-right">{{ item.applicantName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">申请原因</view>
|
||||
<view class="r-right">{{ item.reasonForChange }}</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {ref, onMounted, watch} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {getNavBarPaddingTop} from '@/utils/system.js'
|
||||
import {personnelAwaitingReviewForChange} from "@/api/crm/mainOwner/mainOwner"
|
||||
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
// 搜索内容
|
||||
let searchValue = ref(null);
|
||||
// 分页
|
||||
const mescrollRef = ref(null);
|
||||
// 防抖计时
|
||||
let timerId = null;
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
// 防抖搜索 console.log(searchValue.value)
|
||||
if (timerId) clearTimeout(timerId);
|
||||
|
||||
timerId = setTimeout(async () => {
|
||||
|
||||
// let res = await getList(1, upOption.value.page.size)
|
||||
await downCallback(mescrollRef.value.mescroll);
|
||||
clearTimeout(timerId);
|
||||
timerId = null;
|
||||
}, 500)
|
||||
}
|
||||
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
handleSearch()
|
||||
})
|
||||
let clearSearchValue = ()=>{
|
||||
searchValue.value = '';
|
||||
}
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
|
||||
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 mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
cssFlag.value = true;
|
||||
uni.showLoading();
|
||||
setTimeout(async () => {
|
||||
// 重置页码为第一页
|
||||
const res = await getList(1, mescroll.size || upOption.page.size);
|
||||
|
||||
list.value = res.list;
|
||||
cssFlag.value = false;
|
||||
// 正确传递 total 参数
|
||||
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
|
||||
uni.hideLoading();
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
// 使用 mescroll 提供的页码和大小参数
|
||||
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.total > mescroll.num * mescroll.size);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据列表
|
||||
const getList = (pageIndex, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
let param = {
|
||||
pageNum: pageIndex,
|
||||
pageSize,
|
||||
searchContent: searchValue.value
|
||||
}
|
||||
|
||||
let res = await personnelAwaitingReviewForChange(param);
|
||||
resolve({
|
||||
list: res.rows,
|
||||
total: res.total
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// 跳转到详情
|
||||
let handleDetail = (item) => {
|
||||
const {userId} = item;
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/mainOwner/audit/confirmForm",
|
||||
events: {
|
||||
refreshOwnerChangeList(){
|
||||
handleSearch();
|
||||
}
|
||||
},
|
||||
success(res){
|
||||
res.eventChannel.emit('auditCusOwner', {data: {userId}, editable: false})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style 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;
|
||||
.title{
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-pink{
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
@@ -174,6 +174,11 @@
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
|
||||
@@ -179,8 +179,10 @@
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
@@ -216,8 +218,10 @@ onMounted(() => {
|
||||
title: '删除成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
@@ -327,15 +327,12 @@ const dynamicPlaceholder = computed(() => {
|
||||
// 当前选中的信息类型
|
||||
const competitorLevelOneIndex = ref(0)
|
||||
const competitorLevelOne = ref('基本信息')
|
||||
|
||||
const competitorLevelTwo = ref('资质情况')
|
||||
// 当前选中的具体分类索引
|
||||
const competitorLevelTwoIndex = ref(0)
|
||||
|
||||
// 当前显示的具体分类选项数组(动态切换 array2 / array3)
|
||||
const currentCompetitorLevelTwoArray = ref(array2.value)
|
||||
|
||||
// 当前选中的具体分类名称
|
||||
const competitorLevelTwo = ref('')
|
||||
|
||||
// 表单引用 & 客户选择器引用
|
||||
const formRef = ref(null)
|
||||
@@ -374,6 +371,11 @@ const dynamicPlaceholder = computed(() => {
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
|
||||
@@ -379,8 +379,10 @@ const dynamicPlaceholder = computed(() => {
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
@@ -448,8 +450,10 @@ const dynamicPlaceholder = computed(() => {
|
||||
title: '删除成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
411
src/pages/business/CRM/marketInformation/infomationView.vue
Normal file
411
src/pages/business/CRM/marketInformation/infomationView.vue
Normal file
@@ -0,0 +1,411 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'市场信息查看'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
</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="handleSearch" size="mini" class="btn-search">查询</button>
|
||||
</view> -->
|
||||
<view class="search_center">
|
||||
<view class="category">
|
||||
<view class="flex_row_center_center" @click="showCate">
|
||||
<text>{{selCategory.val||'全部'}}</text>
|
||||
<image src="@/static/images/icon-notice@2x.png" mode=""></image>
|
||||
</view>
|
||||
<view class="pop_arrow" v-if="maskShow"></view>
|
||||
<view class="pop" v-if="maskShow">
|
||||
<text v-for="(item,index) in categories" :key="index"
|
||||
@click="toList(item.categoryId,item.categoryName)">{{item.categoryName}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<image class="search_icon" src="@/static/images/icon-notice@2x.png"></image>
|
||||
<input class='sea_input' :focus="inputFocus" type='text' :value="inputval" placeholder="请输入搜索条件"
|
||||
@input="inputChange" @confirm='search' maxlength="50" placeholder-class="placeClass"></input>
|
||||
<image class='clear_content' v-show="inputval" @click="clearInputVal"
|
||||
src="@/static/images/icon-notice@2x.png" />
|
||||
</view>
|
||||
<text class='sea_btn' @click="btnSearch(1)">{{'搜索'}}</text>
|
||||
<!-- 分页部分 -->
|
||||
<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 margin-bottom20" v-for="(item, index) in list" :key="index" @click="showDetail(item)">
|
||||
<view>
|
||||
<view class="report-list">
|
||||
<view class="title">信息类型:{{ item.informationType }}</view>
|
||||
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-name"v-if="item.cusName!=null">公司名称:{{ item.cusName }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="item.myselfBrowsing==0?'btn-blue':'btn-green'"
|
||||
size="mini">{{item.myselfBrowsing==0?'未读':'已读'}}</view>
|
||||
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="border-bottom"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">报告人</view>
|
||||
<view class="r-right">{{ item.createName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">报告日期</view>
|
||||
<view class="r-right">{{ item.createTime }}</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
onMounted,
|
||||
watch
|
||||
} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import {
|
||||
getNavBarPaddingTop
|
||||
} from '@/utils/system.js'
|
||||
import {
|
||||
visitorReportList
|
||||
} from '@/api/business.js'
|
||||
import {
|
||||
viewingMarketInfForAllMembers
|
||||
} from '@/api/crm/api_ys.js';
|
||||
import {
|
||||
onLoad,
|
||||
onShow,
|
||||
onUnload
|
||||
} from '@dcloudio/uni-app'
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
uni.$on('updateStatus', markVisited)
|
||||
})
|
||||
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
|
||||
let searchValue = ref(null)
|
||||
//监视查询的内容的变化
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
//变化了之后,重新查询内容
|
||||
var data = {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
searchContent: searchValue.value
|
||||
};
|
||||
viewingMarketInfForAllMembers(data).then(res => {
|
||||
if (res.code == 200) {
|
||||
//设置列表数据
|
||||
list.value = res.rows;
|
||||
}
|
||||
})
|
||||
})
|
||||
const index = ref(0)
|
||||
const categories = ref([{
|
||||
categoryId: 1,
|
||||
categoryName: '市场机会'
|
||||
}, {
|
||||
categoryId: 2,
|
||||
categoryName: '重大事项信息'
|
||||
}, {
|
||||
categoryId: 3,
|
||||
categoryName: '竞争对手信息'
|
||||
}, {
|
||||
categoryId: 4,
|
||||
categoryName: '人员变化信息'
|
||||
}, {
|
||||
categoryId: 5,
|
||||
categoryName: '重点型号任务信息'
|
||||
}, {
|
||||
categoryId: 6,
|
||||
categoryName: '通用信息'
|
||||
}])
|
||||
const selCategory = ref ({
|
||||
id: 1,
|
||||
val: ''
|
||||
})
|
||||
// 查询搜索跳转
|
||||
let handleSearch = () => {
|
||||
var data = {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
searchContent: searchValue.value
|
||||
};
|
||||
viewingMarketInfForAllMembers(data).then(res => {
|
||||
if (res.code == 200) {
|
||||
//设置列表数据
|
||||
list.value = res.rows;
|
||||
} else {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: "请求失败",
|
||||
});
|
||||
list.value = null;
|
||||
}
|
||||
|
||||
})
|
||||
console.log(searchValue.value)
|
||||
}
|
||||
|
||||
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 mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
const res = await getViewingMarketInfForAllMembers(1, upOption.value.page.size);
|
||||
cssFlag.value = false;
|
||||
list.value = res.list;
|
||||
mescroll.resetUpScroll();
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
mescroll.endErr();
|
||||
} finally {
|
||||
setTimeout(async () => {
|
||||
mescroll.endSuccess();
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
const res = await getViewingMarketInfForAllMembers(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.list;
|
||||
} else {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
mescroll.endBySize(res.list.length, res.total);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据列表
|
||||
const getViewingMarketInfForAllMembers = (pageNum, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
let param = {
|
||||
pageNum,
|
||||
pageSize
|
||||
}
|
||||
let res = await viewingMarketInfForAllMembers(param);
|
||||
resolve({
|
||||
list: res.rows,
|
||||
total: res.total
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
let Loop = ref(0)
|
||||
let now
|
||||
const visistId = ref();
|
||||
const cusName = ref();
|
||||
const cusId = ref();
|
||||
const status = ref()
|
||||
|
||||
function showDetail(item) {
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/marketInformation/informationDetail?informationId=" + item.informationId + '&selValue=' + item.selValue+ '&inputval=' + item.inputval
|
||||
})
|
||||
}
|
||||
|
||||
onUnload(() => {
|
||||
uni.$off('updateStatus')
|
||||
})
|
||||
|
||||
const markVisited = (informationId) => {
|
||||
const newList = [...list.value].map(item => {
|
||||
if (item.informationId == informationId) {
|
||||
return { ...item, myselfBrowsing: 1 };
|
||||
}
|
||||
return item;
|
||||
});
|
||||
list.value = newList;
|
||||
|
||||
};
|
||||
|
||||
</script>
|
||||
|
||||
<style 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;
|
||||
}
|
||||
|
||||
.search_center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border: none;
|
||||
flex: 1;
|
||||
height: 70rpx;
|
||||
margin-left: 20rpx;
|
||||
padding-left: 20rpx;
|
||||
border-radius: 32.5rpx;
|
||||
background-color: #f5f5f5;
|
||||
|
||||
.search_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
margin-right: 22rpx;
|
||||
}
|
||||
|
||||
.category {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 16rpx;
|
||||
padding-right: 16rpx;
|
||||
border-right: 2rpx solid #D4D4D4;
|
||||
position: relative;
|
||||
|
||||
text {
|
||||
font-size: 13px;
|
||||
margin-left: 10rpx;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
|
||||
image {
|
||||
margin-top: 4rpx;
|
||||
width: 20rpx;
|
||||
height: 11rpx;
|
||||
|
||||
}
|
||||
|
||||
.pop {
|
||||
position: absolute;
|
||||
top: 50rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px 40rpx 0px rgba(59, 59, 59, 0.2);
|
||||
border-radius: 12rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 20rpx;
|
||||
z-index: 100;
|
||||
max-height: 566rpx;
|
||||
overflow-y: auto;
|
||||
|
||||
text {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #333333;
|
||||
white-space: nowrap;
|
||||
margin: 10rpx 0;
|
||||
line-height: 56rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.pop_arrow {
|
||||
position: absolute;
|
||||
top: 48rpx;
|
||||
z-index: 999;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 68rpx;
|
||||
top: -26rpx;
|
||||
border: 14rpx solid #fff;
|
||||
border-color: transparent transparent #fff transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
288
src/pages/business/CRM/marketInformation/informationDetail.vue
Normal file
288
src/pages/business/CRM/marketInformation/informationDetail.vue
Normal file
@@ -0,0 +1,288 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'市场信息详情'" :leftFlag="true" :rightFlag="false"></customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<!-- 详情内容 -->
|
||||
<view class="white-bg">
|
||||
<view class="report-list">
|
||||
<view class="title">{{ detailList.informationType }}</view>
|
||||
<view class="r-list">
|
||||
<view class="r-name">{{ detailList.cusName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">报告人</view>
|
||||
<view class="r-right">{{ detailList.createName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建日期</view>
|
||||
<view class="r-right">{{ detailList.createTime }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width" v-if="detailList.createTime != null"></view>
|
||||
<view class="r-list" v-if="detailList.createTime != null">
|
||||
<view class="r-left">创建时间</view>
|
||||
<view class="r-right">{{ detailList.createTime }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.opportunityType != null"></view>
|
||||
<view class="r-list" v-if="detailList.opportunityType != null">
|
||||
<view class="r-left">机会类型</view>
|
||||
<view class="r-right">{{ detailList.opportunityType }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.understandTheWay != null"></view>
|
||||
<view class="r-list" v-if="detailList.understandTheWay != null">
|
||||
<view class="r-left">了解途径</view>
|
||||
<view class="r-right">{{ detailList.understandTheWay }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.opportunityDescription != null"></view>
|
||||
<view class="r-list" v-if="detailList.opportunityDescription != null">
|
||||
<view class="r-left">机会描述</view>
|
||||
<view class="r-right">{{ detailList.opportunityDescription }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.opportunityStatus != null"></view>
|
||||
<view class="r-list" v-if="detailList.opportunityStatus != null">
|
||||
<view class="r-left">机会所处状态</view>
|
||||
<view class="r-right">{{ detailList.opportunityStatus }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.predictedAmount != null"></view>
|
||||
<view class="r-list" v-if="detailList.predictedAmount != null">
|
||||
<view class="r-left">预测金额或情况</view>
|
||||
<view class="r-right">{{ detailList.predictedAmount }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitionSituation != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitionSituation != null">
|
||||
<view class="r-left">竞争情况</view>
|
||||
<view class="r-right">{{ detailList.competitionSituation }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.majorTypesOfMatters != null"></view>
|
||||
<view class="r-list" v-if="detailList.majorTypesOfMatters != null">
|
||||
<view class="r-left">重大事项类型</view>
|
||||
<view class="r-right">{{ detailList.majorTypesOfMatters }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.theImpactGenerated != null"></view>
|
||||
<view class="r-list" v-if="detailList.theImpactGenerated != null">
|
||||
<view class="r-left">产生的影响</view>
|
||||
<view class="r-right">{{ detailList.theImpactGenerated }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.companyResponseStrategy != null"></view>
|
||||
<view class="r-list" v-if="detailList.companyResponseStrategy != null">
|
||||
<view class="r-left">公司应对策略</view>
|
||||
<view class="r-right">{{ detailList.companyResponseStrategy }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitiveUnits != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitiveUnits != null">
|
||||
<view class="r-left">竞争单位</view>
|
||||
<view class="r-right">{{ detailList.competitiveUnits }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitorLevelOne != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitorLevelOne != null">
|
||||
<view class="r-left">信息类型</view>
|
||||
<view class="r-right">{{ detailList.competitorLevelOne }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitorLevelTwo != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitorLevelTwo != null">
|
||||
<view class="r-left">具体分类</view>
|
||||
<view class="r-right">{{ detailList.competitorLevelTwo }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.specificMatters != null"></view>
|
||||
<view class="r-list" v-if="detailList.specificMatters != null">
|
||||
<view class="r-left">具体事情</view>
|
||||
<view class="r-right">{{ detailList.specificMatters }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.originalPosition != null"></view>
|
||||
<view class="r-list" v-if="detailList.originalPosition != null">
|
||||
<view class="r-left">原职务</view>
|
||||
<view class="r-right">{{ detailList.originalPosition }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.currentPosition != null"></view>
|
||||
<view class="r-list" v-if="detailList.currentPosition != null">
|
||||
<view class="r-left">现职务</view>
|
||||
<view class="r-right">{{ detailList.currentPosition }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.positionOfOurCompany != null"></view>
|
||||
<view class="r-list" v-if="detailList.positionOfOurCompany != null">
|
||||
<view class="r-left">现职务是否与我公司业务相关</view>
|
||||
<view class="r-right">{{ detailList.positionOfOurCompany }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.developmentEfforts != null"></view>
|
||||
<view class="r-list" v-if="detailList.developmentEfforts != null">
|
||||
<view class="r-left">攻关力度</view>
|
||||
<view class="r-right">{{ detailList.developmentEfforts }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.successor != null"></view>
|
||||
<view class="r-list" v-if="detailList.successor != null">
|
||||
<view class="r-left">继任者</view>
|
||||
<view class="r-right">{{ detailList.successor }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.keyModels != null"></view>
|
||||
<view class="r-list" v-if="detailList.keyModels != null">
|
||||
<view class="r-left">重点型号</view>
|
||||
<view class="r-right">{{ detailList.keyModels }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.currentStatus != null"></view>
|
||||
<view class="r-list" v-if="detailList.currentStatus != null">
|
||||
<view class="r-left">目前状态</view>
|
||||
<view class="r-right">{{ detailList.currentStatus }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.batchProductionPlan != null"></view>
|
||||
<view class="r-list" v-if="detailList.batchProductionPlan != null">
|
||||
<view class="r-left">批产计划</view>
|
||||
<view class="r-right">{{ detailList.batchProductionPlan }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.situation != null"></view>
|
||||
<view class="r-list" v-if="detailList.situation != null">
|
||||
<view class="r-left">外协、外包、上级单位情况</view>
|
||||
<view class="r-right">{{ detailList.situation }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.subordinateSupportingUnits != null"></view>
|
||||
<view class="r-list" v-if="detailList.subordinateSupportingUnits != null">
|
||||
<view class="r-left">下级配套单位</view>
|
||||
<view class="r-right">{{ detailList.subordinateSupportingUnits }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.generalFormType != null"></view>
|
||||
<view class="r-list" v-if="detailList.generalFormType != null">
|
||||
<view class="r-left">通用表单类型</view>
|
||||
<view class="r-right">{{ detailList.generalFormType }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.informationContent != null"></view>
|
||||
<view class="r-list" v-if="detailList.informationContent != null">
|
||||
<view class="r-left">信息内容</view>
|
||||
<view class="r-right">{{ detailList.informationContent }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width" v-if="detailList.remark != null"></view>
|
||||
<view class="r-list" v-if="detailList.remark != null">
|
||||
<view class="r-left">备注</view>
|
||||
<view class="r-right">{{ detailList.remark }}</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
<view class="border-bottom b-width"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- 底部加高度来避免tabbar遮挡 -->
|
||||
<view class="bottom-height"></view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
onMounted
|
||||
} from 'vue'
|
||||
import {
|
||||
onLoad,
|
||||
onShow
|
||||
} from '@dcloudio/uni-app'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import customTabs from '@/components/customTabs.vue';
|
||||
import {
|
||||
viewingMarketInfgetDetail
|
||||
} from '@/api/crm/api_ys.js';
|
||||
|
||||
|
||||
let informationId = ref(0)
|
||||
// 加载后调用
|
||||
let id = ref(null)
|
||||
onLoad((options) => {
|
||||
informationId.value = options.informationId
|
||||
getVisitorReportDetail();
|
||||
})
|
||||
// 查询详情
|
||||
let item = ref({});
|
||||
//明细List
|
||||
let detailList = ref({})
|
||||
const getVisitorReportDetail = async () => {
|
||||
let param = {
|
||||
informationId: informationId.value
|
||||
}
|
||||
let detailRes = await viewingMarketInfgetDetail(param);
|
||||
detailList.value = detailRes.rows[0];
|
||||
uni.$emit('updateStatus',informationId.value);
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.white-bg {
|
||||
width: 690rpx;
|
||||
margin: 0;
|
||||
border-radius: 8px 8px 0 0;
|
||||
}
|
||||
|
||||
.white-bg.white-bg-2 {
|
||||
border-radius: 0;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
:deep(.tabs-header) {
|
||||
/* background: none !important; */
|
||||
border-bottom: none !important;
|
||||
margin: 0 auto;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
:deep(.tab-item) {
|
||||
color: #919191;
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
/* flex:none; */
|
||||
/* margin: 0 -50rpx; */
|
||||
/* padding: 0 50rpx; */
|
||||
}
|
||||
|
||||
:deep(.tab-item:first-child) {
|
||||
text-align: right;
|
||||
margin-left: 230rpx;
|
||||
}
|
||||
|
||||
:deep(.tab-item:last-child) {
|
||||
text-align: left;
|
||||
margin-right: 230rpx;
|
||||
}
|
||||
|
||||
:deep(.tab-item.active) {
|
||||
color: #3384DF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
:deep(.tab-item.active::after) {
|
||||
width: 100rpx;
|
||||
height: 8rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -178,6 +178,11 @@
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
|
||||
@@ -183,8 +183,10 @@
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
@@ -217,8 +219,10 @@
|
||||
title: '删除成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
@@ -203,6 +203,11 @@
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
|
||||
@@ -210,8 +210,10 @@
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
@@ -250,8 +252,10 @@
|
||||
title: '删除成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
<view class="title r-list">
|
||||
<view class="r-left" style="font-size:38rpx;">{{ item.cusName }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="{'btn-blue':item.status==2}"
|
||||
size="mini" @click="itemView(item)">{{ item.state }}</view>
|
||||
size="mini" @click.stop="itemView(item)">{{ item.state }}</view>
|
||||
</view>
|
||||
<view style="padding:0rpx 0 10rpx">
|
||||
<view class="font-bold" style="padding-bottom:10rpx">机会类型:{{item.opportunityType}}
|
||||
@@ -51,13 +51,13 @@
|
||||
<view class="title r-list">
|
||||
<view class="r-left" style="font-size:38rpx;">{{ item.cusName }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="{'btn-blue':item.status==2}"
|
||||
size="mini">{{ item.state }}</view>
|
||||
size="mini" @click.stop="itemView(item)">{{ item.state }}</view>
|
||||
</view>
|
||||
<view style="padding:0rpx 0 10rpx">
|
||||
<view class="font-bold" style="padding-bottom:10rpx">
|
||||
产生的影响:{{item.theImpactGenerated}}</view>
|
||||
<view class="font-bold" style="padding-bottom:10rpx">
|
||||
重大事项类型:{{item.majorTypesOfMatters}}</view>
|
||||
重大事项类型:{{item.opportunityType}}</view>
|
||||
<!-- <view class="font-gray">{{ item.desc }}</view> -->
|
||||
</view>
|
||||
</view>
|
||||
@@ -70,7 +70,7 @@
|
||||
<view class="title r-list">
|
||||
<view class="r-left" style="font-size:38rpx;">{{ item.competitiveUnits }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="{'btn-blue':item.status==2}"
|
||||
size="mini">{{ item.state }}</view>
|
||||
size="mini" @click.stop="itemView(item)">{{ item.state }}</view>
|
||||
</view>
|
||||
<view style="padding:0rpx 0 10rpx">
|
||||
<view class="font-bold" style="padding-bottom:10rpx">
|
||||
@@ -89,7 +89,7 @@
|
||||
<view class="title r-list">
|
||||
<view class="r-left" style="font-size:38rpx;">{{ item.cusName }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="{'btn-blue':item.status==2}"
|
||||
size="mini">{{ item.state }}</view>
|
||||
size="mini" @click.stop="itemView(item)">{{ item.state }}</view>
|
||||
</view>
|
||||
<view style="padding:0rpx 0 10rpx">
|
||||
<view class="font-bold" style="padding-bottom:10rpx">客户人员名称:{{item.cusUserName}}
|
||||
@@ -110,7 +110,7 @@
|
||||
<view class="title r-list">
|
||||
<view class="r-left" style="font-size:38rpx;">{{ item.cusName }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="{'btn-blue':item.status==2}"
|
||||
size="mini">{{ item.state }}</view>
|
||||
size="mini" @click.stop="itemView(item)">{{ item.state }}</view>
|
||||
</view>
|
||||
<view style="padding:0rpx 0 10rpx">
|
||||
<view class="font-bold" style="padding-bottom:10rpx">重点型号:{{item.keyModels}}</view>
|
||||
@@ -128,7 +128,7 @@
|
||||
<view class="title r-list">
|
||||
<view class="r-left" style="font-size:38rpx;">{{ item.cusName }}</view>
|
||||
<view class="r-right btn-gray flex-auto" :class="{'btn-blue':item.status==2}"
|
||||
size="mini">{{ item.state }}</view>
|
||||
size="mini" @click.stop="itemView(item)">{{ item.state }}</view>
|
||||
</view>
|
||||
<view style="padding:0rpx 0 10rpx">
|
||||
<view class="font-bold" style="padding-bottom:10rpx">标签:{{item.generalFormType}}
|
||||
@@ -148,7 +148,8 @@
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
onMounted
|
||||
onMounted,
|
||||
onUnmounted
|
||||
} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
@@ -166,7 +167,12 @@
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
uni.$on('refreshMarketList', handleRefreshList);
|
||||
})
|
||||
onUnmounted(() => {
|
||||
// 移除事件监听
|
||||
uni.$off('refreshMarketList', handleRefreshList);
|
||||
});
|
||||
const mescrollInstance = ref(null);
|
||||
const activeTab = ref(0); // 默认市场机会
|
||||
const tabList = ['市场机会', '重大事项信息', '竞争对手信息', '人员变化信息', '重点型号任务信息', '通用表单'];
|
||||
@@ -322,13 +328,14 @@
|
||||
title: '提交成功',
|
||||
duration: 2000
|
||||
})
|
||||
handleRefreshList();
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg || '操作失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
reload()
|
||||
|
||||
} catch {
|
||||
uni.showToast({
|
||||
title: '提交失败,请重试',
|
||||
@@ -344,13 +351,14 @@
|
||||
title: '提交成功',
|
||||
duration: 2000
|
||||
})
|
||||
handleRefreshList();
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg || '操作失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
reload()
|
||||
|
||||
} catch {
|
||||
uni.showToast({
|
||||
title: '提交失败,请重试',
|
||||
@@ -405,6 +413,13 @@
|
||||
// console.log(item)
|
||||
// uni.navigateTo({ url: '/pages/business/CRM/visitorReportAdd' })
|
||||
}
|
||||
const handleRefreshList = () => {
|
||||
if (mescrollInstance.value) {
|
||||
mescrollInstance.value.triggerDownScroll();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -0,0 +1,249 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'市场信息审核'" :leftFlag="true" :rightFlag="true">
|
||||
<template #right>
|
||||
|
||||
</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="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 margin-bottom20" v-for="(item, index) in list" :key="index" @click="touchstart(item)">
|
||||
<view>
|
||||
<view class="report-list">
|
||||
<view class="title">信息类型:{{ item.informationType }}</view>
|
||||
<view class="r-list">
|
||||
<view class="r-name">公司名称:{{ item.cusName }}</view>
|
||||
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建人</view>
|
||||
<view class="r-right">{{ item.createName }}</view>
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建时间</view>
|
||||
<view class="r-right">{{ item.createTime }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">是否为商业航天类型</view>
|
||||
<view class="r-name">{{ item.commercialAerospace }}</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted, watch,onUnmounted } from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
|
||||
import { getNavBarPaddingTop } from '@/utils/system.js'
|
||||
import { visitorReportList } from '@/api/business.js'
|
||||
import { approvalMarketInfget } from '@/api/crm/api_ys.js';
|
||||
import { onShow } from '@dcloudio/uni-app'
|
||||
// 获取导航栏高度用于内容区域padding
|
||||
const navBarPaddingTop = ref(0);
|
||||
onMounted(() => {
|
||||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||||
})
|
||||
|
||||
// 查询列表
|
||||
let list = ref([]);
|
||||
|
||||
let searchValue = ref(null)
|
||||
|
||||
//监视查询的内容的变化
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
//变化了之后,重新查询内容
|
||||
var data = {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
searchContent: searchValue.value
|
||||
};
|
||||
getYsVisistList(data).then(res => {
|
||||
if (res.code == 200) {
|
||||
//设置列表数据
|
||||
list.value = res.rows;
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
// 新增
|
||||
let handleAdd = () => {
|
||||
uni.navigateTo({url: '/pages/business/CRM/paymentCollection/addPaymentCollection'})
|
||||
}
|
||||
|
||||
|
||||
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 mescrollInit = (mescroll) => {
|
||||
cssFlag.value = true;
|
||||
mescrollRef.value = mescroll;
|
||||
};
|
||||
|
||||
// 下拉刷新
|
||||
const downCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
const res = await ApprovalMarketInfget(1, upOption.value.page.size);
|
||||
cssFlag.value = false;
|
||||
list.value = res.list;
|
||||
mescroll.resetUpScroll();
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
mescroll.endErr();
|
||||
} finally {
|
||||
setTimeout(async () => {
|
||||
mescroll.endSuccess();
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
// 上拉加载更多
|
||||
const upCallback = async (mescroll) => {
|
||||
try {
|
||||
setTimeout(async () => {
|
||||
const res = await ApprovalMarketInfget(mescroll.num, mescroll.size);
|
||||
if (mescroll.num === 1) {
|
||||
list.value = res.list;
|
||||
} else {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
mescroll.endBySize(res.list.length, res.total);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
mescroll.endErr();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据列表
|
||||
const ApprovalMarketInfget = (pageNum, pageSize) => {
|
||||
return new Promise(async (resolve) => {
|
||||
let param = {
|
||||
pageNum,
|
||||
pageSize
|
||||
}
|
||||
let res = await approvalMarketInfget(param);
|
||||
resolve({
|
||||
list: res.rows,
|
||||
total: res.total
|
||||
});
|
||||
});
|
||||
}
|
||||
let Loop = ref(0)
|
||||
|
||||
function touchstart(item) {
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/marketInformation/marketInformationReviewDetail?informationId=" + item.informationId
|
||||
})
|
||||
}
|
||||
// 生命周期钩子
|
||||
onShow(() => {
|
||||
// 监听刷新事件
|
||||
|
||||
uni.$on('refreshList', ApprovalMarketInfget(1,10))
|
||||
|
||||
// 页面显示时也加载一次数据
|
||||
ApprovalMarketInfget(1,10)
|
||||
})
|
||||
onUnmounted(() => {
|
||||
// 移除监听(避免重复触发)
|
||||
uni.$off('refreshList')
|
||||
})
|
||||
onMounted(() => {
|
||||
ApprovalMarketInfget()
|
||||
})
|
||||
</script>
|
||||
|
||||
<style 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;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,385 @@
|
||||
<template>
|
||||
<view class="con-body">
|
||||
<view class="con-bg">
|
||||
<!-- 头部 -->
|
||||
<customHeader ref="customHeaderRef" :title="'市场信息详情'" :leftFlag="true" :rightFlag="false"></customHeader>
|
||||
|
||||
<!-- 高度来避免头部遮挡 -->
|
||||
<view class="top-height"></view>
|
||||
|
||||
<!-- 正文内容 -->
|
||||
<!-- 详情内容 -->
|
||||
<view class="white-bg">
|
||||
<view class="report-list">
|
||||
<view class="title">{{ detailList.informationType }}</view>
|
||||
<view class="r-list">
|
||||
<view class="r-name">{{ detailList.cusName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">报告人</view>
|
||||
<view class="r-right">{{ detailList.createName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width"></view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">创建日期</view>
|
||||
<view class="r-right">{{ detailList.createTime }}</view>
|
||||
</view>
|
||||
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.opportunityType != null"></view>
|
||||
<view class="r-list" v-if="detailList.opportunityType != null">
|
||||
<view class="r-left">机会类型</view>
|
||||
<view class="r-right">{{ detailList.opportunityType }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.understandTheWay != null"></view>
|
||||
<view class="r-list" v-if="detailList.understandTheWay != null">
|
||||
<view class="r-left">了解途径</view>
|
||||
<view class="r-right">{{ detailList.understandTheWay }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.opportunityDescription != null"></view>
|
||||
<view class="r-list" v-if="detailList.opportunityDescription != null">
|
||||
<view class="r-left">机会描述</view>
|
||||
<view class="r-right">{{ detailList.opportunityDescription }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.opportunityStatus != null"></view>
|
||||
<view class="r-list" v-if="detailList.opportunityStatus != null">
|
||||
<view class="r-left">机会所处状态</view>
|
||||
<view class="r-right">{{ detailList.opportunityStatus }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.predictedAmount != null"></view>
|
||||
<view class="r-list" v-if="detailList.predictedAmount != null">
|
||||
<view class="r-left">预测金额或情况</view>
|
||||
<view class="r-right">{{ detailList.predictedAmount }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitionSituation != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitionSituation != null">
|
||||
<view class="r-left">竞争情况</view>
|
||||
<view class="r-right">{{ detailList.competitionSituation }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.majorTypesOfMatters != null"></view>
|
||||
<view class="r-list" v-if="detailList.majorTypesOfMatters != null">
|
||||
<view class="r-left">重大事项类型</view>
|
||||
<view class="r-right">{{ detailList.majorTypesOfMatters }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.theImpactGenerated != null"></view>
|
||||
<view class="r-list" v-if="detailList.theImpactGenerated != null">
|
||||
<view class="r-left">产生的影响</view>
|
||||
<view class="r-right">{{ detailList.theImpactGenerated }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.companyResponseStrategy != null"></view>
|
||||
<view class="r-list" v-if="detailList.companyResponseStrategy != null">
|
||||
<view class="r-left">公司应对策略</view>
|
||||
<view class="r-right">{{ detailList.companyResponseStrategy }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitiveUnits != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitiveUnits != null">
|
||||
<view class="r-left">竞争单位</view>
|
||||
<view class="r-right">{{ detailList.competitiveUnits }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitorLevelOne != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitorLevelOne != null">
|
||||
<view class="r-left">信息类型</view>
|
||||
<view class="r-right">{{ detailList.competitorLevelOne }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.competitorLevelTwo != null"></view>
|
||||
<view class="r-list" v-if="detailList.competitorLevelTwo != null">
|
||||
<view class="r-left">具体分类</view>
|
||||
<view class="r-right">{{ detailList.competitorLevelTwo }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.specificMatters != null"></view>
|
||||
<view class="r-list" v-if="detailList.specificMatters != null">
|
||||
<view class="r-left">具体事情</view>
|
||||
<view class="r-right">{{ detailList.specificMatters }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.originalPosition != null"></view>
|
||||
<view class="r-list" v-if="detailList.originalPosition != null">
|
||||
<view class="r-left">原职务</view>
|
||||
<view class="r-right">{{ detailList.originalPosition }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.currentPosition != null"></view>
|
||||
<view class="r-list" v-if="detailList.currentPosition != null">
|
||||
<view class="r-left">现职务</view>
|
||||
<view class="r-right">{{ detailList.currentPosition }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.positionOfOurCompany != null"></view>
|
||||
<view class="r-list" v-if="detailList.positionOfOurCompany != null">
|
||||
<view class="r-left">现职务是否与我公司业务相关</view>
|
||||
<view class="r-right">{{ detailList.positionOfOurCompany }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.developmentEfforts != null"></view>
|
||||
<view class="r-list" v-if="detailList.developmentEfforts != null">
|
||||
<view class="r-left">攻关力度</view>
|
||||
<view class="r-right">{{ detailList.developmentEfforts }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.successor != null"></view>
|
||||
<view class="r-list" v-if="detailList.successor != null">
|
||||
<view class="r-left">继任者</view>
|
||||
<view class="r-right">{{ detailList.successor }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.keyModels != null"></view>
|
||||
<view class="r-list" v-if="detailList.keyModels != null">
|
||||
<view class="r-left">重点型号</view>
|
||||
<view class="r-right">{{ detailList.keyModels }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.currentStatus != null"></view>
|
||||
<view class="r-list" v-if="detailList.currentStatus != null">
|
||||
<view class="r-left">目前状态</view>
|
||||
<view class="r-right">{{ detailList.currentStatus }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.batchProductionPlan != null"></view>
|
||||
<view class="r-list" v-if="detailList.batchProductionPlan != null">
|
||||
<view class="r-left">批产计划</view>
|
||||
<view class="r-right">{{ detailList.batchProductionPlan }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.situation != null"></view>
|
||||
<view class="r-list" v-if="detailList.situation != null">
|
||||
<view class="r-left">外协、外包、上级单位情况</view>
|
||||
<view class="r-right">{{ detailList.situation }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.subordinateSupportingUnits != null"></view>
|
||||
<view class="r-list" v-if="detailList.subordinateSupportingUnits != null">
|
||||
<view class="r-left">下级配套单位</view>
|
||||
<view class="r-right">{{ detailList.subordinateSupportingUnits }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.generalFormType != null"></view>
|
||||
<view class="r-list" v-if="detailList.generalFormType != null">
|
||||
<view class="r-left">通用表单类型</view>
|
||||
<view class="r-right">{{ detailList.generalFormType }}</view>
|
||||
</view>
|
||||
|
||||
<view class="border-bottom b-width" v-if="detailList.informationContent != null"></view>
|
||||
<view class="r-list" v-if="detailList.informationContent != null">
|
||||
<view class="r-left">信息内容</view>
|
||||
<view class="r-right">{{ detailList.informationContent }}</view>
|
||||
</view>
|
||||
<view class="border-bottom b-width" v-if="detailList.remark != null"></view>
|
||||
<view class="r-list" v-if="detailList.remark != null">
|
||||
<view class="r-left">备注</view>
|
||||
<view class="r-right">{{ detailList.remark }}</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
<view class="border-bottom b-width"></view>
|
||||
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<!-- 底部加高度来避免tabbar遮挡 -->
|
||||
<!-- <view class="bottom-height"></view> -->
|
||||
<view class="tipsPopBtn">
|
||||
<view class="btnCancal" @click="refuse">驳回</view>
|
||||
<!-- <view class="btnComfire" @click="refusePass">通过不得分</view> -->
|
||||
<view class="btnComfire" @click="adopt">通过</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
onMounted
|
||||
} from 'vue'
|
||||
import {
|
||||
onLoad,
|
||||
onShow
|
||||
} from '@dcloudio/uni-app'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import customTabs from '@/components/customTabs.vue';
|
||||
import {
|
||||
viewingMarketInfgetDetail,
|
||||
crmMarketInformationApprovalSuccess,
|
||||
crmMarketInformationApprovalUnSuccess
|
||||
} from '@/api/crm/api_ys.js';
|
||||
|
||||
|
||||
let informationId = ref(0)
|
||||
// 加载后调用
|
||||
let id = ref(null)
|
||||
onLoad((options) => {
|
||||
informationId.value = options.informationId
|
||||
getVisitorReportDetail();
|
||||
})
|
||||
// 查询详情
|
||||
let item = ref({});
|
||||
//明细List
|
||||
let detailList = ref({})
|
||||
const getVisitorReportDetail = async () => {
|
||||
let param = {
|
||||
informationId: informationId.value
|
||||
}
|
||||
let detailRes = await viewingMarketInfgetDetail(param);
|
||||
detailList.value = detailRes.rows[0];
|
||||
}
|
||||
//通过审批
|
||||
const adopt = async () => {
|
||||
try {
|
||||
const param = {
|
||||
informationId: informationId.value
|
||||
}
|
||||
const res = await crmMarketInformationApprovalSuccess(param);
|
||||
console.log(res)
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
});
|
||||
// 操作完成后返回
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('提交失败:', err);
|
||||
uni.showToast({
|
||||
title: '提交失败',
|
||||
icon: 'error'
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// 修正后的驳回方法
|
||||
const refuse = async () => {
|
||||
uni.showModal({
|
||||
title: '驳回原因',
|
||||
content: '',
|
||||
editable: true,
|
||||
success: async function (modalRes) { // 使用modalRes避免重名
|
||||
if (modalRes.confirm) {
|
||||
try {
|
||||
const param = {
|
||||
informationId: informationId.value,
|
||||
opinion: modalRes.content // 用户输入的驳回原因
|
||||
};
|
||||
const apiRes = await crmMarketInformationApprovalUnSuccess(param); // 避免与modalRes重名
|
||||
console.log('驳回成功:', apiRes);
|
||||
uni.showToast({
|
||||
title: '驳回成功',
|
||||
icon: 'success'
|
||||
});
|
||||
// 操作完成后返回
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('驳回失败:', err);
|
||||
uni.showToast({
|
||||
title: '驳回失败',
|
||||
icon: 'error'
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.white-bg {
|
||||
width: 690rpx;
|
||||
margin: 0;
|
||||
border-radius: 8px 8px 0 0;
|
||||
}
|
||||
|
||||
.white-bg.white-bg-2 {
|
||||
border-radius: 0;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.tipsPopBtn {
|
||||
width: 300px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 50px auto 56px auto;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.btnCancal {
|
||||
width: 100px;
|
||||
height: 60px;
|
||||
border: 2px solid #29abe2;
|
||||
border-radius: 40px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #29abe2;
|
||||
font-size: 15px;
|
||||
|
||||
}
|
||||
|
||||
.btnComfire {
|
||||
width: 100px;
|
||||
height: 60px;
|
||||
background-color: #29abe2;
|
||||
border-radius: 40px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #FFF;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
:deep(.tabs-header) {
|
||||
/* background: none !important; */
|
||||
border-bottom: none !important;
|
||||
margin: 0 auto;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
:deep(.tab-item) {
|
||||
color: #919191;
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
/* flex:none; */
|
||||
/* margin: 0 -50rpx; */
|
||||
/* padding: 0 50rpx; */
|
||||
}
|
||||
|
||||
:deep(.tab-item:first-child) {
|
||||
text-align: right;
|
||||
margin-left: 230rpx;
|
||||
}
|
||||
|
||||
:deep(.tab-item:last-child) {
|
||||
text-align: left;
|
||||
margin-right: 230rpx;
|
||||
}
|
||||
|
||||
:deep(.tab-item.active) {
|
||||
color: #3384DF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
:deep(.tab-item.active::after) {
|
||||
width: 100rpx;
|
||||
height: 8rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -87,9 +87,6 @@
|
||||
let customerUser = reactive({})
|
||||
// 客户相关
|
||||
const guestList = ref([])
|
||||
const guestArr = ref([])
|
||||
const guestIndex = ref(0)
|
||||
|
||||
// 表单数据
|
||||
const formData = ref({
|
||||
cusId: null,
|
||||
@@ -186,7 +183,7 @@
|
||||
const form = ref({
|
||||
cusId: null,
|
||||
cusName: null,
|
||||
opportunityType: "", // 机会类型
|
||||
opportunityType: array.value[0].name, // 机会类型
|
||||
understandTheWay: "", // 了解途径
|
||||
opportunityDescription: "", // 机会描述
|
||||
opportunityStatus: "", // 机会所处状态
|
||||
@@ -243,7 +240,12 @@
|
||||
|
||||
//监听时间
|
||||
onMounted(() => {
|
||||
uni.$on('onCustomerSelected', handleCustomerSelected)
|
||||
// 设置机会类型的默认值
|
||||
formData.value.opportunityType = array.value[0].name;
|
||||
opportunityTypeIndex.value = 0;
|
||||
|
||||
// 原有的监听客户选择事件
|
||||
uni.$on('onCustomerSelected', handleCustomerSelected);
|
||||
})
|
||||
//取消监听
|
||||
onUnmounted(() => {
|
||||
@@ -266,17 +268,18 @@
|
||||
try {
|
||||
// 表单校验
|
||||
await formRef.value.validate()
|
||||
const res = await crmMarketInformationAdd(formData.value);
|
||||
const res = await crmMarketInformationAdd(formData.value);
|
||||
console.log(res)
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
console.log('表单数据:', formData.value)
|
||||
|
||||
// TODO: 在这里添加提交到后端的逻辑,比如调用 api.CrmMarketInformationAdd(formData.value)
|
||||
// 暂时只做校验提示
|
||||
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
@@ -293,8 +293,10 @@ onMounted(() => {
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
@@ -309,7 +311,10 @@ onMounted(() => {
|
||||
title: '删除成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
@@ -81,7 +81,10 @@
|
||||
} from 'vue'
|
||||
import customHeader from '@/components/customHeader.vue'
|
||||
import cache from '@/utils/cache'
|
||||
import { onShow, onUnload } from '@dcloudio/uni-app';
|
||||
import {
|
||||
onShow,
|
||||
onUnload
|
||||
} from '@dcloudio/uni-app';
|
||||
import {
|
||||
getGuestList
|
||||
} from '@/api/business.js'
|
||||
@@ -227,23 +230,23 @@
|
||||
url: '/pages/business/CRM/customerUserList?cusName=' + formData.value.cusName
|
||||
})
|
||||
}
|
||||
//页面渲染完成后,查询catch的get
|
||||
onShow(() => {
|
||||
//页面渲染完成后,查询catch的get
|
||||
onShow(() => {
|
||||
|
||||
if (cache.get('checkedRCClientList') != null && cache.get('checkedRCClientList') != []) {
|
||||
formData.value.cusUserName = cache.get('checkedRCClientList')
|
||||
}
|
||||
if (cache.get('checkedRCClientList') != null && cache.get('checkedRCClientList') != []) {
|
||||
formData.value.cusUserName = cache.get('checkedRCClientList')
|
||||
}
|
||||
|
||||
})
|
||||
//页面卸载之后,删除缓存信息
|
||||
onUnload(() => {
|
||||
handleDeleteLocal()
|
||||
})
|
||||
})
|
||||
//页面卸载之后,删除缓存信息
|
||||
onUnload(() => {
|
||||
handleDeleteLocal()
|
||||
})
|
||||
|
||||
//删除缓存
|
||||
let handleDeleteLocal = () => {
|
||||
cache.remove('checkedRCClientList');
|
||||
}
|
||||
//删除缓存
|
||||
let handleDeleteLocal = () => {
|
||||
cache.remove('checkedRCClientList');
|
||||
}
|
||||
|
||||
// 提交表单
|
||||
const submitForm = async () => {
|
||||
@@ -251,7 +254,7 @@ let handleDeleteLocal = () => {
|
||||
// 表单校验
|
||||
await formRef.value.validate()
|
||||
const cusUserName1 = formData.value.cusUserName;
|
||||
const stringOfNames = cusUserName1.join(",")
|
||||
const stringOfNames = cusUserName1.join(",")
|
||||
formData.value.cusUserName = stringOfNames
|
||||
const res = await crmMarketInformationAdd(formData.value);
|
||||
console.log(res)
|
||||
@@ -259,10 +262,10 @@ let handleDeleteLocal = () => {
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
console.log('表单数据:', formData.value)
|
||||
|
||||
// TODO: 在这里添加提交到后端的逻辑,比如调用 api.CrmMarketInformationAdd(formData.value)
|
||||
// 暂时只做校验提示
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
|
||||
@@ -263,8 +263,10 @@ let handleDeleteLocal = () => {
|
||||
title: '提交成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
|
||||
// TODO: 在这里添加提交到后端的逻辑,比如调用 api.CrmMarketInformationAdd(formData.value)
|
||||
// 暂时只做校验提示
|
||||
@@ -318,8 +320,10 @@ let handleDeleteLocal = () => {
|
||||
title: '删除成功',
|
||||
icon: 'success'
|
||||
})
|
||||
uni.$emit('refreshMarketOpportunityList')
|
||||
uni.navigateBack(1)
|
||||
uni.$emit('refreshMarketList');
|
||||
setTimeout(() => {
|
||||
uni.navigateBack(1);
|
||||
}, 1500);
|
||||
} catch (err) {
|
||||
console.log('表单验证失败:', err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user