|
|
@ -80,7 +80,7 @@ |
|
|
<view class="fui-list__item" style="display: flex;justify-content: flex-end;"> |
|
|
<view class="fui-list__item" style="display: flex;justify-content: flex-end;"> |
|
|
<fui-label> |
|
|
<fui-label> |
|
|
<view class="fui-align__center"> |
|
|
<view class="fui-align__center"> |
|
|
<fui-radio value="male" checked></fui-radio> |
|
|
<fui-radio value="male"></fui-radio> |
|
|
<text class="fui-text">男</text> |
|
|
<text class="fui-text">男</text> |
|
|
</view> |
|
|
</view> |
|
|
</fui-label> |
|
|
</fui-label> |
|
|
@ -101,13 +101,13 @@ |
|
|
<view class="fui-list__item" style="display: flex;justify-content: flex-end;"> |
|
|
<view class="fui-list__item" style="display: flex;justify-content: flex-end;"> |
|
|
<fui-label> |
|
|
<fui-label> |
|
|
<view class="fui-align__center"> |
|
|
<view class="fui-align__center"> |
|
|
<fui-radio :value="1" checked></fui-radio> |
|
|
<fui-radio value="1"></fui-radio> |
|
|
<text class="fui-text">是</text> |
|
|
<text class="fui-text">是</text> |
|
|
</view> |
|
|
</view> |
|
|
</fui-label> |
|
|
</fui-label> |
|
|
<fui-label :margin="['0','0','0','40rpx']"> |
|
|
<fui-label :margin="['0','0','0','40rpx']"> |
|
|
<view class="fui-align__center"> |
|
|
<view class="fui-align__center"> |
|
|
<fui-radio :value="0"></fui-radio> |
|
|
<fui-radio value="0"></fui-radio> |
|
|
<text class="fui-text">否</text> |
|
|
<text class="fui-text">否</text> |
|
|
</view> |
|
|
</view> |
|
|
</fui-label> |
|
|
</fui-label> |
|
|
@ -203,13 +203,13 @@ |
|
|
<view class="fui-list__item" style="display: flex;justify-content: flex-end;"> |
|
|
<view class="fui-list__item" style="display: flex;justify-content: flex-end;"> |
|
|
<fui-label> |
|
|
<fui-label> |
|
|
<view class="fui-align__center"> |
|
|
<view class="fui-align__center"> |
|
|
<fui-radio value="1" checked></fui-radio> |
|
|
<fui-radio value="1" :checked="formData.call_intent === '1'"></fui-radio> |
|
|
<text class="fui-text">是</text> |
|
|
<text class="fui-text">是</text> |
|
|
</view> |
|
|
</view> |
|
|
</fui-label> |
|
|
</fui-label> |
|
|
<fui-label :margin="['0','0','0','40rpx']"> |
|
|
<fui-label :margin="['0','0','0','40rpx']"> |
|
|
<view class="fui-align__center"> |
|
|
<view class="fui-align__center"> |
|
|
<fui-radio value="2"></fui-radio> |
|
|
<fui-radio value="2" :checked="formData.call_intent === '2'"></fui-radio> |
|
|
<text class="fui-text">否</text> |
|
|
<text class="fui-text">否</text> |
|
|
</view> |
|
|
</view> |
|
|
</fui-label> |
|
|
</fui-label> |
|
|
@ -221,7 +221,7 @@ |
|
|
<!-- 沟通备注 --> |
|
|
<!-- 沟通备注 --> |
|
|
<fui-form-item label="沟通备注" labelSize='26' prop="communication" background='#434544' labelColor='#fff' :bottomBorder='false'> |
|
|
<fui-form-item label="沟通备注" labelSize='26' prop="communication" background='#434544' labelColor='#fff' :bottomBorder='false'> |
|
|
<view class="input-title" style="margin-right:14rpx;"> |
|
|
<view class="input-title" style="margin-right:14rpx;"> |
|
|
<fui-textarea v-model="formData.communication" placeholder="点击填写" backgroundColor="#434544" size="26" color="#fff" :borderTop="false" :isCounter="true" :maxlength="500" :minHeight="250" :isAutoHeight="true"></fui-textarea> |
|
|
<fui-textarea v-model="formData.communication" placeholder="点击填写" backgroundColor="#434544" size="26" color="#fff" :borderTop="false" :isCounter="true" :maxlength="500" minHeight="250" :isAutoHeight="true"></fui-textarea> |
|
|
</view> |
|
|
</view> |
|
|
</fui-form-item> |
|
|
</fui-form-item> |
|
|
</view> |
|
|
</view> |
|
|
@ -350,11 +350,6 @@ |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import apiRoute from '@/api/apiRoute.js'; |
|
|
import apiRoute from '@/api/apiRoute.js'; |
|
|
import commonApi from '@/api/common.js'; |
|
|
|
|
|
import marketApi from '@/api/market.js'; |
|
|
|
|
|
import memberApi from '@/api/member.js'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
@ -393,7 +388,7 @@ |
|
|
first_visit_status: '', //一访情况 |
|
|
first_visit_status: '', //一访情况 |
|
|
second_visit_status: '', //二访情况 |
|
|
second_visit_status: '', //二访情况 |
|
|
efficacious:'1', |
|
|
efficacious:'1', |
|
|
call_intent: '', // 不设置默认值,让后端数据正常回显 |
|
|
call_intent: '2', // 不设置默认值,让后端数据正常回显 |
|
|
emotional_stickiness_score: '' // 情感粘度 |
|
|
emotional_stickiness_score: '' // 情感粘度 |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
@ -448,20 +443,20 @@ |
|
|
text: '', |
|
|
text: '', |
|
|
options: [], |
|
|
options: [], |
|
|
}, |
|
|
}, |
|
|
//是否加微信 |
|
|
// //是否加微信 |
|
|
call_intent: { |
|
|
// call_intent: { |
|
|
text: '', |
|
|
// text: '', |
|
|
options: [ |
|
|
// options: [ |
|
|
{ |
|
|
// { |
|
|
text:'是', |
|
|
// text:'是', |
|
|
value:'1' |
|
|
// value:'1' |
|
|
}, |
|
|
// }, |
|
|
{ |
|
|
// { |
|
|
text:'否', |
|
|
// text:'否', |
|
|
value:'2' |
|
|
// value:'2' |
|
|
} |
|
|
// } |
|
|
], |
|
|
// ], |
|
|
}, |
|
|
// }, |
|
|
//客户状态 |
|
|
//客户状态 |
|
|
status: { |
|
|
status: { |
|
|
text: '', |
|
|
text: '', |
|
|
@ -749,8 +744,8 @@ |
|
|
consultation_remark: sixSpeed.consultation_remark || '', // 面咨备注 |
|
|
consultation_remark: sixSpeed.consultation_remark || '', // 面咨备注 |
|
|
chasing_orders: sixSpeed.chasing_orders || '', // 追单标注 |
|
|
chasing_orders: sixSpeed.chasing_orders || '', // 追单标注 |
|
|
is_bm: sixSpeed.is_bm || 2, // 是否报名,默认未报名 |
|
|
is_bm: sixSpeed.is_bm || 2, // 是否报名,默认未报名 |
|
|
efficacious: sixSpeed.efficacious || '', |
|
|
efficacious: sixSpeed.efficacious+'' || '', |
|
|
call_intent: sixSpeed.call_intent || '', // 是否加微信 |
|
|
call_intent: sixSpeed.call_intent || '2', // 是否加微信 |
|
|
emotional_stickiness_score: sixSpeed.emotional_stickiness_score || '', // 情感粘度 |
|
|
emotional_stickiness_score: sixSpeed.emotional_stickiness_score || '', // 情感粘度 |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
@ -965,19 +960,11 @@ |
|
|
|
|
|
|
|
|
this.openDuplicateCheck() |
|
|
this.openDuplicateCheck() |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//性别选择器 |
|
|
//性别选择器 |
|
|
changeSex(e) { |
|
|
changeSex(e) { |
|
|
this.formData.gender = e.detail.value |
|
|
this.formData.gender = e.detail.value |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//切换tag列表 |
|
|
//切换tag列表 |
|
|
async segmented(e) { |
|
|
async segmented(e) { |
|
|
console.log(e) |
|
|
console.log(e) |
|
|
|