caojunjie 2 лет назад
Родитель
Сommit
2018856ddf

+ 17 - 0
src/api/warehouseBusiness/shipping.js

@@ -78,3 +78,20 @@ export function exportSeaprice(data) {
     params: data
   })
 }
+
+// 查询费用明细
+export function calculationDetails(data) {
+  return request({
+    url: '/warehouse/seaprice/calculateCost',
+    method: 'get',
+    params: data
+  })
+}
+// 查询费用明细
+export function changeSelectShippingFee(data) {
+  return request({
+    url: '/warehouse/seaprice/changeSelectShippingFee',
+    method: 'get',
+    params: data
+  })
+}

+ 3 - 3
src/views/warehouse/Shipping/AddOrUpdate.vue

@@ -93,6 +93,7 @@
               placeholder="选择有效期"
               size="small"
               style="width: 80%"
+              :clearable="false"
               value-format="timestamp"
               :disabled="formStatus"
             >
@@ -659,7 +660,7 @@ export default {
         fBillstatus: [{ required: true, message: " ", trigger: "blur" }],
         polId: [{ required: true, message: " ", trigger: "blur" }],
         podId: [{ required: true, message: " ", trigger: "blur" }],
-        fValiddate: [{ required: true, message: " ", trigger: "blur" }],
+        // fValiddate: [{ required: true, message: " ", trigger: "blur" }],
       },
       drag: false,
       tableDate: [
@@ -785,7 +786,6 @@ export default {
     });
     this.getDicts("data_billType").then((response) => {
       this.billTypeList = response.data;
-      console.log(this.billTypeList)
     });
     listCorpsList().then( response =>{
       this.fLineList = response.rows
@@ -794,7 +794,6 @@ export default {
       this.fBookagentList = response.rows
     })
     this.getDicts("data_status").then((response) => {
-      console.log(response.data)
       this.statusList = response.data;
     });
     // this.getDicts("port_start").then((response) => {
@@ -807,6 +806,7 @@ export default {
       response.rows.forEach(item=>item.fId = JSON.stringify(item.fId))
       this.podList = response.rows
     });
+    this.form.fValiddate = new Date()
     this.queryUser();
     this.getRow();
   },

Разница между файлами не показана из-за своего большого размера
+ 558 - 244
src/views/warehouse/Shipping/index.vue


Некоторые файлы не были показаны из-за большого количества измененных файлов