index.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <template>
  2. <div class="airportInfo scroll-y">
  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. <div class="app-containers">
  12. <DataTable
  13. :tableHeader="tableCols"
  14. :tableData="tableData"
  15. :tableBtnGroup="tableBtnGroup"
  16. :tableProperty="{ rowKey: 'ID' }"
  17. @btnClick="btnClick"
  18. />
  19. </div>
  20. <Dialog
  21. :flag="flag"
  22. :type="type"
  23. :msgTitle="msgTitle"
  24. @resetForm="resetForm"
  25. @delRest="delRest"
  26. >
  27. <div class="diacont">
  28. <el-form :model="tableForm">
  29. <el-row :gutter="24">
  30. <el-col>
  31. <el-form-item label="舱位名称" size="default">
  32. <el-input v-model="tableForm.name" placeholder="请输入ID" />
  33. </el-form-item>
  34. </el-col>
  35. <el-col>
  36. <el-form-item label="舱位编码" size="default">
  37. <el-input
  38. v-model="tableForm.china"
  39. placeholder="请输入航站名称"
  40. />
  41. </el-form-item>
  42. </el-col>
  43. <el-col>
  44. <el-form-item label="舱位描述" size="default">
  45. <el-input
  46. type="textarea"
  47. v-model="tableForm.englin"
  48. placeholder="请输入机场三字码"
  49. />
  50. </el-form-item>
  51. </el-col>
  52. </el-row>
  53. </el-form>
  54. </div>
  55. </Dialog>
  56. </div>
  57. </div>
  58. </template>
  59. <script setup lang="ts">
  60. import DataTable from "@/components/tableTemp/index.vue";
  61. import Minheader from "@/components/minheader/index.vue";
  62. import Dialog from "@/components/dialog/index.vue";
  63. import { Query, GeneralDataReception } from "@/api/webApi";
  64. import { ElMessage } from "element-plus";
  65. const route = useRoute();
  66. const page = ref<number>(0); //分页参数
  67. const dataContent = ref<object>({});
  68. const noMore = ref<Boolean>(false);
  69. const rowTitle = ref<String>("");
  70. const tableCols = ref([]); //表头数据
  71. const serviceId = ref<String>("");
  72. const tableObj = ref({}); //增删改数据缓存
  73. const flag = ref<Boolean>(false); //弹窗开关
  74. const type = ref<String>(""); //判断是否删除
  75. const msgTitle = ref<String>("新增舱位管理"); //弹窗标题
  76. const tableColsCopys = reactive<Object>({}); //弹窗
  77. const tableForm = reactive({
  78. name: "",
  79. china: "",
  80. englin: "",
  81. }); //弹窗内容
  82. //列表
  83. const tableData = ref([]);
  84. //表头
  85. const state = reactive({
  86. list: [
  87. { label: "舱位名称", key: "name" },
  88. { label: "舱位编码", key: "china" },
  89. { label: "舱位描述", key: "englin" },
  90. ],
  91. listLoading: true,
  92. });
  93. const tableBtnGroup = ref([
  94. {
  95. name: "编辑",
  96. className: "editBtn",
  97. param: 2,
  98. },
  99. {
  100. name: "删除",
  101. className: "delBtn",
  102. param: 3,
  103. },
  104. ]);
  105. //新增
  106. const addForm = () => {
  107. msgTitle.value = "新增舱位管理";
  108. flag.value = true;
  109. type.value = "";
  110. };
  111. //取消
  112. const resetForm = () => {
  113. flag.value = false;
  114. tableForm.name = "";
  115. tableForm.china = "";
  116. tableForm.englin = "";
  117. };
  118. //编辑
  119. const editDialog = (data) => {
  120. msgTitle.value = "编辑舱位管理";
  121. flag.value = true;
  122. type.value = "";
  123. tableForm.name = data.name;
  124. tableForm.china = data.china;
  125. tableForm.englin = data.englin;
  126. };
  127. //删除
  128. const eleDialog = () => {
  129. msgTitle.value = "删除舱位管理";
  130. flag.value = true;
  131. type.value = "del";
  132. };
  133. //删除
  134. const delRest = () => {
  135. flag.value = false;
  136. };
  137. //编辑-删除
  138. const btnClick = (row, index, param) => {
  139. if (param === 2) {
  140. msgTitle.value = "编辑舱位管理";
  141. flag.value = true;
  142. type.value = "";
  143. tableForm.name = index.name;
  144. tableForm.china = index.china;
  145. tableForm.englin = index.englin;
  146. } else if (param === 3) {
  147. msgTitle.value = "删除舱位管理";
  148. flag.value = true;
  149. type.value = "del";
  150. } else if (param === 4) {
  151. }
  152. };
  153. //获取表格数据
  154. const getQuery = async () => {
  155. try {
  156. const { code, returnData } = await Query({
  157. id: DATACONTENT_ID.shippingNodeId,
  158. needPage: ++page.value,
  159. dataContent: [route.query.modelID],
  160. });
  161. if (code === "0") {
  162. if (returnData.listValues.length === 0) {
  163. page.value--;
  164. noMore.value = true;
  165. }
  166. const titleColumn = returnData.columnSet.find(
  167. (item) => item.needShow === 1
  168. );
  169. if (titleColumn) {
  170. rowTitle.value = titleColumn.columnName;
  171. }
  172. tableData.value.push(...returnData.listValues);
  173. tableCols.value = returnData.columnSet;
  174. tableCols.value.forEach((element) => {
  175. element.label = element.columnLabel;
  176. element.key = element.columnName;
  177. // if (element.columnName === "queryTemplate") {
  178. // element.width = "300px";
  179. // }
  180. });
  181. serviceId.value = returnData.submitID;
  182. } else {
  183. page.value--;
  184. }
  185. } catch (error) {
  186. page.value--;
  187. }
  188. };
  189. getQuery();
  190. </script>
  191. <style lang="scss" scoped>
  192. ::v-deep .el-form-item__label {
  193. width: 80px;
  194. }
  195. </style>