pages/driver-page/driver-index/SelfDelivery/SelfDelivery.vue
@@ -42,30 +42,32 @@
            </view>
         </view>
      </view>
      <!-- 选择发运时间 -->
      <view class="send-date">
         <view class="send-date_label">
            发运时间
      <view class="bottom-block">
         <!-- 选择发运时间 -->
         <view class="send-date">
            <view class="send-date_label">
               发运时间
            </view>
            <uni-datetime-picker type="date"
               :clear-icon="false"
               v-model="sendDate"
               :start="sendDateStart"
               :end="sendDateEnd" />
         </view>
         <uni-datetime-picker type="date"
            :clear-icon="false"
            v-model="sendDate"
            :start="sendDateStart"
            :end="sendDateEnd" />
      </view>
      <!-- 客户名称 -->
      <view class="customer-name">
         <view class="customer-name_label">
            选择客户
         </view>
         <view class="customer-name_block"
            @click="selfDeliver">
            <input class="customer-name_block-input"
               type="text"
               placeholder="请选择客户"
               v-model="customerName"
               @focus="selfDeliver"
               ref="selectCustomer" />
         <!-- 客户名称 -->
         <view class="customer-name">
            <view class="customer-name_label">
               选择客户
            </view>
            <view class="customer-name_block"
               @click="selfDeliver">
               <input class="customer-name_block-input"
                  type="text"
                  placeholder="请选择客户"
                  v-model="customerName"
                  @focus="selfDeliver"
                  ref="selectCustomer" />
            </view>
         </view>
      </view>
      <!-- 提交 -->
@@ -209,7 +211,10 @@
                     text: v.productName
                  }
               })
               this.productName = this.productNameList[0].value
               this.productName = Array.isArray(this.productNameList) && this.productNameList.lenght !== 0 ?
                  this.productNameList[0].value : ''
            }).then(() => {
               this.getShipToList()
            })
         },
         // 根据部门获取煤场名称
@@ -235,9 +240,6 @@
         },
         selfDeliver() {
            this.selfDeliverShow = true
            this.$nextTick(() => {
               this.$refs.selectCustomer.blur()
            })
         },
         selfDeliverClose() {
            this.selfDeliverShow = false
@@ -309,22 +311,16 @@
      align-items: center;
   }
   .slot-content {
      width: 100%;
      height: vww(150);
      @include flex;
      flex-direction: column;
   }
   .main {
      width: 100%;
      color: #232323;
      .product-info {
         width: 96%;
         height: vww(250);
         margin: vww(8);
         margin-top: vww(20);
         background: #ffffff;
         box-shadow: 0rpx 0rpx 14rpx 0rpx rgba(73, 120, 240, 0.14), 0rpx 7rpx 45rpx 0rpx rgba(73, 120, 240, 0.12);
         border-radius: 20rpx;
         position: relative;
@@ -361,9 +357,12 @@
         }
      }
      .bottom-block {
         height: vww(200);
      }
      .send-date,
      .customer-name {
         height: vww(40);
         margin: vww(40) vww(20);
         position: relative;