chooseCustomer.vue 946 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="chooseCustomer-content">
  3. <view class="flex justify_between align_center search-title">
  4. <text class="search-label">客户名称</text>
  5. <view class="search-btn">
  6. <text>没有搜索到?</text>
  7. <text>点击</text>
  8. <text>新增客户</text>
  9. </view>
  10. </view>
  11. <!-- 客户搜索框 -->
  12. <customerSearch></customerSearch>
  13. </view>
  14. </template>
  15. <script>
  16. import customerSearch from '@/pages/common/customerSearch.vue'
  17. export default{
  18. components:{customerSearch},
  19. data(){
  20. return{
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. .chooseCustomer-content{
  27. width: 100%;
  28. background-color: #fff;
  29. padding:0 30upx;
  30. .search-title{
  31. padding: 20upx 0;
  32. .search-label{
  33. font-size: 30upx;
  34. font-weight: 600;
  35. }
  36. .search-btn{
  37. font-size: 28upx;
  38. color: #999;
  39. text:last-child{
  40. display: inline-block;
  41. padding-left: 10upx;
  42. color:#007AFF
  43. }
  44. }
  45. }
  46. }
  47. </style>