|
|
@@ -143,10 +143,12 @@ Page({
|
|
|
value: res.data.uppictured
|
|
|
}, {
|
|
|
label: '分配状态',
|
|
|
- value: res.data.allocationstatus
|
|
|
+ value: res.data.allocationstatus,
|
|
|
+ style:`color:${this.data.sColors[res.data.allocationstatus]}`
|
|
|
}, {
|
|
|
label: '跟进状态',
|
|
|
- value: getApp().globalData.Language.getMapText(res.data.status)
|
|
|
+ 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))
|
|
|
|
|
|
@@ -170,10 +172,12 @@ Page({
|
|
|
value: res.data.leader && res.data.leader.length > 0 ? res.data.leader[0].name : ''
|
|
|
}, {
|
|
|
label: '分配状态',
|
|
|
- value: res.data.allocationstatus
|
|
|
+ value: res.data.allocationstatus,
|
|
|
+ style:`color:${this.data.sColors[res.data.allocationstatus]}`
|
|
|
}, {
|
|
|
label: '跟进状态',
|
|
|
- value: getApp().globalData.Language.getMapText(res.data.status)
|
|
|
+ value: getApp().globalData.Language.getMapText(res.data.status),
|
|
|
+ style:`color:${this.data.sColors[res.data.status]}`
|
|
|
}, {
|
|
|
label: '跟进次数',
|
|
|
value: res.data.followcount || '0'
|