Browse Source

feat(market): 添加客户名称查重功能

- 在线索添加页面顶部增加搜索框
- 添加关键字输入和查重按钮
- 修改部分界面文案,提升用户体验
master
liutong 1 year ago
parent
commit
6e7e7ea72c
  1. 35
      pages/market/clue/add_clues.vue

35
pages/market/clue/add_clues.vue

@ -1,5 +1,11 @@
<template>
<view class="assemble">
<view class="search_box">
<view class="input_box">
<input type="text" v-model="keyword" placeholder="请输入客户名称">
</view>
<view class="btn">查重</view>
</view>
<view class="form-style">
<fui-form ref="form" top="0" :model="formData" :show="false">
@ -78,7 +84,7 @@
</view>
</view>
<view class="title" style="margin-top: 20rpx;">跟进任务</view>
<view class="title" style="margin-top: 20rpx;">附加信息</view>
<view class="input-style">
<fui-form-item label="创建下次跟进任务" labelWidth="250" labelSize='26' asterisk asteriskPosition="right" prop="mobile"
background='#434544' labelColor='#fff' :bottomBorder='false'>
@ -226,7 +232,11 @@
}, {
'value': 2,
'text': '微信'
}]
}],
keyword:'',//
}
},
methods: {
@ -336,6 +346,27 @@
</script>
<style lang="less" scoped>
.search_box{
padding: 20rpx 40rpx;
border-bottom: 1px solid #333333;
display: flex;
justify-content: space-between;
align-items: center;
.input_box{
width: 70%;
input{
width: 100%;
height: 60rpx;
color: #fff;
font-size: 28rpx;
}
}
.btn{
font-size: 28rpx;
color: #24BA9F;
}
}
.assemble {
width: 100%;
height: 100vh;

Loading…
Cancel
Save