|
@@ -30,43 +30,43 @@
|
|
|
<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>
|
|
@@ -96,14 +96,16 @@ 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: "",
|
|
|
}); //弹窗内容
|
|
|
//列表
|
|
|
+tableForm.terminalID = route.query.terminalID;
|
|
|
const tableData = ref([]);
|
|
|
//表头
|
|
|
const state = reactive({
|
|
@@ -138,11 +140,12 @@ const addForm = () => {
|
|
|
//取消
|
|
|
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) => {
|
|
@@ -175,15 +178,24 @@ 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) {
|
|
|
}
|
|
|
};
|