|
|
|
@ -168,10 +168,10 @@
|
|
|
|
|
text |
|
|
|
|
icon="el-icon-view" |
|
|
|
|
@click="viewAbnormalLoading(slotProps.scope.row)" |
|
|
|
|
v-if="slotProps.scope.row.isHaveAbnormalPackage == '2'" |
|
|
|
|
|
|
|
|
|
>异常审核 |
|
|
|
|
</el-text> |
|
|
|
|
|
|
|
|
|
<!-- v-if="slotProps.scope.row.isHaveAbnormalPackage == '2'" --> |
|
|
|
|
|
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
@ -762,6 +762,79 @@
|
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
|
title="异常装车包件列表" |
|
|
|
|
v-model="abnormalBox" |
|
|
|
|
width="50%" |
|
|
|
|
:before-close="beforeClose" |
|
|
|
|
append-to-body |
|
|
|
|
> |
|
|
|
|
<el-table |
|
|
|
|
ref="table" |
|
|
|
|
v-loading="Abnormalloading" |
|
|
|
|
@selection-change="selectionChange" |
|
|
|
|
:data="wrapdata" |
|
|
|
|
:height="height" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:border="option.border" |
|
|
|
|
> |
|
|
|
|
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
|
|
|
|
<template v-for="(item, index) in wrapoption.column"> |
|
|
|
|
<!-- table字段 --> |
|
|
|
|
<el-table-column |
|
|
|
|
v-if="item.hide !== true" |
|
|
|
|
:prop="item.prop" |
|
|
|
|
:label="item.label" |
|
|
|
|
:show-overflow-tooltip="true" |
|
|
|
|
:width="item.width" |
|
|
|
|
:key="index" |
|
|
|
|
> |
|
|
|
|
<!-- :align="center"--> |
|
|
|
|
</el-table-column> |
|
|
|
|
</template> |
|
|
|
|
<el-table-column fixed="right" label="操作" width="100"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<el-button |
|
|
|
|
v-if="scope.row.auditingStatus === 1 || scope.row.auditingStatusName === '待审核'" |
|
|
|
|
@click="auditing(scope.row)" |
|
|
|
|
type="text" |
|
|
|
|
size="small" |
|
|
|
|
>审 核</el-button |
|
|
|
|
> |
|
|
|
|
<!-- <el-button type="text" size="small">编辑</el-button>--> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
<div style="width: 100%"> |
|
|
|
|
<el-button type="primary" @click="fastAuditing" style="margin-left: 40%">一键审批</el-button> |
|
|
|
|
<el-button type="primary" @click="this.abnormalBox = false">关闭</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- <div class="avue-crud__pagination" style="width: 100%">--> |
|
|
|
|
<!-- <!– 分页模块 –>--> |
|
|
|
|
<!-- <el-pagination--> |
|
|
|
|
<!-- background--> |
|
|
|
|
<!-- @size-change="wsizeChange"--> |
|
|
|
|
<!-- @current-change="wcurrentChange"--> |
|
|
|
|
<!-- :current-page="wpage.currentPage"--> |
|
|
|
|
<!-- :page-sizes="[30, 50, 80, 120]"--> |
|
|
|
|
<!-- :page-size="wpage.pageSize"--> |
|
|
|
|
<!-- layout="total, sizes, prev, pager, next, jumper"--> |
|
|
|
|
<!-- :total="wpage.total"--> |
|
|
|
|
<!-- >--> |
|
|
|
|
<!-- <!– :align="center"–>--> |
|
|
|
|
<!-- </el-pagination>--> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
<!-- 表单按钮 --> |
|
|
|
|
<!-- <template #footer>--> |
|
|
|
|
<!-- <span v-if="!view" class="dialog-footer">--> |
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit">提 交</el-button>--> |
|
|
|
|
<!-- <el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button>--> |
|
|
|
|
<!-- </span>--> |
|
|
|
|
<!-- </template>--> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</basic-container> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -825,7 +898,8 @@ export default {
|
|
|
|
|
dialogVisibleF: false, |
|
|
|
|
deliveryId: null, |
|
|
|
|
Routid: null, |
|
|
|
|
|
|
|
|
|
abnormalBox: false,//异常审核包件列表弹窗 |
|
|
|
|
Abnormalloading: false, //审核加载效果 |
|
|
|
|
TCloading: false, //提交按钮 |
|
|
|
|
TcForm: {}, //弹窗表单 |
|
|
|
|
// 上门照 |
|
|
|
@ -3570,6 +3644,28 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 异常审核函数 |
|
|
|
|
AbnormalreviewFn(row) { |
|
|
|
|
loadingAbnormalPackageListDetail(row.id).then(res => { |
|
|
|
|
this.wrapdata = res.data.data; |
|
|
|
|
console.log('res------------->', res.data.data); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
viewAbnormalLoading(scope) { |
|
|
|
|
const { row } = scope; |
|
|
|
|
console.log(scope, '异常审核'); |
|
|
|
|
this.abnormalReview = row; |
|
|
|
|
// this.title = '查看'; |
|
|
|
|
// this.view = true; |
|
|
|
|
this.abnormalBox = true; |
|
|
|
|
console.log('异常装车审核------------->', row); |
|
|
|
|
this.AbnormalreviewFn(this.abnormalReview); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async setTableHeight() { |
|
|
|
|
await this.$nextTick(); |
|
|
|
|
const tableNode = document.querySelectorAll('.tableNode'); |
|
|
|
|