| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- isLeader: false, //是否为负责人
- tabsActive: 0, //tabs 选中项
- sat_orderclueid: "",
- detail: '',
- siteShow: false,
- sColors: getApp().globalData.sColors,
- },
- onLoad(options) {
- getApp().globalData.Language.getLanguagePackage(this, '线索详情');
- const appAuth = wx.getStorageSync('auth').worderclue_public;
- let tabsList = [{
- label: "详细信息",
- icon: "icon-tabxiangxixinxi1"
- }, {
- label: "跟进记录",
- icon: "icon-tabgenjinjilu"
- }, {
- label: "线索来源",
- icon: "icon-tabxiansuo",
- model: "#Clue"
- }, {
- label: "联系人",
- icon: "icon-tablianxiren",
- model: "#Contacts"
- }, {
- label: "操作",
- icon: "icon-tabcaozuojilu1"
- }]
- if (appAuth.isdatafollowup) tabsList.push({
- label: "跟进动态",
- icon: "icon-tabgenjinjilu"
- })
- if (appAuth.istask) tabsList.push({
- label: "任务",
- icon: "icon-tabrenwu",
- model: "#Work"
- })
- tabsList.push({
- label: "附件",
- icon: "icon-tabfujian1",
- model: "#Files"
- })
- this.setData({
- sat_orderclueid: options.sat_orderclueid || options.id,
- isAdmin: appAuth.options.some(v => v == "admin"), //是否具有管理权限
- tabsList,
- appAuth
- });
- this.getDetail();
- },
- getDetail() {
- _Http.basic({
- "classname": "webmanage.saletool.orderclue.publicclue.PublicClue",
- "method": "selectDetail",
- "version": 1,
- "content": {
- "nocache": true,
- "sat_orderclueid": this.data.sat_orderclueid
- },
- }).then(res => {
- console.log("线索详情", res)
- if (res.code != '1') return wx.showToast({
- title: res.msg,
- icon: "none"
- });
- let list1 = [{
- label: "医院名称",
- value: res.data.enterprisename_customer
- }, {
- label: "联系人",
- value: res.data.name
- }, {
- label: "联系角色",
- value: res.data.contactsrole
- }, {
- label: "手机号/座机号码",
- value: res.data.phonenumber
- }, {
- label: "微信",
- value: res.data.wechatnum
- }, {
- label: "省市县",
- value: res.data.province ? res.data.province + res.data.city + res.data.county : ''
- }, {
- label: "地址",
- value: res.data.address
- }, {
- label: "项目名称",
- value: res.data.projectname
- }, {
- label: "项目规模",
- value: res.data.scale ? res.data.scale + res.data.unitname : ""
- }, {
- label: "总投资额(万元)",
- value: res.data.totalinvestment
- }, {
- label: "造价(万元)",
- value: res.data.costofconstruction
- }, {
- label: "预计开工时间",
- value: res.data.begdate_due
- }, {
- label: "预计完工时间",
- value: res.data.enddate_due
- }, {
- label: "市场活动",
- value: res.data.campaign_name
- }, {
- label: "领域",
- value: res.data.tradefield
- }, {
- label: "设计院",
- value: res.data.institute
- }, {
- label: "设计师",
- value: res.data.designer
- }, {
- label: "关联项目",
- value: res.data.projectname1
- }, {
- label: "来源",
- value: res.data.cluesource
- }, {
- label: "线索概况",
- value: res.data.notes
- }, {
- label: '所属业务员',
- value: res.data.salename
- }, {
- label: '负责人',
- value: res.data.leader && res.data.leader.length > 0 ? res.data.leader[0].name : ''
- }, {
- label: '上图员',
- value: res.data.uppictured
- }, {
- label: '分配状态',
- value: res.data.allocationstatus,
- style: `color:${this.data.sColors[res.data.allocationstatus]}`
- }, {
- label: '跟进状态',
- value: getApp().globalData.Language.getMapText(res.data.status),
- style: `color:${this.data.sColors[res.data.status]}`
- }];
- if (wx.getStorageSync('userMsg').siteid == 'HY') list1 = list1.filter(v => !["项目预算(万元)", "总投资额(万元)", "造价(万元)"].includes(v.label))
- this.setData({
- isLeader: res.data.createuserid == wx.getStorageSync('userMsg').userid,
- detail: res.data,
- briefs: [{
- label: "联系人",
- value: res.data.name
- }, {
- label: "手机号/座机号码",
- value: res.data.phonenumber
- }, {
- label: "市场活动",
- value: res.data.campaign_name
- }, {
- label: "领域",
- value: res.data.tradefield
- }, {
- label: '负责人',
- value: res.data.leader && res.data.leader.length > 0 ? res.data.leader[0].name : ''
- },
- {
- label: '分配状态',
- value: res.data.allocationstatus,
- style: `color:${this.data.sColors[res.data.allocationstatus]}`
- },
- {
- label: '跟进状态',
- value: getApp().globalData.Language.getMapText(res.data.status),
- style: `color:${this.data.sColors[res.data.status]}`
- },
- {
- label: '跟进次数',
- value: res.data.followcount || '0'
- },
- ],
- list1,
- list2: [{
- label: "创建人",
- value: res.data.createBy
- }, {
- label: "创建时间",
- value: res.data.createDate
- }, {
- label: "分配人",
- value: res.data.assignedBy
- }, {
- label: "分配时间",
- value: res.data.assignedDate
- }, {
- label: "最近跟进人",
- value: res.data.followBy
- }, {
- label: "最近跟进时间",
- value: res.data.followDate
- }, {
- label: "最近编辑人",
- value: res.data.editBy
- }, {
- label: "最近编辑时间",
- value: res.data.editDate
- }, {
- label: "无效原因",
- value: res.data.invalidreason
- }, {
- label: "作废原因",
- value: res.data.deletereason
- }, {
- label: "跟进次数",
- value: res.data.followcount
- }]
- });
- /* 更新列表中状态 */
- let page = getCurrentPages().find(v => v.__route__ == 'packageA/publicClue/index');
- if (page) {
- let index = page.data.list.findIndex(v => v.sat_orderclueid == res.data.sat_orderclueid);
- if (index != -1) page.setData({
- [`list[${index}].status`]: res.data.status
- })
- }
- this.setTabbarList(res.data.status)
- if (this.data.appAuth.isdatatag) this.getTags();
- if (this.data.appAuth.isdatateam) this.getGroup();
- this.partialRenewal();
- })
- },
- setTabbarList(status) {
- let tabbarList = [];
- if (this.data.isAdmin) {
- if (this.data.detail.isprivate == 0 && this.data.detail.allocationstatus == '待分配') tabbarList.push({
- icon: "color-genghuanfuzeren",
- label: "分配"
- })
- tabbarList.push({
- icon: "icon-dibu-jieshu",
- label: "删除"
- })
- tabbarList.unshift({
- icon: "color-bianji",
- label: "编辑"
- })
- }
- if (status == '已过期' && wx.getStorageSync('auth').worderclue_public.options.some(v => v == "recover")) tabbarList.unshift({
- icon: "icon-dibu-chehui",
- label: "恢复"
- })
- if (wx.getStorageSync('auth').worderclue_public.options.some(v => v == "shiftSite")) {
- tabbarList.unshift({
- icon: "icon-CRM",
- label: "转站点"
- })
- this.setData({
- siteShow: true
- })
- }
- this.setData({
- tabbarList
- })
- },
- //tabs 切换
- tabsChange({
- detail
- }) {
- this.setData({
- tabsActive: detail
- });
- this.partialRenewal();
- }, //更新标签
- getTags() {
- if (this.data.appAuth.isdatatag) this.selectComponent("#Tags").getTags();
- }, //更新团队成员
- getGroup() {
- if (this.data.appAuth.isdatateam) this.selectComponent("#Group").getList();
- },
- //局部数据更新 tabs
- partialRenewal(init = false) {
- let id = this.data.detail.sat_orderclueid,
- item = this.data.tabsList[this.data.tabsActive]
- let model = item.model;
- let name = item.label;
- if (!model) switch (name) {
- case "任务":
- model = "#Work"
- break;
- case "跟进记录":
- model = "#follow"
- break;
- case "线索来源":
- model = "#Clue"
- break;
- case "操作":
- model = "#Record"
- break;
- case "跟进动态":
- model = "#Trace"
- break;
- case "附件":
- model = "#Files"
- break;
- };
- if (model) {
- // 确定好模块ID total = null 是第一次加载 加载数据
- // init是新增或修改需要清数据
- let Component = this.selectComponent(model);
- console.log("Component", Component)
- const {
- total,
- pageNumber,
- pageTotal
- } = Component.data.content;
- if (total == null || init) {
- Component.getList(id, init);
- } else if (pageNumber <= pageTotal) {
- Component.getList(id, false);
- } else {
- //用来判断 在搜索页面修改,与tabs选项不一致 但是切换到该选项 重置数据
- }
- }
- },
- onReachBottom() {
- this.partialRenewal();
- },
- //详情按钮回调
- tabbarOnClick({
- detail
- }) {
- let data = this.data.detail,
- that = this;
- switch (detail.label) {
- case "编辑":
- wx.navigateTo({
- url: `/packageA/publicClue/addClue?rowData=${JSON.stringify(this.data.detail)}`,
- })
- break;
- case "分配":
- wx.navigateTo({
- url: `/packageA/publicClue/distribution?data=${JSON.stringify(this.data.detail)}`,
- })
- break;
- case "恢复":
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确定恢复该线索'),
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: (res) => {
- if (res.confirm) _Http.basic({
- "id": "20230907142004",
- "content": {
- "sat_orderclueid": data.sat_orderclueid
- }
- }).then(res => {
- console.log("恢复线索", res)
- wx.showToast({
- title: res.code == '1' ? "恢复成功" : res.msg,
- icon: "none"
- });
- that.getDetail();
- })
- }
- })
- break;
- case "转站点":
- that.selectComponent("#ShiftSite").showSite()
- break;
- case "删除":
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确认删除该线索?'),
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: ({
- confirm
- }) => {
- if (confirm) _Http.basic({
- "id": 20221101100502,
- "content": {
- "sat_orderclueids": [this.data.detail.sat_orderclueid]
- }
- }).then(res => {
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('操作成功') : res.msg,
- icon: "none"
- });
- setTimeout(() => {
- wx.navigateBack()
- getCurrentPages().forEach(v => {
- if (v.__route__ == "packageA/publicClue/index") {
- v.getList(true)
- }
- })
- }, 300)
- })
- }
- })
- break;
- case "撤回":
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确认撤回该线索?'),
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: ({
- confirm
- }) => {
- if (confirm) _Http.basic({
- classname: "webmanage.saletool.orderclue.publicclue.PublicClue",
- method: "revoke",
- "content": {
- "sat_orderclueid": this.data.detail.sat_orderclueid
- }
- }).then(res => {
- setTimeout(() => {
- wx.showToast({
- title: res.code == '1' ? getApp().globalData.Language.getMapText('操作成功') : res.msg,
- icon: "none"
- });
- }, 1000)
- if (res.code == '1') this.getDetail()
- })
- }
- })
- break;
- }
- },
- onUnload() {
- const page = getCurrentPages().find(v => v.__route__ == 'packageA/publicClue/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: '20221101094402',
- content
- }).then(res => {
- console.log("更新公海线索列表", res);
- if (res.code == '1') {
- page.setData({
- list: res.data,
- "content.total": res.total
- })
- page.getTags()
- }
- })
- }
- })
|