208 lines
5.7 KiB
Vue
208 lines
5.7 KiB
Vue
<template>
|
|
<div>
|
|
<div class="titleBox">
|
|
<PageTitle :title="['库房管理','库区管理']" v-model:active="active" @change="changeHead"></PageTitle>
|
|
</div>
|
|
<!-- 搜索 -->
|
|
<div ref="searchBox">
|
|
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount" />
|
|
</div>
|
|
<!-- 表格 -->
|
|
<div class="tabBox">
|
|
<MyTable
|
|
:tableData="pageData.tableData"
|
|
:tableColumn="pageData.tableColumn"
|
|
:tableHeight="pageData.tableHeight"
|
|
:key="pageData.keyCount"
|
|
:tableConfiger="pageData.tableConfiger"
|
|
:controlsWidth="pageData.controlsWidth"
|
|
@chooseData="chooseData"
|
|
>
|
|
<!-- 事故照片 -->
|
|
<template #accidentPhoto="{ row }">
|
|
<el-image
|
|
style="width: 50px; height: 50px"
|
|
:src="row.accidentPhoto"
|
|
:preview-src-list="[row.accidentPhoto]"
|
|
>
|
|
</el-image>
|
|
</template>
|
|
<!-- 操作 -->
|
|
<template #controls="{ row }">
|
|
<el-button size="small" type="primary" link @click="addEdit('edit', row)">库房使用信息</el-button>
|
|
<el-button size="small" type="primary" link @click="addEdit('detail', row)">详情</el-button>
|
|
</template>
|
|
</MyTable>
|
|
<Pages
|
|
@changeNo="changeNo"
|
|
@changeSize="changeSize"
|
|
:tableHeight="pageData.tableHeight"
|
|
:pageConfiger="{
|
|
...pageData.pageConfiger,
|
|
total: pageData.total
|
|
}"
|
|
></Pages>
|
|
</div>
|
|
<!-- 详情 -->
|
|
<DetailForm ref="detailDiloag" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
|
import MyTable from "@/components/aboutTable/MyTable.vue";
|
|
import Pages from "@/components/aboutTable/Pages.vue";
|
|
import Search from "@/components/aboutTable/Search.vue";
|
|
import DetailForm from "./components/detailForm.vue";
|
|
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
|
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
|
const { proxy } = getCurrentInstance();
|
|
const detailDiloag = ref();
|
|
const searchBox = ref(); //搜索框
|
|
const queryFrom = ref({});
|
|
const active = ref(0);
|
|
const searchConfiger = ref([
|
|
{
|
|
label: "库房名称",
|
|
prop: "kfmc",
|
|
placeholder: "请输入库房名称",
|
|
showType: "input"
|
|
},
|
|
{
|
|
label: "库房类型",
|
|
prop: "kflx",
|
|
placeholder: "请选择库房类型",
|
|
showType: "select"
|
|
},
|
|
{
|
|
label: "核定容量",
|
|
prop: "hdrl",
|
|
placeholder: "请输入核定容量",
|
|
showType: "input"
|
|
}
|
|
]);
|
|
|
|
const pageData = reactive({
|
|
tableData: [
|
|
{
|
|
index: 1,
|
|
kfmc: "xxxx单位",
|
|
kflx: "",
|
|
hdrl: "",
|
|
},
|
|
],
|
|
keyCount: 0,
|
|
tableConfiger: {
|
|
rowHieght: 61,
|
|
showSelectType: "null",
|
|
loading: false
|
|
},
|
|
total: 5,
|
|
pageConfiger: {
|
|
pageSize: 20,
|
|
pageCurrent: 1
|
|
},
|
|
controlsWidth: 220,
|
|
tableColumn: [
|
|
{ label: "单位名称", prop: "kfmc" },
|
|
{ label: "库房类型", prop: "kflx" },
|
|
{ label: "核定容量", prop: "hdrl" },
|
|
]
|
|
});
|
|
|
|
onMounted(() => {
|
|
getList();
|
|
tabHeightFn();
|
|
});
|
|
|
|
const changeHead = (val) => {
|
|
active.value = val;
|
|
console.log(val,'============');
|
|
pageData.keyCount++;
|
|
switch (val) {
|
|
case 0:
|
|
searchConfiger.value = [
|
|
{label: "库房名称",prop: "kfmc",placeholder: "请输入库房名称",showType: "input"},
|
|
{ label: "库房类型", prop: "kflx", placeholder: "请选择库房类型", showType: "select" },
|
|
{ label: "核定容量", prop: "hdrl", placeholder: "请输入核定容量", showType: "input" }
|
|
]
|
|
pageData.tableData = [{ index: 1, kfmc: "xxxx单位", kflx: "", hdrl: "", }]
|
|
pageData.tableColumn = [
|
|
{ label: "单位名称", prop: "kfmc" },
|
|
{ label: "库房类型", prop: "kflx" },
|
|
{ label: "核定容量", prop: "hdrl" },
|
|
]
|
|
break ;
|
|
case 1:
|
|
searchConfiger.value = [
|
|
{label: "库区名称",prop: "kqmc",placeholder: "请输入库房名称",showType: "input"},
|
|
{ label: "库类型", prop: "kqlx", placeholder: "请选择库房类型", showType: "select" },
|
|
{ label: "是否在用", prop: "hdrl", placeholder: "请输入sfzy", showType: "input" }
|
|
]
|
|
pageData.tableData = [{ index: 1, kfmc: "xxxx单位", kqlx: "11", sfzy: "11", }]
|
|
pageData.tableColumn = [
|
|
{ label: "单区名称", prop: "kqmc" },
|
|
{ label: "库区类型", prop: "kqlx" },
|
|
{ label: "核定是否在用", prop: "sfzy" },
|
|
]
|
|
break ;
|
|
}
|
|
|
|
};
|
|
|
|
//选择类型
|
|
const handleType = (val) => {
|
|
pageData.keyCount++;
|
|
pageData.pageConfiger.pageCurrent = 1;
|
|
getList();
|
|
};
|
|
// 搜索
|
|
const onSearch = (val) => {
|
|
queryFrom.value = { ...val };
|
|
pageData.pageConfiger.pageCurrent = 1;
|
|
getList();
|
|
};
|
|
|
|
const changeNo = (val) => {
|
|
pageData.pageConfiger.pageNum = val;
|
|
getList();
|
|
};
|
|
const changeSize = (val) => {
|
|
pageData.pageConfiger.pageSize = val;
|
|
getList();
|
|
};
|
|
|
|
// 获取列表
|
|
const getList = (val) => {
|
|
// pageData.tableConfiger.loading = true;
|
|
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
|
// let url = '/mosty-lzcj/tbDwMbkf/queryList';
|
|
// qcckPost(data,url).then(res=>{
|
|
// pageData.tableData = res.records || [];
|
|
// pageData.total = res.total;
|
|
// pageData.tableConfiger.loading = false;
|
|
// }).catch(()=>{ pageData.tableConfiger.loading = false; })
|
|
};
|
|
|
|
|
|
// 详情
|
|
const addEdit = (type, row) => {
|
|
detailDiloag.value.init(type, row);
|
|
};
|
|
|
|
// 表格高度计算
|
|
const tabHeightFn = () => {
|
|
pageData.tableHeight =
|
|
window.innerHeight - searchBox.value.offsetHeight - 250;
|
|
window.onresize = function () {
|
|
tabHeightFn();
|
|
};
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.el-loading-mask {
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
}
|
|
</style>
|
|
|