|
|
@@ -200,6 +200,7 @@ export default {
|
|
200
|
200
|
if (res.code == 200) {
|
|
201
|
201
|
uni.$u.toast('提交待跟进记录成功');
|
|
202
|
202
|
}
|
|
|
203
|
+ this.followUpNotes = '';
|
|
203
|
204
|
},
|
|
204
|
205
|
}
|
|
205
|
206
|
}
|
|
|
@@ -278,9 +279,9 @@ export default {
|
|
278
|
279
|
<view class="card-button isBusy" @click.stop="handleBtnClick('tag', item)">打标签</view>
|
|
279
|
280
|
</view>
|
|
280
|
281
|
|
|
281
|
|
- <view class="btnGroup" v-if="item && (item.status == '3')">
|
|
|
282
|
+ <!-- <view class="btnGroup" v-if="item && (item.status == '3')">
|
|
282
|
283
|
<view class="card-button share" @click.stop="handleBtnClick('share', item)">一键分享</view>
|
|
283
|
|
- </view>
|
|
|
284
|
+ </view> -->
|
|
284
|
285
|
|
|
285
|
286
|
<view class="btnGroup" v-if="item && (item.status == '4')">
|
|
286
|
287
|
<view class="card-button oneFollow" @click.stop="handleBtnClick('oneFollow', item)">待跟进
|
|
|
@@ -300,9 +301,9 @@ export default {
|
|
300
|
301
|
|
|
301
|
302
|
|
|
302
|
303
|
<!-- 打标签模态窗 -->
|
|
303
|
|
- <u-modal :show="tagModalVisible" title="选择标签" @confirm="confirmTag" @cancel="cancelTag">
|
|
|
304
|
+ <u-modal showCancelButton :show="tagModalVisible" title="选择标签" @confirm="confirmTag" @cancel="cancelTag">
|
|
304
|
305
|
<view class="slot-content">
|
|
305
|
|
- <u-checkbox-group v-model="currentTags" placement="column">
|
|
|
306
|
+ <u-checkbox-group class="tagCheckboxGroup" v-model="currentTags" placement="column">
|
|
306
|
307
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" v-for="(item, index) in tagList" :key="item.id"
|
|
307
|
308
|
:label="item.name" :name="item.id">
|
|
308
|
309
|
</u-checkbox>
|
|
|
@@ -310,12 +311,11 @@ export default {
|
|
310
|
311
|
</view>
|
|
311
|
312
|
</u-modal>
|
|
312
|
313
|
|
|
313
|
|
- <u-modal :show="followUpModelShow" :title="'填写跟进细节'" :showConfirmButton="false">
|
|
|
314
|
+ <u-modal showCancelButton :show="followUpModelShow" :title="'填写跟进细节'" @confirm="confirmFollowUp"
|
|
|
315
|
+ @cancel="followUpModelShow = false">
|
|
314
|
316
|
<view class="modal-content">
|
|
315
|
317
|
<u--textarea v-model="followUpNotes" placeholder="请输入情况" confirm-type="done"
|
|
316
|
318
|
style="width: 400rpx; margin-bottom: 30rpx;"></u--textarea>
|
|
317
|
|
-
|
|
318
|
|
- <u-button type="primary" size="large" @click="confirmFollowUp">确认</u-button>
|
|
319
|
319
|
</view>
|
|
320
|
320
|
</u-modal>
|
|
321
|
321
|
</view>
|
|
|
@@ -510,4 +510,14 @@ export default {
|
|
510
|
510
|
background-color: #EFF6FF;
|
|
511
|
511
|
color: #2563EB;
|
|
512
|
512
|
}
|
|
|
513
|
+
|
|
|
514
|
+.cancelBtn {
|
|
|
515
|
+ margin-top: 20rpx;
|
|
|
516
|
+}
|
|
|
517
|
+
|
|
|
518
|
+
|
|
|
519
|
+.tagCheckboxGroup {
|
|
|
520
|
+ display: grid;
|
|
|
521
|
+ grid-template-columns: repeat(2, 1fr);
|
|
|
522
|
+}
|
|
513
|
523
|
</style>
|