1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="chooseCustomer-content">
- <view class="flex justify_between align_center search-title">
- <text class="search-label">客户名称</text>
- <view class="search-btn">
- <text>没有搜索到?</text>
- <text>点击</text>
- <text>新增客户</text>
- </view>
- </view>
- <!-- 客户搜索框 -->
- <customerSearch></customerSearch>
- </view>
- </template>
- <script>
- import customerSearch from '@/pages/common/customerSearch.vue'
- export default{
- components:{customerSearch},
- data(){
- return{
-
- }
- }
- }
- </script>
- <style lang="scss">
- .chooseCustomer-content{
- width: 100%;
- background-color: #fff;
- padding:0 30upx;
- .search-title{
- padding: 20upx 0;
- .search-label{
- font-size: 30upx;
- font-weight: 600;
- }
- .search-btn{
- font-size: 28upx;
- color: #999;
- text:last-child{
- display: inline-block;
- padding-left: 10upx;
- color:#007AFF
- }
- }
- }
- }
- </style>
|