|
@@ -10,7 +10,7 @@
|
|
|
>
|
|
|
<div class="app-containers">
|
|
|
<DataTable
|
|
|
- :tableHeader="state.list"
|
|
|
+ :tableHeader="tableCols"
|
|
|
:tableData="tableData"
|
|
|
:tableBtnGroup="tableBtnGroup"
|
|
|
:tableProperty="{ rowKey: 'ID' }"
|
|
@@ -23,48 +23,50 @@
|
|
|
:msgTitle="msgTitle"
|
|
|
@resetForm="resetForm"
|
|
|
@delRest="delRest"
|
|
|
+ @submitForm="submitForm"
|
|
|
+ @delRemove="delRemove"
|
|
|
>
|
|
|
<div class="diacont">
|
|
|
<el-form :model="tableForm">
|
|
|
<el-row :gutter="24">
|
|
|
<el-col>
|
|
|
- <el-form-item label="位置名称" size="default">
|
|
|
+ <el-form-item label="位置序号" size="default">
|
|
|
<el-input
|
|
|
- v-model="tableForm.name"
|
|
|
- placeholder="请输入位置名称"
|
|
|
+ v-model="tableForm.positionSN"
|
|
|
+ placeholder="请输入位置序号"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
- <el-form-item label="位置所属节点" size="default">
|
|
|
+ <el-form-item label="位置描述" size="default">
|
|
|
<el-input
|
|
|
- v-model="tableForm.china"
|
|
|
- placeholder="请输入位置所属节点"
|
|
|
+ v-model="tableForm.positionDescribe"
|
|
|
+ placeholder="请输入位置描述"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
- <el-form-item label="位置标识" size="default">
|
|
|
+ <el-form-item label="位置英文描述" size="default">
|
|
|
<el-input
|
|
|
- v-model="tableForm.englin"
|
|
|
- placeholder="请输入位置标识"
|
|
|
+ v-model="tableForm.englishDescribe"
|
|
|
+ placeholder="请输入位置英文描述"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
<el-form-item label="位置编码" size="default">
|
|
|
<el-input
|
|
|
- v-model="tableForm.two"
|
|
|
+ v-model="tableForm.locationCode"
|
|
|
placeholder="请输入位置编码"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
- <el-form-item label="位置描述" size="default">
|
|
|
+ <el-form-item label="航站楼ID" size="default">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
- v-model="tableForm.three"
|
|
|
- placeholder="请输入位置描述"
|
|
|
+ v-model="tableForm.terminalID"
|
|
|
+ placeholder="请输入航站楼ID"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -79,41 +81,32 @@
|
|
|
import DataTable from "@/components/tableTemp/index.vue";
|
|
|
import Minheader from "@/components/minheader/index.vue";
|
|
|
import Dialog from "@/components/dialog/index.vue";
|
|
|
+import { Query, GeneralDataReception } from "@/api/webApi";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
+const route = useRoute();
|
|
|
+const page = ref<number>(0); //分页参数
|
|
|
+const dataContent = ref<object>({});
|
|
|
+const noMore = ref<Boolean>(false);
|
|
|
+const rowTitle = ref<String>("");
|
|
|
+const tableCols = ref([]); //表头数据
|
|
|
+const serviceId = ref<String>("");
|
|
|
+const tableObj = ref({}); //增删改数据缓存
|
|
|
const flag = ref<Boolean>(false); //弹窗开关
|
|
|
const type = ref<String>(""); //判断是否删除
|
|
|
const msgTitle = ref<String>("新增位置设置"); //弹窗标题
|
|
|
const tableColsCopys = reactive<Object>({}); //弹窗
|
|
|
const tableForm = reactive({
|
|
|
- name: "",
|
|
|
- china: "",
|
|
|
- englin: "",
|
|
|
- two: "",
|
|
|
- three: "",
|
|
|
+ positionID: "",
|
|
|
+ positionSN: "",
|
|
|
+ positionDescribe: "",
|
|
|
+ englishDescribe: "",
|
|
|
+ locationCode: "",
|
|
|
+ terminalID: "",
|
|
|
+ event: "",
|
|
|
}); //弹窗内容
|
|
|
//列表
|
|
|
-const tableData = ref([
|
|
|
- {
|
|
|
- name: "测试",
|
|
|
- china: "测试",
|
|
|
- englin: "测试",
|
|
|
- two: "测试",
|
|
|
- three: "",
|
|
|
- },
|
|
|
- {
|
|
|
- name: "测试",
|
|
|
- china: "测试",
|
|
|
- englin: "测试",
|
|
|
- two: "测试",
|
|
|
- three: "",
|
|
|
- },
|
|
|
- {
|
|
|
- name: "测试",
|
|
|
- china: "测试",
|
|
|
- englin: "测试",
|
|
|
- two: "测试",
|
|
|
- three: "",
|
|
|
- },
|
|
|
-]);
|
|
|
+tableForm.terminalID = route.query.terminalID;
|
|
|
+const tableData = ref([]);
|
|
|
//表头
|
|
|
const state = reactive({
|
|
|
list: [
|
|
@@ -140,17 +133,19 @@ const tableBtnGroup = ref([
|
|
|
//新增
|
|
|
const addForm = () => {
|
|
|
msgTitle.value = "新增位置";
|
|
|
+ tableForm.event = 1;
|
|
|
flag.value = true;
|
|
|
type.value = "";
|
|
|
};
|
|
|
//取消
|
|
|
const resetForm = () => {
|
|
|
flag.value = false;
|
|
|
- tableForm.name = "";
|
|
|
- tableForm.china = "";
|
|
|
- tableForm.englin = "";
|
|
|
- tableForm.two = "";
|
|
|
- tableForm.three = "";
|
|
|
+ tableForm.positionID = "";
|
|
|
+ tableForm.positionSN = "";
|
|
|
+ tableForm.positionDescribe = "";
|
|
|
+ tableForm.englishDescribe = "";
|
|
|
+ tableForm.locationCode = "";
|
|
|
+ tableForm.terminalID = "";
|
|
|
};
|
|
|
//编辑
|
|
|
const editDialog = (data) => {
|
|
@@ -169,6 +164,10 @@ const eleDialog = () => {
|
|
|
flag.value = true;
|
|
|
type.value = "del";
|
|
|
};
|
|
|
+const delRemove = () => {
|
|
|
+ tableForm.event = 3;
|
|
|
+ generalDataReception(tableForm);
|
|
|
+};
|
|
|
//删除
|
|
|
const delRest = () => {
|
|
|
flag.value = false;
|
|
@@ -179,18 +178,112 @@ const btnClick = (row, index, param) => {
|
|
|
msgTitle.value = "编辑位置";
|
|
|
flag.value = true;
|
|
|
type.value = "";
|
|
|
- tableForm.name = index.name;
|
|
|
- tableForm.china = index.china;
|
|
|
- tableForm.englin = index.englin;
|
|
|
- tableForm.two = index.two;
|
|
|
- tableForm.three = index.three;
|
|
|
+ tableForm.event = 2;
|
|
|
+ tableForm.positionID = index.positionID;
|
|
|
+ tableForm.positionSN = index.positionSN;
|
|
|
+ tableForm.positionDescribe = index.positionDescribe;
|
|
|
+ tableForm.englishDescribe = index.englishDescribe;
|
|
|
+ tableForm.locationCode = index.locationCode;
|
|
|
+ tableForm.terminalID = index.terminalID;
|
|
|
} else if (param === 3) {
|
|
|
msgTitle.value = "删除位置";
|
|
|
flag.value = true;
|
|
|
type.value = "del";
|
|
|
+ tableForm.event = 3;
|
|
|
+ tableForm.positionID = index.positionID;
|
|
|
+ tableForm.positionSN = index.positionSN;
|
|
|
+ tableForm.positionDescribe = index.positionDescribe;
|
|
|
+ tableForm.englishDescribe = index.englishDescribe;
|
|
|
+ tableForm.locationCode = index.locationCode;
|
|
|
+ tableForm.terminalID = index.terminalID;
|
|
|
} else if (param === 4) {
|
|
|
}
|
|
|
};
|
|
|
+//获取表格数据
|
|
|
+const getQuery = async () => {
|
|
|
+ try {
|
|
|
+ const { code, returnData } = await Query({
|
|
|
+ id: DATACONTENT_ID.airpositTableId,
|
|
|
+ needPage: ++page.value,
|
|
|
+ dataContent: [route.query.terminalID],
|
|
|
+ });
|
|
|
+ if (code === "0") {
|
|
|
+ if (returnData.listValues.length === 0) {
|
|
|
+ page.value--;
|
|
|
+ noMore.value = true;
|
|
|
+ }
|
|
|
+ const titleColumn = returnData.columnSet.find(
|
|
|
+ (item) => item.needShow === 1
|
|
|
+ );
|
|
|
+ if (titleColumn) {
|
|
|
+ rowTitle.value = titleColumn.columnName;
|
|
|
+ }
|
|
|
+ tableData.value.push(...returnData.listValues);
|
|
|
+ tableCols.value = returnData.columnSet;
|
|
|
+ tableCols.value.forEach((element) => {
|
|
|
+ element.label = element.columnLabel;
|
|
|
+ element.key = element.columnName;
|
|
|
+ // if (element.columnName === "queryTemplate") {
|
|
|
+ // element.width = "300px";
|
|
|
+ // }
|
|
|
+ });
|
|
|
+ serviceId.value = returnData.submitID;
|
|
|
+ } else {
|
|
|
+ page.value--;
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ page.value--;
|
|
|
+ }
|
|
|
+};
|
|
|
+//确认提交
|
|
|
+const submitForm = () => {
|
|
|
+ generalDataReception(tableForm);
|
|
|
+};
|
|
|
+const resetTable = () => {
|
|
|
+ page.value = 0;
|
|
|
+ noMore.value = false;
|
|
|
+ tableData.value = [];
|
|
|
+};
|
|
|
+//新增-编辑-删除
|
|
|
+const generalDataReception = async (data) => {
|
|
|
+ try {
|
|
|
+ let obj = {
|
|
|
+ terminalID: route.query.terminalID,
|
|
|
+ };
|
|
|
+ data = {
|
|
|
+ ...data,
|
|
|
+ obj,
|
|
|
+ };
|
|
|
+ const { code } = await GeneralDataReception({
|
|
|
+ serviceId: serviceId.value,
|
|
|
+ dataContent: JSON.stringify(data),
|
|
|
+ });
|
|
|
+ if (code == 0) {
|
|
|
+ ElMessage.success(`操作成功`);
|
|
|
+ // this.$message.success("操作成功");
|
|
|
+ resetTable();
|
|
|
+ getQuery();
|
|
|
+ resetForm();
|
|
|
+ flag.value = false;
|
|
|
+ // rmFlag.value = false;
|
|
|
+ tableObj.value = {};
|
|
|
+ // this.$router.go(0);
|
|
|
+ } else {
|
|
|
+ ElMessage.error(`操作失败`);
|
|
|
+ // this.$message.error("操作失败");
|
|
|
+ // this.flag = false;
|
|
|
+ // this.rmFlag = false;
|
|
|
+ tableObj.value = {};
|
|
|
+ resetForm();
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ flag.value = false;
|
|
|
+ // rmFlag.value = false;
|
|
|
+ tableObj.value = {};
|
|
|
+ resetForm();
|
|
|
+ }
|
|
|
+};
|
|
|
+getQuery();
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
::v-deep .el-form-item__label {
|