|
@@ -20,10 +20,11 @@
|
|
|
</el-col>
|
|
|
<el-col :span="18">
|
|
|
<DataTable
|
|
|
+ :tableHeader="state.list"
|
|
|
+ :tableData="tableData"
|
|
|
:tableBtnGroup="tableBtnGroup"
|
|
|
- @editDialog="editDialog"
|
|
|
- @eleDialog="eleDialog"
|
|
|
- @aloneDialog="aloneDialog"
|
|
|
+ :tableProperty="{ rowKey: 'ID' }"
|
|
|
+ @btnClick="btnClick"
|
|
|
/>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -58,7 +59,7 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="四字码">
|
|
|
<el-input
|
|
|
- v-model="tableForm.china"
|
|
|
+ v-model="tableForm.englin"
|
|
|
placeholder="请输入四字码"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -66,7 +67,7 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="中文简称">
|
|
|
<el-input
|
|
|
- v-model="tableForm.china"
|
|
|
+ v-model="tableForm.two"
|
|
|
placeholder="请输入中文简称"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -74,14 +75,14 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="英文简称">
|
|
|
<el-input
|
|
|
- v-model="tableForm.china"
|
|
|
+ v-model="tableForm.three"
|
|
|
placeholder="请输入英文简称"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="全称">
|
|
|
- <el-input v-model="tableForm.china" placeholder="请输入全称" />
|
|
|
+ <el-input v-model="tableForm.text" placeholder="请输入全称" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
@@ -89,7 +90,7 @@
|
|
|
<!-- <el-input v-model="tableForm.china" /> -->
|
|
|
<el-select
|
|
|
style="width: 100%"
|
|
|
- v-model="tableForm.china"
|
|
|
+ v-model="tableForm.text1"
|
|
|
class="input-shadow"
|
|
|
size="small"
|
|
|
filterable
|
|
@@ -110,7 +111,7 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="描述">
|
|
|
<el-input
|
|
|
- v-model="tableForm.text"
|
|
|
+ v-model="tableForm.text2"
|
|
|
placeholder="请输入机场三字码"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -122,8 +123,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
-import Minheader from "@/components/minheader/index.vue";
|
|
|
-import DataTable from "@/views/table/index.vue";
|
|
|
+import DataTable from "@/components/tableTemp/index.vue";
|
|
|
import Dialog from "@/components/dialog/index.vue";
|
|
|
const router = useRouter();
|
|
|
const tableBtnGroup = ref<Array>([
|
|
@@ -148,61 +148,88 @@ const type = ref<String>(""); //判断是否删除
|
|
|
const msgTitle = ref<String>("新增机场信息维护"); //弹窗标题
|
|
|
const tableOptionser = ref<Array>([]); //弹窗下拉
|
|
|
const tableColsCopys = reactive<Object>({}); //弹窗
|
|
|
-const tableForm = reactive<Object>({
|
|
|
+const tableForm = reactive({
|
|
|
name: "",
|
|
|
china: "",
|
|
|
englin: "",
|
|
|
two: "",
|
|
|
three: "",
|
|
|
text: "",
|
|
|
+ text1: "",
|
|
|
+ text2: "",
|
|
|
}); //弹窗内容
|
|
|
+//列表
|
|
|
+const tableData = ref([
|
|
|
+ {
|
|
|
+ name: "成都双流机场",
|
|
|
+ china: "CTU",
|
|
|
+ englin: "ZUUU",
|
|
|
+ two: "",
|
|
|
+ three: "CHENGDU",
|
|
|
+ text: "成都双流机场",
|
|
|
+ text1: "",
|
|
|
+ text2: "西南分公司",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "成都双流机场",
|
|
|
+ china: "CTU",
|
|
|
+ englin: "ZUUU",
|
|
|
+ two: "",
|
|
|
+ three: "CHENGDU",
|
|
|
+ text: "成都双流机场",
|
|
|
+ text1: "",
|
|
|
+ text2: "西南分公司",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "成都双流机场",
|
|
|
+ china: "CTU",
|
|
|
+ englin: "ZUUU",
|
|
|
+ two: "",
|
|
|
+ three: "CHENGDU",
|
|
|
+ text: "成都双流机场",
|
|
|
+ text1: "",
|
|
|
+ text2: "西南分公司",
|
|
|
+ },
|
|
|
+]);
|
|
|
+//表头
|
|
|
+const state = reactive({
|
|
|
+ list: [
|
|
|
+ { label: "名称", key: "name", width: "100px" },
|
|
|
+ { label: "三字码", key: "china", width: "50px" },
|
|
|
+ { label: "四字码", key: "englin", width: "50px" },
|
|
|
+ { label: "中文简称", key: "two", width: "50px" },
|
|
|
+ { label: "英文简称", key: "three", width: "50px" },
|
|
|
+ { label: "全称", key: "text", width: "50px" },
|
|
|
+ { label: "时区", key: "text1", width: "50px" },
|
|
|
+ { label: "公司名称", key: "text2", width: "50px" },
|
|
|
+ ],
|
|
|
+ listLoading: true,
|
|
|
+});
|
|
|
const company = ref("所属公司");
|
|
|
const data2 = reactive([
|
|
|
{
|
|
|
id: 1,
|
|
|
- label: "Level one 1",
|
|
|
+ label: "中国国际航空",
|
|
|
children: [
|
|
|
{
|
|
|
- id: 4,
|
|
|
- label: "Level two 1-1",
|
|
|
- children: [
|
|
|
- {
|
|
|
- id: 9,
|
|
|
- label: "Level three 1-1-1",
|
|
|
- },
|
|
|
- {
|
|
|
- id: 10,
|
|
|
- label: "Level three 1-1-2",
|
|
|
- },
|
|
|
- ],
|
|
|
+ id: 2,
|
|
|
+ label: "西南分公司",
|
|
|
},
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- label: "Level one 2",
|
|
|
- children: [
|
|
|
{
|
|
|
- id: 5,
|
|
|
- label: "Level two 2-1",
|
|
|
+ id: 3,
|
|
|
+ label: "浙江分公司",
|
|
|
},
|
|
|
{
|
|
|
- id: 6,
|
|
|
- label: "Level two 2-2",
|
|
|
+ id: 4,
|
|
|
+ label: "重庆分公司",
|
|
|
},
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 3,
|
|
|
- label: "Level one 3",
|
|
|
- children: [
|
|
|
{
|
|
|
- id: 7,
|
|
|
- label: "Level two 3-1",
|
|
|
+ id: 5,
|
|
|
+ label: "天津分公司",
|
|
|
},
|
|
|
{
|
|
|
- id: 8,
|
|
|
- label: "Level two 3-2",
|
|
|
+ id: 6,
|
|
|
+ label: "上海分公司",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
@@ -218,10 +245,18 @@ const resetForm = () => {
|
|
|
flag.value = false;
|
|
|
};
|
|
|
//编辑
|
|
|
-const editDialog = () => {
|
|
|
+const editDialog = (data) => {
|
|
|
msgTitle.value = "编辑机场信息维护";
|
|
|
flag.value = true;
|
|
|
type.value = "";
|
|
|
+ tableForm.name = data.name;
|
|
|
+ tableForm.china = data.china;
|
|
|
+ tableForm.englin = data.englin;
|
|
|
+ tableForm.two = data.two;
|
|
|
+ tableForm.three = data.three;
|
|
|
+ tableForm.text = data.text;
|
|
|
+ tableForm.text1 = data.text1;
|
|
|
+ tableForm.text2 = data.text2;
|
|
|
};
|
|
|
//删除
|
|
|
const eleDialog = () => {
|
|
@@ -237,8 +272,32 @@ const delRest = () => {
|
|
|
const aloneDialog = () => {
|
|
|
router.push({ path: "/BasicsData/airportInfoChild" });
|
|
|
};
|
|
|
+//编辑-删除
|
|
|
+const btnClick = (row, index, param) => {
|
|
|
+ if (param === 2) {
|
|
|
+ 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.text = index.text;
|
|
|
+ tableForm.text1 = index.text1;
|
|
|
+ tableForm.text2 = index.text2;
|
|
|
+ } else if (param === 3) {
|
|
|
+ msgTitle.value = "删除机场信息维护";
|
|
|
+ flag.value = true;
|
|
|
+ type.value = "del";
|
|
|
+ } else if (param === 4) {
|
|
|
+ router.push({ path: "/BasicsData/airportInfoChild" });
|
|
|
+ }
|
|
|
+};
|
|
|
//点击树事件
|
|
|
-const handleNodeClick = () => {};
|
|
|
+const handleNodeClick = (data) => {
|
|
|
+ company.value = data.label;
|
|
|
+};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
::v-deep .el-form-item__label {
|