yangan
2025-02-11 8edf190dd8755446613da55e0730c4aeabf60890
pages/driver-page/driver-index/bill-of-lading-details/originInfo/originInfo.vue
@@ -95,7 +95,8 @@
<script>
   import combinedTitle from '@/components/combined-title/combined-title.vue'
   import BigNumber from "bignumber.js"
   import { BaseUrl } from '@/api/publicInterface.js'
   import { BaseUrl } from '@/api/publicInterface.js';
   import {mapMutations} from 'vuex';
   export default {
      components: {
         combinedTitle
@@ -120,6 +121,7 @@
            sendDate: '',
            deptId: '',
            filedId: '',
            coalName:'',
            isSpecial: null
         }
      },
@@ -135,11 +137,13 @@
         this.sendDate = params.sendDate || ''
         this.deptId = params.deptId || ''
         this.filedId = params.filedId || ''
         this.coalName = params.coalName;
         this.isSpecial = Number(params.isSpecial)
         console.log(params.isSpecial, typeof params.isSpecial);
         this.getTakeCoal()
      },
      methods: {
            ...mapMutations(['changeisUploadimg']),
         getTakeCoal() {
            uni.showLoading({
               title: '加载中'
@@ -220,7 +224,7 @@
         },
         directAppointment() {
            uni.navigateTo({
               url: `/pages/driver-page/appointment/appointment?takeCoalId=${this.orderPlanId}&filedId=${this.filedId}&deptId=${this.deptId}&sendDate=${this.sendDate}`
               url: `/pages/driver-page/appointment/appointment?takeCoalId=${this.orderPlanId}&filedId=${this.filedId}&deptId=${this.deptId}&sendDate=${this.sendDate}&coalName=${this.coalName}`
            });
         },
         submitOriginInfo() {