| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726 |
- const _Http = getApp().globalData.http,
- currency = require("../../utils/currency"),
- CNY = value => currency(value, {
- symbol: "¥",
- precision: 2
- }).format();
- Page({
- data: {
- loading: true,
- isLeader: false, //是否为负责人
- tabsActive: 1, //tabs 选中项
- sa_customersid: 0,
- modeList: [{
- name: '潜在',
- },
- {
- name: '合作中'
- },
- {
- name: '已终止'
- }
- ],
- changeMode: false
- },
- onLoad(options) {
- const appAuth = wx.getStorageSync('auth').wCustomer;
- let tabsList = [{
- label: "详细信息",
- icon: "icon-tabxiangxixinxi1"
- }, {
- label: "联系人",
- icon: "icon-tablianxiren",
- model: "#Contacts"
- }, {
- label: "客户地址",
- icon: "icon-tabdizhi",
- model: "#Address"
- }, {
- label: "开票信息",
- icon: "icon-tabbaojiadan",
- model: "#Financing"
- }, {
- label: "项目商机",
- icon: "icon-tabxiangmu",
- model: "#Project"
- }, {
- label: "报价单",
- icon: "icon-tabbaojiadan",
- model: "#Offers"
- }, {
- label: "合同",
- icon: "icon-tabhetong",
- model: "#Contract"
- }, {
- label: "账户余额",
- icon: "icon-tabkaipiaoxinxi",
- model: "#Account"
- }, {
- label: "银行卡信息",
- icon: "icon-tabchanpin",
- model: "#Bankcard"
- }, {
- label: "关联线索",
- icon: "icon-tabxiansuo",
- model: "#Clue"
- }];
- if (appAuth.isdatafollowup) tabsList.unshift({
- label: "跟进动态",
- icon: "icon-tabgenjinjilu",
- model: "#Trace"
- })
- if (appAuth.istask) tabsList.push({
- label: "任务",
- icon: "icon-tabrenwu",
- model: "#Work"
- })
- tabsList = tabsList.concat([{
- label: "附件",
- icon: "icon-tabfujian1",
- model: "#Files"
- }, {
- label: "操作",
- icon: "icon-tabcaozuojilu1",
- model: "#Record"
- }])
- this.setData({
- sa_customersid: options.id,
- isAdmin: appAuth.options.some(v => v == "admin"), //是否具有管理权限
- options: appAuth.options, //权限列表
- tabsList,
- appAuth
- })
- this.getDetail();
- getApp().globalData.Language.getLanguagePackage(this, '客户详情');
- },
- modeSelect(e) {
- let {
- sa_customersid,
- status
- } = this.data.detail,
- that = this;
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确定将合作模式更改为') + `:“${e.detail.name}”`,
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: (res) => {
- if (res.cancel) that.modeCancel()
- if (res.confirm) _Http.basic({
- "id": 20221010164602,
- "content": {
- "sa_customersids": [sa_customersid],
- "status": e.detail.name
- }
- }).then(res => {
- console.log("更改合作状态", res)
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('修改成功') : res.msg,
- icon: "none"
- })
- if (res.code == '1') that.getDetail()
- that.modeCancel()
- })
- }
- })
- },
- modeCancel() {
- this.setData({
- changeMode: false
- })
- },
- //详情按钮回调
- tabbarOnClick({
- detail
- }) {
- let data = this.data.detail,
- that = this;
- switch (detail.label) {
- case "更改合作状态":
- this.setData({
- changeMode: true
- })
- break;
- case "退回":
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确定将') + `${data.enterprisename}` + getApp().globalData.Language.getMapText('退回到公海客户'),
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: (res) => {
- console.log(data)
- if (res.confirm) _Http.basic({
- "id": 20221014102602,
- "content": {
- "sa_customerpoolid": data.sa_customerpoolid_source,
- "sa_customersid": data.sa_customersid
- }
- }).then(res => {
- console.log("公海线索退回", res)
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('退回成功') : res.msg,
- icon: "none"
- });
- if (res.code == '1') setTimeout(() => {
- let page = getCurrentPages().find(v => v.__route__ == 'packageA/setclient/index');
- if (page) page.setData({
- list: page.data.list.filter(v => v.sa_customersid != data.sa_customersid)
- });
- wx.redirectTo({
- url: '/packageA/publicCustomer/detail?id' + data.sa_customersid,
- })
- }, 300)
- })
- }
- });
- break;
- case "回收":
- wx.navigateTo({
- url: `/packageA/publicCustomer/pond/index?params=${JSON.stringify({
- "id": 20221206195102,
- "content": {
- nocache:true,
- "where": {
- "condition": ""
- }
- }
- })}`,
- })
- getApp().globalData.handleSelect = this.handleTransfer.bind(this);
- break;
- case "跟进":
- this.selectComponent("#Trace").insetr();
- break;
- case "编辑":
- data.parentid = data.superiorenterprisename ? [data.superiorenterprisename, [data.parentid]] : "";
- wx.navigateTo({
- url: `/packageA/setclient/addAndEditor?data=${JSON.stringify(data)}`,
- })
- break;
- case "作废":
- wx.navigateTo({
- url: `/packageA/setclient/delete?item=${JSON.stringify({
- "sa_customersids": [this.data.detail.sa_customersid],
- datastatus: 1, //(0:正常;1:作废;2:锁定)
- })}`,
- })
- break;
- case "暂缓":
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('暂缓的客户将不计入客户相关数据统计,是否确定暂缓该客户?'),
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: that.data.language['确定'] || '确定暂缓',
- complete: (res) => {
- console.log(data)
- if (res.confirm) _Http.basic({
- "id": 20221010164602,
- "content": {
- "sa_customersids": [data.sa_customersid],
- "status": '暂缓'
- }
- }).then(res => {
- console.log("客户暂缓", res)
- getApp().globalData.Language.showToast(res.code == '1' ? "已将客户暂缓" : res.msg)
- that.getDetail();
- })
- }
- });
- break;
- case "取消暂缓":
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确定取消暂缓并继续跟进客户'),
- cancelText: getApp().globalData.Language.getMapText('关闭'),
- confirmText: that.data.language['确定'] || '确定取消',
- complete: (res) => {
- console.log(data)
- if (res.confirm) _Http.basic({
- "id": 20221010164602,
- "content": {
- "sa_customersids": [data.sa_customersid],
- "status": '潜在'
- }
- }).then(res => {
- console.log("客户取消暂缓", res)
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('已取消暂缓') : res.msg,
- icon: "none"
- });
- getApp().globalData.Language.showToast(res.code == '1' ? "已取消暂缓" : res.msg)
- that.getDetail();
- })
- }
- });
- break;
- case "更换负责人":
- wx.navigateTo({
- url: `/pages/group/select?data=${JSON.stringify({
- ownertable:"sa_customers",
- ownerid:this.data.sa_customersid,
- })}&radio=true&principal=true`,
- })
- break;
- case "终止":
- wx.showModal({
- content: getApp().globalData.Language.getMapText('是否确定终止客户合作') + '?',
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: that.data.language['确定'] || '确定终止',
- complete: ({
- confirm
- }) => {
- if (confirm) _Http.basic({
- "id": 20221010164602,
- "content": {
- "sa_customersids": [this.data.sa_customersid],
- "status": "已终止"
- }
- }).then(res => {
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('已终止合作状态') : res.msg,
- icon: "none"
- });
- that.getDetail();
- })
- }
- })
- break;
- case "恢复":
- wx.showModal({
- content: getApp().globalData.Language.getMapText('是否确定恢复客户合作') + '?',
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: that.data.language['确定'] || '确定恢复',
- complete: ({
- confirm
- }) => {
- if (confirm) _Http.basic({
- "id": 20221010164602,
- "content": {
- "sa_customersids": [this.data.sa_customersid],
- "status": "潜在"
- }
- }).then(res => {
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('已恢复合作状态') : res.msg,
- icon: "none"
- });
- that.getDetail();
- })
- }
- })
- break;
- case "查看重复":
- _Http.basic({
- "id": 20221208172002,
- "content": {
- ...data,
- pageSize: 999
- }
- }).then(res => {
- console.log("查看重复", res)
- if (res.code != '1') return wx.showToast({
- title: res.msg,
- icon: "none"
- });
- if (res.data.length == 0) return wx.showToast({
- title: getApp().globalData.Language.getMapText('未查询到重复数据'),
- icon: "none"
- });
- this.setData({
- repetitionList: res.data,
- repetitionShow: true
- })
- })
- break;
- default:
- console.log(detail)
- break;
- }
- },
- /* 前去重复项详情 */
- toRepDetail(e) {
- const {
- item
- } = e.currentTarget.dataset;
- wx.navigateTo({
- url: '/packageA/setclient/detail?id=' + item.sa_customersid,
- })
- this.repClose()
- },
- /* 关闭查重 */
- repClose() {
- this.setData({
- repetitionShow: false
- })
- },
- /* 处理回收客户 */
- handleTransfer({
- value
- }) {
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确定将客户回收至') + `${value[0]}?`,
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: (res) => {
- if (res.confirm) _Http.basic({
- "id": 20221014165602,
- "content": {
- "sa_customerpoolid": value[1][0], //公海池id
- "sa_customersids": [this.data.detail.sa_customersid],
- "sa_customersid": this.data.detail.sa_customersid
- },
- }).then(res => {
- console.log("回收客户", res)
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('回收成功') : res.msg,
- icon: "none"
- });
- if (res.code == '1') setTimeout(() => {
- wx.navigateBack()
- let page = getCurrentPages().find(v => v.__route__ == 'packageA/setclient/index');
- if (page) page.setData({
- list: page.data.list.filter(v => v.sa_customersid != this.data.detail.sa_customersid)
- });
- wx.redirectTo({
- url: '/packageA/publicCustomer/detail?id=' + this.data.detail.sa_customersid,
- })
- }, 300)
- })
- }
- })
- },
- /* 更换负责人 */
- handelSubmit(arr) {
- const that = this;
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确认更换负责人'),
- complete: ({
- confirm
- }) => {
- if (confirm) wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否参与该数据的后续工作'),
- cancelText: getApp().globalData.Language.getMapText('不参与'),
- confirmText: getApp().globalData.Language.getMapText('参与'),
- complete: (s) => {
- _Http.basic({
- "id": 20220930103701,
- "content": {
- ownertable: "sa_customers",
- ownerid: that.data.sa_customersid,
- userid: arr[0],
- isaddoldleader: s.confirm ? 1 : 0
- }
- }).then(res => {
- console.log("更换负责人", res)
- if (res.code != '1') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- wx.showToast({
- title: getApp().globalData.Language.getMapText('更换成功'),
- icon: "none",
- mask: true
- });
- getCurrentPages().forEach(v => {
- if (['packageA/setclient/index'].includes(v.__route__)) v.getList(true)
- })
- setTimeout(() => {
- wx.navigateBack({
- delta: 2
- });
- }, 300)
- })
- }
- })
- }
- })
- },
- /* 获取详情 */
- getDetail() {
- /* 基本信息 */
- _Http.basic({
- "id": 20221012164302,
- "content": {
- sa_customersid: this.data.sa_customersid
- },
- }).then(res => {
- console.log("详情", res)
- if (res.code != '1') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- this.setPreview(res);
- this.setData({
- loading: false,
- detail: res.data,
- })
- //获取标签
- if (this.data.appAuth.isdatatag) this.getTags();
- if (this.data.appAuth.isdatateam) this.getGroup()
- this.setTabbar();
- this.partialRenewal();
- });
- },
- async setTabbar() {
- /* 底部功能 */
- let detail = this.data.detail,
- isAdmin = this.data.isAdmin,
- isLeader = detail.leader.some(some => some.userid == wx.getStorageSync('userMsg').userid),
- editdataleader = isLeader ? 1 : 0,
- tabbarList = [];
- if (this.data.appAuth.isdatafollowup && detail.status != '已终止') tabbarList.push({
- icon: "icon-genjin",
- label: "跟进"
- });
- if (!isLeader) {
- let res = await getApp().agentOrNot("sa_customers", this.data.sa_customersid),
- data = res.code == '1' ? res.data : {
- editable: 0,
- editdataleader: 0
- }
- if (this.data.appAuth.isdatateam) isLeader = this.selectComponent("#Group").data.editable == 1;
- if (!isLeader) isLeader = data.editable == 1;
- editdataleader = data.editdataleader;
- }
- //负责人或管理员基础功能
- if ((isLeader || isAdmin) && detail.status != '已终止') {
- tabbarList.push({
- icon: "icon-bianji",
- label: "编辑"
- })
- if (editdataleader) tabbarList.push({
- icon: "icon-zhuanyi",
- label: "更换负责人"
- })
- /* if (isLeader) tabbarList.push({
- icon: "icon-dibu-biangengchengjiaozhuangtai",
- label: "更改合作状态"
- }) */
- if (isLeader && this.data.options.includes('putOff') && detail.status != '已终止') tabbarList.push({
- icon: detail.status == '暂缓' ? "icon-quxiaozanhuan" : "icon-zanhuan",
- label: detail.status == '暂缓' ? "取消暂缓" : "暂缓"
- })
- }
- if (this.data.options.includes('Abort')) {
- if (detail.status == '已终止') {
- tabbarList.push({
- label: "恢复",
- icon: "icon-huifu1"
- })
- } else {
- tabbarList.push({
- label: "终止",
- icon: "icon-zhongzhi"
- })
- }
- }
- if (isLeader || isAdmin) tabbarList.push({
- icon: "icon-shanchu",
- label: "作废"
- })
- //来自公海
- if (detail.ispublic == 1) {
- //查询到回收公海客户权限
- if (this.data.options.some(v => v == 'recycle')) tabbarList.push({
- icon: "icon-dibu-chehui",
- label: "回收"
- })
- //负责人
- if (isLeader) tabbarList.push({
- icon: "icon-dibu-chehui",
- label: "退回"
- })
- }
- if (this.data.options.find(v => v == 'viewRepetition')) tabbarList.push({
- icon: "icon-a-shouyejingangquhehuoren",
- label: "查看重复"
- });
- this.setData({
- tabbarList,
- isLeader
- })
- },
- setPreview(res) {
- /* 摘要信息 */
- let briefs = [{
- label: "客户类型",
- value: res.data.type
- }, {
- label: "企业等级",
- value: res.data.grade
- }, {
- label: "上级企业",
- value: res.data.superiorenterprisename
- }, {
- label: "负责人",
- value: res.data.leader.map(v => v.name) || ""
- }, {
- label: "归属经销商",
- value: res.data.agentname
- }, {
- label: '营销费用',
- value: CNY(res.data.salesfeesamount || '0')
- }];
- /* 基本信息 */
- let list1 = [{
- label: "客户名称",
- value: res.data.enterprisename
- }, {
- label: "客户编号",
- value: res.data.sa_customersid
- }, {
- label: "erp编号",
- value: res.data.erpagentnum
- }, {
- label: "企业简称",
- value: res.data.abbreviation
- }, {
- label: "客户类型",
- value: res.data.type
- }, {
- label: "企业等级",
- value: res.data.grade
- }, {
- label: "客户分类",
- value: res.data.customergrade
- }, {
- label: "客户行业",
- value: res.data.industry
- }, {
- label: "税号",
- value: res.data.taxno
- }, {
- label: "法人",
- value: res.data.contact
- }, {
- label: "电话",
- value: res.data.telephone
- }, {
- label: "省市县",
- value: res.data.province ? [res.data.province, res.data.city, res.data.county] : ""
- }, {
- label: "详细地址",
- value: res.data.address
- }, {
- label: "上级企业",
- value: res.data.superiorenterprisename
- }, {
- label: "客户来源",
- value: res.data.source
- }, {
- label: "来源公海",
- value: res.data.sourcepoolname
- }, {
- label: "成交状态",
- value: res.data.tradingstatus,
- style:`color:${this.data.sColors[res.data.tradingstatus]}`
- }, {
- label: "成交次数",
- value: res.data.contact_signnum
- }, {
- label: "合作状态",
- value: getApp().globalData.Language.getMapText(res.data.status),
- style:`color:${this.data.sColors[res.data.status]}`
- }, {
- label: "负责人",
- value: res.data.leader.map(v => v.name) || ""
- }, {
- label: "部门",
- value: res.data.leader.length ? res.data.leader[0].depname : ""
- }, {
- label: "归属经销商",
- value: res.data.agentname
- }];
- /* 系统信息 */
- let list2 = [{
- label: "创建人",
- value: res.data.createby
- }, {
- label: "创建时间",
- value: res.data.createdate
- }, {
- label: "最近编辑人",
- value: res.data.changeby
- }, {
- label: "最近编辑时间",
- value: res.data.changedate
- }, {
- label: "作废原因",
- value: res.data.deletereason
- }, {
- label: "转手次数",
- value: res.data.leader[0] ? res.data.leader[0].leadernum : 0
- }];
- this.setData({
- briefs,
- list1,
- list2
- });
- },
- //tabs 切换
- tabsChange({
- detail
- }) {
- this.setData({
- tabsActive: detail
- });
- this.partialRenewal();
- },
- //局部数据更新 tabs
- partialRenewal(init = false) {
- let model = this.data.tabsList[this.data.tabsActive].model;
- if (model) {
- let Component = this.selectComponent(model),
- {
- total,
- pageNumber,
- pageTotal
- } = Component.data.content,
- id = model == "#Clue" ? this.data.detail.sa_customersid : this.data.detail.sys_enterpriseid;
- if (total == null || init) {
- Component.getList(id, init);
- } else if (pageNumber <= pageTotal) {
- Component.getList(id, false);
- }
- }
- },
- //更新标签
- getTags() {
- this.selectComponent("#Tags").getTags()
- },
- //更新团队成员
- getGroup() {
- this.selectComponent("#Group").getList().then(this.setTabbarList)
- },
- onReachBottom() {
- this.partialRenewal();
- },
- onUnload() {
- const page = getCurrentPages().find(v => v.__route__ == 'packageA/setclient/index');
- if (!page) return;
- let content = JSON.parse(JSON.stringify(page.data.content));
- content.pageSize = (content.pageNumber - 1) * content.pageSize;
- content.pageNumber = 1;
- _Http.basic({
- id: '20221012164402',
- content
- }).then(res => {
- console.log("更新客户列表", res);
- if (res.code == '1') {
- page.setData({
- list: res.data,
- "content.total": res.total
- })
- page.getTags()
- }
- })
- }
- })
|