You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

284 lines
6.2 KiB

<template>
<!-- 订货清单查询 -->
<el-container>
<el-header style="width: 100%">
<el-row>
<el-col :span="18">
<el-col :span="4">
<el-select v-model="request.dcCh" placeholder="船号" clearable>
<el-option
v-for="item in ShipNoList"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-col>
</el-col>
<el-col :span="6" style="text-align: right">
<el-button type="primary" @click="initList()"></el-button>
</el-col>
</el-row>
<el-row>
<el-col :span="18">
<el-col :span="4">
<el-select v-model="request.Zt" placeholder="状态" clearable>
<el-option
v-for="item in statusOptions"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-col>
</el-col>
</el-row>
</el-header>
<el-container style="padding-top: 10px">
<el-container>
<el-main>
<div class="mytable">
<vxe-grid
id="id"
ref="tableRef"
border
resizable
keep-source
:height="height"
:auto-resize="true"
:columns="tableColumn"
:data="list"
:custom-config="{ storage: true }"
highlight-hover-row
>
<template #dcCh_default="{ row }">
{{ row.dcCh }}
</template>
<template #Zt_default="{ row }">
<div v-for="(item, index) in statusOptions" :key="index">
<div v-if="row.zt === item.value">{{ item.label }}</div>
</div>
</template>
</vxe-grid>
</div>
</el-main>
</el-container>
</el-container>
</el-container>
</template>
<script>
import { getList } from "@/api/jhzx/dhqdCX";
export default {
name: "dhqdCX",
data() {
return {
request: {
dcCh: "",
Zt: "",
},
list: [],
height: "500px",
tableColumn: [
{ type: "seq", width: 60, title: "序号" },
{
field: "dcCh",
title: "船号",
slots: { default: "dcCh_default" },
minWidth: "70",
},
{
field: "qdh",
title: "订货清单号",
minWidth: "80",
},
{
field: "qc",
title: "期次",
minWidth: "70",
},
{
field: "wpxh",
title: " 材质",
minWidth: "70",
},
{
field: "thickness",
title: "厚度mm",
minWidth: "70",
},
{
field: "width",
title: "宽度mm",
minWidth: "70",
},
{
field: "length",
title: "长度mm",
minWidth: "70",
},
{
field: "weight",
title: "重量吨/张",
minWidth: "70",
},
{
field: "sjsl",
title: "设计数量",
minWidth: "70",
},
{
field: "yl",
title: "裕量",
minWidth: "70",
},
{
field: "zsl",
title: "总数量",
minWidth: "70",
},
{
field: "zzl",
title: "总重量",
minWidth: "70",
},
{
field: "lksl",
title: "利库数量",
minWidth: "70",
},
{
field: "lkzl",
title: "利库重量",
minWidth: "70",
},
{
field: "sdzs",
title: "实订数量",
minWidth: "70",
},
{
field: "sdzl",
title: "实订重量",
minWidth: "70",
},
{
field: "Zt",
title: "状态",
slots: { default: "Zt_default" },
minWidth: "50",
},
],
statusOptions: [
{
value: "0",
label: "编辑",
},
{
value: "1",
label: "提交",
},
{
value: "2",
label: "审核",
},
],
fileList: [],
ShipNoList: []
};
},
created() {
window.addEventListener("resize", this.getHeight);
this.getHeight();
this.initList();
},
methods: {
// 获取列表接口(船号)
initList() {
let params = {
Zt: this.request.Zt,
dcCh: "",
};
if (this.ShipNoList.length > 0 && this.request.dcCh) {
params.dcCh = this.ShipNoList[this.request.dcCh - 1].label;
} else {
params.dcCh = "";
}
getList(params).then((res) => {
this.list = res.data;
var arrList = [];
if (this.list.length > 0) {
this.list.forEach((item, index) => {
arrList.push(item.dcCh);
this.ShipNoList = []
Array.from(new Set(arrList)).forEach((em, eindex) => {
this.ShipNoList.push({
label: em,
value: eindex + 1,
});
});
});
}
});
},
getHeight() {
this.height = window.innerHeight - 160;
},
},
};
</script>
<style lang="scss" scoped>
.el-header {
margin: 0;
padding: 5px 0;
height: auto;
}
.el-container {
padding: 0;
margin: 0;
}
.el-main {
padding: 0;
}
.el-col {
padding: 0;
}
.el-aside {
background: #fff;
padding: 0;
}
.el-container {
padding: 0;
}
.el-row {
margin-bottom: 5px;
}
.el-row:last-child {
margin-bottom: 0;
}
.tableStyles {
background: #0a76a4;
}
.my-dropdown {
width: 450px;
height: 250px;
background-color: #fff;
border: 1px solid #dcdfe6;
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
font-size: 12px;
}
::v-deep .mytable .vxe-input {
display: flex !important;
}
.upload-demo {
display: inline-flex;
margin-right: 10px;
}
::v-deep .el-upload-list {
display: none !important;
}
</style>