|
@@ -12,7 +12,10 @@
|
|
|
<div class="status">正常</div>
|
|
|
</div>
|
|
|
<div class="station-status-search">
|
|
|
- <Search @clear="clear" @search="search" />
|
|
|
+ <div class="station-status-search flex-wrap">
|
|
|
+ <TBtnGroup @columnSet="columnSet" :groupSet="groupSet" />
|
|
|
+ <Search @clear="clear" @search="search" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="station-list flex-wrap">
|
|
@@ -33,13 +36,17 @@
|
|
|
<div class="station-table">
|
|
|
<Table height="calc(100vh - 540px)" :tableHeader="tableHeader" :tableData="tableData" />
|
|
|
</div>
|
|
|
+ <tableColumnSet :dialogVisible="cloumnFlag" :columnList="tableHeader" @setColumn="setColumn" @closeDialog="closeDialog"></tableColumnSet>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
+import { ref } from "vue";
|
|
|
import Search from "@/components/search/index.vue";
|
|
|
import Steps from "@/components/steps/index.vue";
|
|
|
import Table from "@/components/tableTemp/index.vue";
|
|
|
+import TBtnGroup from "@/components/TBtnGroup/index.vue";
|
|
|
+import tableColumnSet from "@/components/tableColumnSet/index.vue";
|
|
|
import { ElMessage } from "element-plus";
|
|
|
const dataInfo = [
|
|
|
{
|
|
@@ -126,23 +133,23 @@ const datas1 = [
|
|
|
children: ["A32", "534件", "通过", "10:25"],
|
|
|
},
|
|
|
];
|
|
|
-const tableHeader = [
|
|
|
- { label: "航班号", key: "fightNo" },
|
|
|
- { label: "航班日期", key: "containerNo" },
|
|
|
- { label: "起飞航站-预计起飞时间", key: "goodsNo" },
|
|
|
- { label: "目的航站-预计降落时间", key: "dwon1" },
|
|
|
- { label: "节点名称", key: "return" },
|
|
|
- { label: "位置码", key: "receipt" },
|
|
|
- { label: "位置描述", key: "securityCheck" },
|
|
|
- { label: "处理时间", key: "tally" },
|
|
|
- { label: "处理结果", key: "dwon2" },
|
|
|
- { label: "数据来源", key: "waitingArea" },
|
|
|
- { label: "设备ID", key: "goodSstation1" },
|
|
|
- { label: "操作人", key: "offBoard1" },
|
|
|
- { label: "发往位置", key: "installEquipment" },
|
|
|
- { label: "发往位置描述", key: "unloading" },
|
|
|
- { label: "集装器编号", key: "demo" },
|
|
|
-];
|
|
|
+const tableHeader = ref([
|
|
|
+ { label: "航班号", key: "fightNo", isShow: true },
|
|
|
+ { label: "航班日期", key: "containerNo", isShow: true },
|
|
|
+ { label: "起飞航站-预计起飞时间", key: "goodsNo", isShow: true },
|
|
|
+ { label: "目的航站-预计降落时间", key: "dwon1", isShow: true },
|
|
|
+ { label: "节点名称", key: "return", isShow: true },
|
|
|
+ { label: "位置码", key: "receipt", isShow: true },
|
|
|
+ { label: "位置描述", key: "securityCheck", isShow: true },
|
|
|
+ { label: "处理时间", key: "tally", isShow: true },
|
|
|
+ { label: "处理结果", key: "dwon2", isShow: true },
|
|
|
+ { label: "数据来源", key: "waitingArea", isShow: true },
|
|
|
+ { label: "设备ID", key: "goodSstation1", isShow: true },
|
|
|
+ { label: "操作人", key: "offBoard1", isShow: true },
|
|
|
+ { label: "发往位置", key: "installEquipment", isShow: true },
|
|
|
+ { label: "发往位置描述", key: "unloading", isShow: true },
|
|
|
+ { label: "集装器编号", key: "demo", isShow: true },
|
|
|
+]);
|
|
|
const tableData = [
|
|
|
{
|
|
|
id: 1,
|
|
@@ -199,12 +206,30 @@ const tableData = [
|
|
|
demo: "DOU2329U2",
|
|
|
},
|
|
|
];
|
|
|
+const groupSet = {
|
|
|
+ isUtc: false,
|
|
|
+ isRefresh: false,
|
|
|
+ isDownLoad: true,
|
|
|
+ isColumnSet: true,
|
|
|
+};
|
|
|
+const cloumnFlag = ref(false);
|
|
|
const search = (val) => {
|
|
|
ElMessage.success(`搜索成功:${val}`);
|
|
|
};
|
|
|
const clear = () => {
|
|
|
ElMessage.success(`清除`);
|
|
|
};
|
|
|
+const columnSet = () => {
|
|
|
+ cloumnFlag.value = true;
|
|
|
+};
|
|
|
+const setColumn = (data) => {
|
|
|
+ tableHeader.value = data;
|
|
|
+ cloumnFlag.value = false;
|
|
|
+};
|
|
|
+
|
|
|
+const closeDialog = (data) => {
|
|
|
+ cloumnFlag.value = false;
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|