index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <div class="airportInfo">
  3. <div class="wrap">
  4. <Minheader :is-auth="true" :is-statuser="true" @addForm="addForm">
  5. <template #header>
  6. <div class="status flex-wrap">
  7. <div class="manageTitle">机场公司维护</div>
  8. </div>
  9. </template></Minheader
  10. >
  11. <DataTable
  12. :tableHeader="state.list"
  13. :tableData="tableData"
  14. :tableBtnGroup="tableBtnGroup"
  15. :tableProperty="{ rowKey: 'ID' }"
  16. @btnClick="btnClick"
  17. />
  18. <Dialog
  19. :flag="flag"
  20. :type="type"
  21. :msgTitle="msgTitle"
  22. @resetForm="resetForm"
  23. @delRest="delRest"
  24. >
  25. <div class="diacont">
  26. <el-form :model="tableForm">
  27. <el-row :gutter="24">
  28. <el-col>
  29. <el-form-item label="公司名称">
  30. <el-input
  31. v-model="tableForm.name"
  32. placeholder="请输入公司名称"
  33. />
  34. </el-form-item>
  35. </el-col>
  36. <el-col>
  37. <el-form-item label="上级公司">
  38. <!-- <el-input v-model="tableForm.china" /> -->
  39. <el-select
  40. style="width: 100%"
  41. v-model="tableForm.china"
  42. class="input-shadow"
  43. size="small"
  44. filterable
  45. default-first-option
  46. clearable
  47. placeholder="请选择"
  48. >
  49. <el-option
  50. v-for="item in tableOptionser"
  51. :key="item.v ? item.v : item.planDepartureApt"
  52. :label="item.k ? item.k : item.planDepartureApt"
  53. :value="item.v ? item.v : item.planDepartureApt"
  54. >
  55. </el-option>
  56. </el-select>
  57. </el-form-item>
  58. </el-col>
  59. <el-col>
  60. <el-form-item label="公司描述">
  61. <el-input
  62. type="textarea"
  63. v-model="tableForm.englin"
  64. placeholder="请输入公司描述"
  65. />
  66. </el-form-item>
  67. </el-col>
  68. </el-row>
  69. </el-form>
  70. </div>
  71. </Dialog>
  72. </div>
  73. </div>
  74. </template>
  75. <script setup lang="ts">
  76. import DataTable from "@/components/tableTemp/index.vue";
  77. import Minheader from "@/components/minheader/index.vue";
  78. import Dialog from "@/components/dialog/index.vue";
  79. const flag = ref<Boolean>(false); //弹窗开关
  80. const type = ref<String>(""); //判断是否删除
  81. const msgTitle = ref<String>("新增机场公司维护"); //弹窗标题
  82. const tableOptionser = ref<Array>([]); //弹窗下拉
  83. const tableColsCopys = reactive<Object>({}); //弹窗
  84. const tableForm = reactive({
  85. name: "",
  86. china: "",
  87. englin: "",
  88. }); //弹窗内容
  89. const tableBtnGroup = ref([
  90. {
  91. name: "编辑",
  92. className: "editBtn",
  93. param: 2,
  94. },
  95. {
  96. name: "删除",
  97. className: "delBtn",
  98. param: 3,
  99. },
  100. ]);
  101. //列表
  102. const tableData = ref([
  103. {
  104. name: "中国国际航空",
  105. china: "中国国际航空",
  106. englin: "",
  107. },
  108. {
  109. name: "中国国际航空",
  110. china: "中国国际航空",
  111. englin: "",
  112. },
  113. {
  114. name: "中国国际航空",
  115. china: "中国国际航空",
  116. englin: "",
  117. },
  118. ]);
  119. //表头
  120. const state = reactive({
  121. list: [
  122. { label: "公司名称", key: "name" },
  123. { label: "公司描述", key: "china" },
  124. { label: "上级公司", key: "englin" },
  125. ],
  126. listLoading: true,
  127. });
  128. //新增
  129. const addForm = () => {
  130. msgTitle.value = "新增机场公司维护";
  131. flag.value = true;
  132. type.value = "";
  133. };
  134. //取消
  135. const resetForm = () => {
  136. flag.value = false;
  137. tableForm.name = "";
  138. tableForm.china = "";
  139. tableForm.englin = "";
  140. };
  141. //编辑-删除
  142. const btnClick = (row, index, param) => {
  143. if (param === 2) {
  144. msgTitle.value = "编辑机场公司维护";
  145. flag.value = true;
  146. type.value = "";
  147. tableForm.name = index.name;
  148. tableForm.china = index.china;
  149. tableForm.englin = index.englin;
  150. } else if (param === 3) {
  151. msgTitle.value = "删除机场公司维护";
  152. flag.value = true;
  153. type.value = "del";
  154. } else if (param === 4) {
  155. }
  156. };
  157. //删除
  158. const delRest = () => {
  159. flag.value = false;
  160. };
  161. </script>
  162. <style lang="scss" scoped>
  163. ::v-deep .el-form-item__label {
  164. width: 100px;
  165. }
  166. </style>