|
|
|
@ -375,15 +375,12 @@ |
|
|
|
labelColor='#fff' |
|
|
|
:bottomBorder='false'> |
|
|
|
<view class="input-title" style="margin-right:14rpx;"> |
|
|
|
<fui-input |
|
|
|
:borderBottom="false" |
|
|
|
:padding="[0]" |
|
|
|
placeholder="点击填写" |
|
|
|
v-model="formData.distance" |
|
|
|
backgroundColor="#434544" |
|
|
|
size="26" |
|
|
|
color="#fff" |
|
|
|
></fui-input> |
|
|
|
<view |
|
|
|
class="input-title" |
|
|
|
style="margin-right:14rpx;" |
|
|
|
@click="openCicker(`distance`)"> |
|
|
|
{{ (formData.distance) ? picker_config.distance.text : '点击选择' }} |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</fui-form-item> |
|
|
|
<!--沟通备注--> |
|
|
|
@ -721,7 +718,12 @@ export default { |
|
|
|
decision_maker:{ |
|
|
|
text:'', |
|
|
|
options:[], |
|
|
|
} |
|
|
|
}, |
|
|
|
//距离 |
|
|
|
distance:{ |
|
|
|
text:'', |
|
|
|
options:[], |
|
|
|
}, |
|
|
|
},//选择器选项配置 |
|
|
|
|
|
|
|
// 年月日选择组件 |
|
|
|
@ -772,6 +774,7 @@ export default { |
|
|
|
await this.getDict('cognitive_idea')//获取字典-认知理念 |
|
|
|
await this.getDict('status')//获取字典-客户状态 |
|
|
|
await this.getDict('decision_maker')//获取字典-决策人 |
|
|
|
await this.getDict('distance')//获取字典-距离 |
|
|
|
// this.getStaffList()//获取人员列表 |
|
|
|
// this.getAreaTree()//获取地区树形结构 |
|
|
|
|
|
|
|
@ -841,6 +844,7 @@ export default { |
|
|
|
//六要素相关 |
|
|
|
this.picker_config.purchasing_power.text = sixSpeed.purchase_power_name || '点击选择'//购买力 |
|
|
|
this.picker_config.cognitive_idea.text = sixSpeed.concept_awareness_name || '点击选择'//认知理念 |
|
|
|
this.picker_config.distance.text = sixSpeed.distance || '点击选择'//距离 |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
@ -964,6 +968,10 @@ export default { |
|
|
|
case 'status': |
|
|
|
key = 'kh_status' |
|
|
|
break; |
|
|
|
//距离 |
|
|
|
case 'distance': |
|
|
|
key = 'distance' |
|
|
|
break; |
|
|
|
} |
|
|
|
if(!key){ |
|
|
|
return |
|
|
|
|