From 69a1b3bf45738f048361ee4ccb6bdc64fce35720 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 12 三月 2025 11:31:46 +0800
Subject: [PATCH] 更新

---
 admin/src/views/platform/LogisticsRecord/leaveAuth.vue |  260 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 260 insertions(+), 0 deletions(-)

diff --git a/admin/src/views/platform/LogisticsRecord/leaveAuth.vue b/admin/src/views/platform/LogisticsRecord/leaveAuth.vue
new file mode 100644
index 0000000..b6691ab
--- /dev/null
+++ b/admin/src/views/platform/LogisticsRecord/leaveAuth.vue
@@ -0,0 +1,260 @@
+<template>
+  <div class="main_app">
+    <QueryForm v-model="filters" :query-form-config="queryFormConfig" @changeForm='changeForm' @handleQuery="getList(1)"
+      @clear="clear">
+      <template #fastdate>
+        <el-radio-group v-model="filters.fastdate" size="small" @input="changeRadio">
+          <el-radio-button label="0">褰撳ぉ</el-radio-button>
+          <el-radio-button label="6">杩�7澶�</el-radio-button>
+          <el-radio-button label="29">杩�30澶�</el-radio-button>
+        </el-radio-group>
+      </template>
+    </QueryForm>
+    <div class="pt16">
+      <el-button :loading="exLoading" @click="handleEx"
+        v-permissions="['business:platformjob:exportExcel']">瀵煎嚭</el-button>
+    </div>
+    <el-table :height="tableHeightNew" v-loading="loading" :data="list" stripe>
+      <el-table-column type="index" label="搴忓彿" width="70" show-overflow-tooltip />
+      <el-table-column prop="billCode" label="杩愬崟鍙�/鍚堝悓鍙�" min-width="100" show-overflow-tooltip>
+        <template v-slot="scope">
+          <span>{{ scope.row.billCode || scope.row.contractNum }}</span>
+        </template>
+      </el-table-column>
+      <!-- <el-table-column prop="totalNum" label="鎬讳綔涓氶噺(涓囨敮)" min-width="100" show-overflow-tooltip /> -->
+      <el-table-column prop="carCodeFront" label="杞︾墝鍙�" min-width="100" show-overflow-tooltip />
+      <el-table-column prop="carCodeBack" label="鐢靛瓙閿佺姸鎬�" min-width="100" show-overflow-tooltip>
+        <template v-slot="scope">
+          <span class="red" v-if="scope.row.billCode && scope.row.lockStatus == 0">鏈笂閿�</span>
+          <span class="red" v-if="scope.row.billCode && scope.row.lockStatus == 1">閮ㄥ垎涓婇攣</span>
+          <span v-if="scope.row.billCode && scope.row.lockStatus == 2">鍏ㄩ儴涓婇攣</span>
+          <span v-if="!scope.row.billCode">-</span>
+        </template>
+      </el-table-column>
+      <el-table-column prop="carrierName" label="杩愯緭鍏徃" min-width="100" show-overflow-tooltip />
+      <el-table-column prop="driverName" label="椹鹃┒鍛�" min-width="120" show-overflow-tooltip>
+        <template v-slot="scope">
+          <span>{{ scope.row.driverName }} {{ scope.row.drivierPhone }}</span>
+        </template>
+      </el-table-column>
+      <!-- <el-table-column prop="drivierPhone" label="鑱旂郴鏂瑰紡" min-width="100" show-overflow-tooltip /> -->
+
+      <el-table-column prop="doneDate" label="浣滀笟瀹屾垚鏃堕棿" min-width="150" show-overflow-tooltip />
+      <el-table-column prop="workTime" label="鎺堟潈鐘舵��" min-width="100" show-overflow-tooltip>
+        <template v-slot="scope">
+          <span v-if="scope.row.status == 9 || scope.row.status == 10">宸叉巿鏉�</span>
+          <span class="red" v-if="scope.row.status == 6">鏈巿鏉�</span>
+        </template>
+      </el-table-column>
+      <el-table-column prop="outUserName" label="鎿嶄綔鍛�" min-width="100" show-overflow-tooltip />
+      <el-table-column prop="outHkdate" label="鎿嶄綔鏃堕棿" min-width="150" show-overflow-tooltip />
+      <el-table-column prop="remark" label="澶囨敞" min-width="150" show-overflow-tooltip />
+      <el-table-column label="鎿嶄綔" align="center" fixed="right" min-width="100" show-overflow-tooltip>
+        <template v-slot="scope">
+          <el-button v-if="scope.row.status == 6" type="text" v-permissions="['business:platformbooks:detail']"
+            @click="handleAuth(scope.row)">绂诲洯鎺堟潈</el-button>
+          <span v-else>-</span>
+        </template>
+      </el-table-column>
+    </el-table>
+    <Pagination @size-change="handleSizeChange" @current-change="getList" :pagination="pagination" />
+    <!--  -->
+    <!--  -->
+    <DriverDetail v-if="isShowDriver" ref="DriverDetailRef" />
+  </div>
+</template>
+
+<script>
+import Pagination from '@/components/common/Pagination'
+import QueryForm from '@/components/common/QueryForm'
+import { platformJobPage, platformJobExport, platformPowerLevel } from '@/api'
+import { statusMap } from '../config'
+import DriverDetail from "@/views/task/driverDetail"
+import GlobalWindow from '@/components/common/GlobalWindow'
+import UploadFaceImg from '@/components/common/UploadFaceImg'
+import { Message } from 'element-ui'
+import dayjs from 'dayjs'
+import BaseComputHeight from "@/components/base/BaseComputHeight"
+export default {
+  extends: BaseComputHeight,
+  components: {
+    Pagination,
+    QueryForm,
+    DriverDetail,
+    GlobalWindow,
+    UploadFaceImg
+  },
+  data() {
+    return {
+      statusMap,
+      isShowDriver: false,
+      exLoading: false,
+      loading: false,
+      pagination: {
+        pageSize: 10,
+        page: 1,
+        total: 0
+      },
+      filters: {
+        selDate: [],
+        fastdate: 0,
+        beginDoneDateStart: '',
+        beginDoneDateEnd: ''
+      },
+      list: [],
+      queryFormConfig: {
+        formItems: [
+          {
+            filed: 'contractNum',
+            type: 'input',
+            label: '鍚堝悓鍙�'
+          },
+          {
+            filed: 'billCode',
+            type: 'input',
+            label: '杩愬崟鍙�'
+          },
+          {
+            filed: 'carCodeFront',
+            type: 'input',
+            label: '杞︾墝鍙�'
+          },
+          {
+            filed: 'driverName',
+            type: 'input',
+            label: '椹鹃┒鍛�'
+          },
+          {
+            filed: 'queryStatusForPower',
+            type: 'select',
+            label: '鎺堟潈鐘舵��',
+            options: [
+              { value: '9,10', label: '宸叉巿鏉�' },
+              { value: '6', label: '鏈巿鏉�' }
+            ]
+          },
+          // {
+          //   filed: 'selDate',
+          //   type: 'datetimerange',
+          //   label: '浣滀笟瀹屾垚鏃堕棿鎼滅储',
+          //   pickerOptions: {}
+          // },
+          {
+            filed1: 'beginDoneDateStart',
+            filed2: 'beginDoneDateEnd',
+            type: 'datetime',
+            label: '浣滀笟瀹屾垚鏃堕棿鎼滅储'
+          },
+          {
+            type: 'slot',
+            filed: 'fastdate',
+            label: ''
+          }
+        ],
+        online: true
+      },
+    }
+  },
+  created() {
+    this.changeRadio('0')
+    this.getList()
+  },
+  methods: {
+    changeRadio(day) {
+      const arr = [dayjs().subtract(day, 'day').format('YYYY-MM-DD') + ' 00:00:00', dayjs().format('YYYY-MM-DD') + ' 23:59:59']
+      this.filters.beginDoneDateStart = arr[0]
+      this.filters.beginDoneDateEnd = arr[1]
+      this.getList(1)
+    },
+    changeForm(str) {
+      if (str === 'selDate') {
+        this.$set(this.filters, 'fastdate', null)
+        this.getList()
+      }
+    },
+    getList(page) {
+      const { pagination, filters } = this
+      this.loading = true
+      platformJobPage({
+        model: {
+          ...filters,
+          queryStatus: '6,9,10,2,3,4'
+        },
+        sorts: [{ direction: 'DESC', property: 'DONE_DATE' }],
+        capacity: pagination.pageSize,
+        page: page || pagination.page,
+      }).then(res => {
+        this.loading = false
+        this.list = res.records || []
+        this.list.forEach(item => {
+          item.inTypeTemp = item.inType == 0 ? '鏁存墭鐩�' : '浠剁儫'
+          item.taskOrigin = 'WMS鑾峰彇'
+        })
+        this.pagination.total = res.total || 0
+      }, () => {
+        this.loading = false
+      })
+    },
+    handleAuth(row) {
+      this.$prompt('澶囨敞', '绂诲洯鎺堟潈', {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+      }).then(({ value }) => {
+        platformPowerLevel({ jobId: row.id, remark: value }).then(res => {
+          Message.success('绂诲洯鎺堟潈鎴愬姛')
+          this.getList()
+        })
+      })
+    },
+    handleEx() {
+      this.$dialog.exportConfirm('纭瀵煎嚭鍚楋紵')
+        .then(() => {
+          this.exLoading = true
+          platformJobExport({
+            page: this.pagination.page,
+            capacity: 1000000,
+            queryStatus: '6,9,10,2,3,4',
+            model: this.filters
+          })
+            .then(response => {
+              this.download(response)
+            })
+            .catch(e => {
+              this.$tip.apiFailed(e)
+            })
+            .finally(() => {
+              this.exLoading = false
+            })
+        })
+    },
+    clear() {
+      this.pagination.page = 1
+      this.filters = {
+        selDate: [],
+      }
+      this.getList()
+    },
+    handleDetail(row) {
+      this.isShowDriver = true
+      this.$nextTick(() => {
+        this.$refs.DriverDetailRef.id = row.id
+        this.$refs.DriverDetailRef.type = 6
+        this.$refs.DriverDetailRef.getDetail()
+        this.$refs.DriverDetailRef.isShowModal = true
+      })
+    },
+    handleSizeChange(capacity) {
+      this.pagination.pageSize = capacity
+      this.getList(1)
+    }
+  }
+}
+</script>
+<style lang="scss" scoped>
+.param_title {
+  font-size: 18px;
+  font-weight: 600;
+  color: #000000;
+  margin-bottom: 15px;
+}
+</style>

--
Gitblit v1.9.3