123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645 |
- // 运单上报
- <template>
- <div class="center">
- <div class="center_css">
- <div class="top_css">
- <el-row>
- <el-col :span="14">
- <el-button type="primary" @click="postponeSubmission" style="margin-right:10px">暂缓上报</el-button>
- <el-button type="primary" @click="batchSubmission" style="margin-right:10px">批量上报</el-button>
- <el-date-picker v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
- range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
- </el-date-picker>
- </el-col>
- <el-col :span="10">
- <div class="screen">
- <el-input class='find' v-model="searchkeyWord" placeholder="可按订单号、姓名、账号查找" @keyup.enter.native="find"
- clearable @change="find" />
- <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
- src="../../../public/img/sousuo.png"></el-button><span class="count_css">共{{ deptBudgetTotal
- }}条</span>
- </div>
- </el-col>
- </el-row>
- <el-row>
- <el-col>
- <div class="search_btn">
- <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item search_block" @click="searchBtn(1)">
- 待上报
- </div>
- <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
- 审核中
- </div>
- <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
- 已通过
- </div>
- <div :class="search == 4 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(4)">
- 暂缓中
- </div>
- <div :class="search == '' ? 'search' : 'searchNo'" class="search_item" @click="searchBtn('')">
- 全部
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- <el-table @selection-change="handleSelectionChange" :data="tableData"
- style="width: 98%; margin: 0 auto; border-radius: 10px" height="58vh" border highlight-current-row>
- <el-table-column type="selection" width="55" :selectable="selectInit">
- </el-table-column>
- <el-table-column type="index" label="序号" width="50">
- <template scope="scope">
- <span v-if="scope.$index < 9">0{{ scope.$index + 1 }}</span>
- <span v-else>{{ scope.$index + 1 }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="orderNo" label="订单编号" min-width="155" />
- <el-table-column prop="cargoOwner" label="发运人" />
- <el-table-column prop="cargoOwnerPhone" label="发运人账号" />
- <el-table-column prop="driverName" label="承运人" />
- <el-table-column prop="driverPhone" label="承运人账号" />
- <el-table-column prop="orderEndDate" label="订单完结时间" min-width="110" />
- <el-table-column prop="escalationStatus" label="状态">
- <template slot-scope="scope1">
- <span>{{ scope1.row.escalationStatus }}</span>
- <el-tooltip class="item" effect="dark" :content="scope1.row.escalationFailureReason" placement="top"
- v-if="scope1.row.escalationStatus == '未通过'">
- <img src="../../../public/img/wenhao.png" alt="" class="ask_css" />
- </el-tooltip>
- </template>
- </el-table-column>
- <el-table-column label="操作" min-width="200">
- <template slot-scope="scope">
- <el-link target="_blank" @click="look(scope.row)" type="primary" :underline="false">查看</el-link>
- <el-divider direction="vertical" />
- <el-link target="_blank" type="primary" :underline="false" @click="submission(scope.row)"
- :disabled="scope.row.escalationStatus != '未上报' && scope.row.escalationStatus != '未通过' && scope.row.escalationStatus != '暂缓中'">
- 上报</el-link>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <el-pagination :current-page="currentPage" style="text-align: center; margin-top: 10px"
- :page-size="deptCircularPage.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal"
- @size-change="handleSizeChange" @current-change="handleCurrentChange" />
- <el-drawer title="运单信息" :visible.sync="rightSee">
- <div class="right_css">
- <div class="right_item">订单编号:{{ orderData.orderNo }}</div>
- <div class="right_title">发货时间</div>
- <div class="right_item">{{ orderData.hyCarrierInfo.loadingDate }}</div>
- <div class="right_title" v-if="orderData.hyCarrierInfo.unloadingDate">收货时间</div>
- <div class="right_item">{{ orderData.hyCarrierInfo.unloadingDate }}</div>
- <div class="right_title">托运方</div>
- <div class="right_item">{{ orderData.cargoOwner ? orderData.cargoOwner : orderData.compName }}</div>
- <div class="right_title">托运方证件号或信用代码</div>
- <div class="right_item" v-if="orderData.cargoOwnerIdCard">{{ orderData.cargoOwnerIdCard }}</div>
- <div class="right_item" v-else>{{ orderData.hyCompanyInfo ? orderData.hyCompanyInfo.unifiedSocialCreditCode :
- "暂无"
- }}
- </div>
- <div class="right_title">收货联系人</div>
- <div class="right_item">{{ orderData.publishTaskInfo.receiver }}</div>
- <div class="right_title">收货方证件号或信用代码</div>
- <div class="right_item">{{ orderData.publishTaskInfo.receiverIdcard ? orderData.publishTaskInfo.receiverIdcard :
- orderData.publishTaskInfo.receiverCreditCode
- }}</div>
- <div class="right_title">运费</div>
- <div class="right_item">{{ orderData.freight }}</div>
- <div class="right_title">车牌号</div>
- <div class="right_item">{{ orderData.carNumber }}</div>
- <div class="right_title">车牌颜色</div>
- <div class="right_item">{{ orderData.carNumberColour }}</div>
- <div class="right_title">发货地址</div>
- <div class="right_item">
- {{ orderData.sendPrivate }}{{ orderData.sendCity }}{{ orderData.sendArea }}{{
- orderData.sendDetailedAddress
- }}
- </div>
- <div class="right_title">收货地址</div>
- <div class="right_item">
- {{ orderData.unloadPrivate }}{{ orderData.unloadCity }}{{ orderData.unloadArea }}{{
- orderData.unloadDetailedAddress
- }}
- </div>
- <div class="right_title">司机姓名</div>
- <div class="right_item">{{ orderData.driverName }}</div>
- <div class="right_title">司机身份证号</div>
- <div class="right_item">{{ orderData.driverIdCard }}</div>
- <div class="right_title">货物类别</div>
- <div class="right_item">{{ orderData.goodsType }}</div>
- <div class="right_title">货名</div>
- <div class="right_item">{{ orderData.goodsName }}</div>
- <div class="right_title">重量(kg)</div>
- <div class="right_item">{{ orderData.hyCarrierInfo.unloadingWeight }}</div>
- <div class="right_btn">
- <el-button @click="rightSee = false">关闭</el-button>
- </div>
- </div>
- </el-drawer>
- </div>
- </template>
- <script>
- import {
- waybillGetList,
- waybillGetInfo,
- deferEscalation,
- batchEscalation
- } from '@/api/parkReportManagement'
- export default {
- data() {
- return {
- tableData: [],
- // 分页
- searchkeyWord: '',
- currentPage: 1,
- pageSize: 10,
- deptBudgetTotal: 0,
- deptCircularPage: {},
- search: '',
- modification: [],
- orderData: {
- publishTaskInfo: {},
- hyCarrierInfo: {},
- hyCargoOwnerInfo: {},
- hyCompanyInfo: {}
- },
- value1: '',
- status: '',
- disabled: false,
- rejectInfo: false,
- //侧边查看
- rightSee: false,
- //筛选时间
- startDate: '',
- endDate: '',
- }
- },
- mounted() {
- this.getList()
- },
- methods: {
- handleSelectionChange(val) {
- this.modification = val;
- },
- dateChange(e) {
- this.startDate = e[0]
- this.endDate = e[1]
- this.getList()
- },
- //上报
- submission(row) {
- this.modification.push(row)
- this.batchSubmission()
- },
- //暂缓上报
- postponeSubmission() {
- if (this.modification.length > 0) {
- this.$confirm('确定暂缓上报选中的条目?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- deferEscalation({ orderInfoList: this.modification })
- .then(response => {
- if (response.code == 200) {
- this.$notify({
- title: '成功',
- message: '操作成功!',
- type: 'success'
- })
- this.modification = []
- this.getList()
- }
- })
- })
- } else {
- this.$message.error('至少选中一条可上报的条目!')
- }
- },
- //批量上报
- batchSubmission() {
- var that = this
- if (this.modification.length > 0) {
- this.$confirm('确定批量上报运单信息?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- batchEscalation({ orderInfoList: this.modification })
- .then(response => {
- if (response.code == 200) {
- that.$notify({
- title: '成功',
- message: '上报成功!',
- type: 'success'
- })
- // this.modification =
- }
- that.getList()
- that.modification = []
- }).catch(() => {
- that.modification = []
- });
- })
- } else {
- this.$message.error('至少选中一条可上报的条目!')
- }
- },
- selectInit(row) {
- if (row.status == '审核中' || row.status == '已通过') {
- return false
- } else {
- return true
- }
- },
- getList() {
- this.listLoading = true;
- let _obj = {};
- _obj.currentPage = this.currentPage;
- _obj.pageSize = this.pageSize;
- _obj.searchKeyWord = this.searchkeyWord;
- _obj.searchType = this.search;
- _obj.startDate = this.startDate
- _obj.endDate = this.endDate
- waybillGetList(_obj)
- .then((response) => {
- this.tableData = response.data.records;
- for (let i = 0; i < this.tableData.length; i++) {
- this.tableData[i].iconShow = true;
- }
- this.deptBudgetTotal = response.data.total;
- this.listLoading = false;
- })
- .catch(() => {
- this.listLoading = false;
- });
- },
- searchBtn(num) {
- this.search = num;
- this.getList();
- },
- find() {
- this.currentPage = 1
- this.getList()
- },
- look(row) {
- this.loading = true
- this.rightSee = true
- waybillGetInfo({
- id: row.id
- }).then(response => {
- this.orderData = response.data
- this.listLoading = false
- })
- .catch(() => {
- this.listLoading = false
- })
- },
- handleSizeChange(val) {
- console.log(`每页 ${val} 条`)
- this.pageSize = val
- this.getList()
- },
- handleCurrentChange(val) {
- this.currentPage = val
- console.log(`当前页: ${val}`)
- this.getList()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .center {
- padding: 10px 20px;
- background: #f5f6f7;
- min-height: calc(100vh - 50px);
- .top_css {
- padding: 10px;
- .search_btn {
- height: 80px;
- background: linear-gradient(#fafbfb, #ffffff);
- display: flex;
- margin-top: 20px;
- .search_block {
- margin-left: 20px;
- }
- .search_item {
- text-align: center;
- font-size: 14px;
- font-weight: 600;
- line-height: 40px;
- width: 112px;
- height: 40px;
- background: #f7f8f9;
- cursor: pointer;
- margin-top: 30px;
- }
- .searchNo {
- color: #323233;
- }
- .search {
- color: #2f53eb;
- background: #ffffff;
- }
- }
- }
- .ask_css {
- position: absolute;
- margin: 3px 0 0 10px;
- }
- .center_css {
- background: #ffffff;
- border-radius: 1px;
- margin-top: 10px;
- padding-bottom: 10px;
- }
- .screen {
- display: flex;
- .search {
- width: 40px;
- height: 40px;
- background: #2f53eb;
- border-radius: 0px 2px 2px 0px;
- border: 1px solid #DCDFE6;
- margin-left: -1px;
- }
- .count_css {
- width: 80px;
- text-align: center;
- line-height: 40px;
- color: #666666;
- }
- }
- .el-button {
- padding: 10px 20px !important;
- }
- .center_css {
- ::v-deep .el-table th,
- ::v-deep .el-table td {
- text-align: center;
- }
- .fujian {
- font-size: 24px;
- color: #409eff;
- }
- .warning {
- font-size: 14px;
- color: #ed1d1d;
- }
- }
- }
- .el-button--primary {
- color: #FFF;
- background-color: #2f53eb;
- border-color: #2f53eb;
- }
- .car_css {
- width: 50%;
- display: inline-block;
- text-align: center;
- margin-top: 30px;
- position: relative;
- .status_css {
- background: #3AC602;
- width: 50px;
- height: 17px;
- position: absolute;
- top: 0px;
- right: 15px;
- border-radius: 3px;
- }
- .carno_css {
- padding: 1px 5px;
- background-color: #F5F6F7;
- color: #666666;
- border-radius: 12px;
- text-align: center;
- width: 100px;
- margin: 10px auto 0;
- }
- .carborder_css {
- border: 1px solid #F0F1F2;
- margin: 15px auto 0;
- width: 90%;
- }
- }
- .tips {
- color: #999999;
- font-size: 14px;
- }
- .car_item {
- width: 200px;
- height: 160px;
- border-radius: 5px;
- }
- .user {
- margin-bottom: 20px;
- .id_css {
- font-size: 14px;
- }
- .id_css,
- .name_css {
- margin: 5px 0;
- color: #0D0D0D;
- }
- .pay_name {
- color: #9D9D9D;
- font-size: 14px;
- }
- .name_css {
- font-size: 16px;
- }
- .user_item {
- margin: 25px 0;
- width: 450px;
- height: 300px;
- }
- .border_css {
- width: 100%;
- border: 1px solid #F0F1F2;
- }
- }
- ::v-deep .el-table--border .el-table__header th {
- background: #f7f8f9;
- }
- .btn_css {
- color: #409EFF;
- cursor: pointer
- }
- .btn_css1 {
- margin-left: -20px;
- }
- .sign {
- font-size: 14px;
- color: red;
- }
- .form_css {
- width: 100%;
- margin: 20px auto 20px;
- ::v-deep .el-checkbox {
- width: 40%;
- height: 30px;
- }
- // ::v-deep .el-dialog__body{
- // padding: 10px 20px;
- // }
- ::v-deep .el-dialog__title {
- font-size: 16px;
- }
- ::v-deep .el-textarea__inner {
- background: #F0F1F2;
- }
- .form_btn {
- text-align: right;
- margin-top: 10px;
- }
- }
- //发送信息
- .Info_css {
- .Info_title {
- color: #323233;
- font-size: 16px;
- }
- .Info_item {
- margin: 20px 0;
- }
- .Info_btn {
- text-align: right;
- margin-top: 10px;
- }
- }
- //附件
- .file {
- .fujian_css {
- width: 631px;
- display: flex;
- margin: 0 auto;
- text-align: center;
- line-height: 32px;
- border: 1px solid #F0F1F2;
- border-right: 0px;
- border-radius: 2px 0px 0px 2px;
- .fujian_item {
- cursor: pointer;
- width: 90px;
- height: 32px;
- border-right: 1px solid #F0F1F2;
- }
- .file_btn {
- color: #2F53EB;
- background-color: #CFDBFE;
- }
- }
- .file_img {
- width: 525px;
- height: 332px;
- margin: 20px auto;
- }
- .img_css {
- width: 525px;
- height: 332px;
- }
- .btn {
- width: 400px;
- margin: 0 auto;
- }
- }
- .right_css {
- // overflow-y: auto !important;
- // min-height: 1266px;
- padding: 0 20px;
- .right_title {
- color: #9D9D9D;
- font-size: 14px;
- margin-bottom: 4px;
- }
- .title_name {
- margin-bottom: 10px;
- }
- .right_item {
- color: #0D0D0D;
- font-size: 14px;
- margin-bottom: 10px;
- }
- .right_btn {
- text-align: center;
- margin: 10px 0;
- }
- .img_css {
- width: 100px;
- height: 80px;
- margin-right: 5px;
- }
- .right_img {
- width: 200px;
- height: 120px;
- margin-top: 10px;
- }
- }
- .find::v-deep input.el-input__inner {
- border-radius: 0;
- }
- ::v-deep .el-drawer.rtl {
- overflow: auto;
- }
- </style>
|