fill.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view>
  3. <u-popup :show="show" @close="$emit('close')" :round="10" closeable>
  4. <view class="title"> 填写快递信息 </view>
  5. <view class="content">
  6. <view class="_label" @click="openSelect">
  7. <view class="name">快递公司</view>
  8. <u--input
  9. placeholder="请选择快递公司"
  10. border="none"
  11. v-model="expressName"
  12. inputAlign="right"
  13. @change="searchExpress"
  14. ></u--input>
  15. </view>
  16. <view class="_label">
  17. <view class="name">快递单号</view>
  18. <u--input
  19. placeholder="请输入内容"
  20. border="none"
  21. v-model="expressNum"
  22. inputAlign="right"
  23. ></u--input>
  24. </view>
  25. <SelectExpress
  26. :show="nameShow"
  27. :filterList="filterList"
  28. @selected="selected"
  29. />
  30. </view>
  31. <button class="btn" @click="$emit('close')">立即保存</button>
  32. </u-popup>
  33. </view>
  34. </template>
  35. <script>
  36. import SelectExpress from "../../components/selectExpress.vue";
  37. export default {
  38. components: { SelectExpress },
  39. props: {
  40. show: {
  41. typeof: Boolean,
  42. default: false,
  43. },
  44. },
  45. name: "fill",
  46. data() {
  47. return {
  48. expressName: "",
  49. expressNum: "",
  50. expressNameList: [], //快递公司
  51. nameShow: false,
  52. filterList: [],
  53. };
  54. },
  55. methods: {
  56. //过滤搜索结果
  57. searchExpress(e) {
  58. this.nameShow = true;
  59. this.filterList = this.expressNameList
  60. .filter((item) => item.name.includes(e))
  61. .map((item) => item);
  62. },
  63. //获取选中的快递公司
  64. selected(value) {
  65. this.expressName = value.name;
  66. this.nameShow = false;
  67. },
  68. //打开下拉
  69. openSelect() {
  70. this.nameShow = true;
  71. },
  72. getExpressNameList() {
  73. uni.$u.http.get(`/api/express-company`).then((res) => {
  74. this.expressNameList = res;
  75. this.filterList = res;
  76. });
  77. },
  78. },
  79. mounted() {
  80. this.getExpressNameList();
  81. },
  82. };
  83. </script>
  84. <style lang="scss" scoped>
  85. .title {
  86. height: 100rpx;
  87. text-align: center;
  88. line-height: 100rpx;
  89. font-size: 36rpx;
  90. color: rgba(34, 34, 34, 1);
  91. font-weight: 600;
  92. }
  93. .content {
  94. padding: 0 32rpx;
  95. margin-bottom: 126rpx;
  96. position: relative;
  97. ._label {
  98. display: flex;
  99. justify-content: space-around;
  100. align-items: center;
  101. height: 100rpx;
  102. margin-top: 16rpx 24rpx;
  103. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  104. .name {
  105. color: rgba(85, 85, 85, 1);
  106. font-size: 30rpx;
  107. }
  108. }
  109. }
  110. .btn {
  111. background-color: #f83224;
  112. color: #fff;
  113. border-radius: 44rpx;
  114. margin: 0 auto 50rpx;
  115. width: 90%;
  116. }
  117. </style>