164 lines
4.0 KiB
Vue
164 lines
4.0 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<div class="titleBox">
|
||
|
<PageTitle title="公交路线管理" />
|
||
|
</div>
|
||
|
<!-- 搜索 -->
|
||
|
<div ref="searchBox">
|
||
|
<Search
|
||
|
:searchArr="searchConfiger"
|
||
|
@submit="onSearch"
|
||
|
:key="pageData.keyCount"
|
||
|
>
|
||
|
<!-- <template #defaultSlot>
|
||
|
<div>
|
||
|
<el-input-number v-model="queryFrom.xqy"></el-input-number>
|
||
|
<span class="ml10 mr10" style="color: #000">至</span>
|
||
|
<el-input-number v-model="queryFrom.dqy"></el-input-number>
|
||
|
</div>
|
||
|
</template> -->
|
||
|
</Search>
|
||
|
</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 #controls="{ row }">
|
||
|
<el-link type="primary" @click="addEdit('detail', row)">详情</el-link>
|
||
|
</template>
|
||
|
</MyTable>
|
||
|
<Pages
|
||
|
@changeNo="changeNo"
|
||
|
@changeSize="changeSize"
|
||
|
:tableHeight="pageData.tableHeight"
|
||
|
:pageConfiger="{
|
||
|
...pageData.pageConfiger,
|
||
|
total: pageData.total
|
||
|
}"
|
||
|
></Pages>
|
||
|
</div>
|
||
|
<!-- 详情 -->
|
||
|
<DetailForm ref="detailDiloag" title="公交线路详情" />
|
||
|
</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 { tbGjclXlxxselectPage } from "@/api/mosty-zhgj.js";
|
||
|
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||
|
const { proxy } = getCurrentInstance();
|
||
|
|
||
|
const detailDiloag = ref();
|
||
|
const searchBox = ref(); //搜索框
|
||
|
const searchConfiger = ref([
|
||
|
{
|
||
|
label: "行政区划",
|
||
|
prop: "xzqy",
|
||
|
placeholder: "行政区划",
|
||
|
showType: "input"
|
||
|
},
|
||
|
{
|
||
|
label: "公交线路起点站",
|
||
|
prop: "xlqdz",
|
||
|
placeholder: "公交线路起点站",
|
||
|
showType: "input"
|
||
|
},
|
||
|
{
|
||
|
label: "公交线路终点站",
|
||
|
prop: "xlzdz",
|
||
|
placeholder: "公交线路终点站",
|
||
|
showType: "input"
|
||
|
}
|
||
|
]);
|
||
|
|
||
|
const queryFrom = ref({});
|
||
|
const pageData = reactive({
|
||
|
tableData: [],
|
||
|
keyCount: 0,
|
||
|
tableConfiger: {
|
||
|
rowHieght: 61,
|
||
|
showSelectType: "null",
|
||
|
loading: false
|
||
|
},
|
||
|
total: 5,
|
||
|
pageConfiger: {
|
||
|
pageSize: 20,
|
||
|
pageCurrent: 1
|
||
|
},
|
||
|
controlsWidth: 200,
|
||
|
tableColumn: [
|
||
|
{ label: "公交线路名称", prop: "placeName" },
|
||
|
{ label: "公交线路起点站", prop: "operationStatus" },
|
||
|
{ label: "公交线路终点站", prop: "jurisdiction" },
|
||
|
{ label: "行政区划", prop: "legalPersonName" }
|
||
|
]
|
||
|
});
|
||
|
|
||
|
onMounted(() => {
|
||
|
getList();
|
||
|
tabHeightFn();
|
||
|
});
|
||
|
//选择类型
|
||
|
|
||
|
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 = () => {
|
||
|
pageData.tableConfiger.loading = true;
|
||
|
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||
|
tbGjclXlxxselectPage(data)
|
||
|
.then((res) => {
|
||
|
pageData.tableData = res.records;
|
||
|
pageData.total = res.total;
|
||
|
})
|
||
|
.finally(() => {
|
||
|
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>
|