index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. </div>
  21. </div>
  22. </template>
  23. <script setup lang="ts">
  24. import DataTable from "@/components/tableTemp/index.vue";
  25. import Minheader from "@/components/minheader/index.vue";
  26. import Dialog from "@/components/dialog/index.vue";
  27. import { Query } from "@/api/webApi";
  28. const router = useRouter();
  29. const dataId = ref<String>("4"); //请求id
  30. const page = ref<number>(0); //分页参数
  31. const dataContent = ref<object>({});
  32. const noMore = ref<Boolean>(false);
  33. const rowTitle = ref<String>("");
  34. const tableCols = ref([]); //表头数据
  35. const serviceId = ref<String>("");
  36. const flag = ref<Boolean>(false); //弹窗开关
  37. const type = ref<String>(""); //判断是否删除
  38. const msgTitle = ref<String>("新增查询模板"); //弹窗标题
  39. const tableColsCopys = reactive<Object>({}); //弹窗
  40. const tableOptionser = ref<Array>([]); //弹窗下拉
  41. const tableForm = reactive({
  42. name: "",
  43. china: "",
  44. englin: "",
  45. two: "",
  46. three: "",
  47. text: "",
  48. }); //弹窗内容
  49. //列表
  50. const tableData = ref([]);
  51. //表头
  52. const state = reactive({
  53. list: [
  54. { label: "查询模板名称", key: "name" },
  55. { label: "查询模板协议", key: "china" },
  56. { label: "查询模板描述", key: "englin" },
  57. ],
  58. listLoading: true,
  59. });
  60. const tableBtnGroup = ref([
  61. {
  62. name: "编辑",
  63. className: "editBtn",
  64. param: 2,
  65. },
  66. {
  67. name: "删除",
  68. className: "delBtn",
  69. param: 3,
  70. },
  71. ]);
  72. //新增
  73. const addForm = () => {
  74. router.push({ path: "/systemSettings/queryTemplateAdd" });
  75. // msgTitle.value = "新增查询模板";
  76. // flag.value = true;
  77. // type.value = "";
  78. };
  79. //取消
  80. const resetForm = () => {
  81. flag.value = false;
  82. tableForm.name = "";
  83. tableForm.china = "";
  84. tableForm.englin = "";
  85. tableForm.two = "";
  86. tableForm.three = "";
  87. tableForm.text = "";
  88. };
  89. //编辑
  90. // const editDialog = (data) => {
  91. // msgTitle.value = "编辑航司信息维护";
  92. // flag.value = true;
  93. // type.value = "";
  94. // tableForm.name = data.name;
  95. // tableForm.china = data.china;
  96. // tableForm.englin = data.englin;
  97. // tableForm.two = data.two;
  98. // tableForm.three = data.three;
  99. // tableForm.text = data.text;
  100. // };
  101. //编辑-删除
  102. const btnClick = (row, index, param) => {
  103. if (param === 2) {
  104. router.push({ path: "/systemSettings/queryTemplateColumn" });
  105. } else if (param === 3) {
  106. msgTitle.value = "删除查询模板";
  107. flag.value = true;
  108. type.value = "del";
  109. } else if (param === 4) {
  110. }
  111. };
  112. //删除
  113. const eleDialog = () => {
  114. msgTitle.value = "删除查询模板";
  115. flag.value = true;
  116. type.value = "del";
  117. };
  118. //删除
  119. const delRest = () => {
  120. flag.value = false;
  121. };
  122. //获取表格数据
  123. const getQuery = async () => {
  124. try {
  125. const { code, returnData } = await Query({
  126. id: dataId.value,
  127. needPage: ++page.value,
  128. dataContent: Object.values(dataContent.value),
  129. });
  130. if (code === "0") {
  131. if (returnData.listValues.length === 0) {
  132. page.value--;
  133. noMore.value = true;
  134. }
  135. const titleColumn = returnData.columnSet.find(
  136. (item) => item.needShow === 1
  137. );
  138. if (titleColumn) {
  139. rowTitle.value = titleColumn.columnName;
  140. }
  141. tableData.value.push(...returnData.listValues);
  142. tableCols.value = returnData.columnSet;
  143. tableCols.value.forEach((element) => {
  144. element.label = element.columnLabel;
  145. element.key = element.columnName;
  146. // if (element.columnName === "queryTemplate") {
  147. // element.width = "300px";
  148. // }
  149. });
  150. serviceId.value = returnData.submitID;
  151. } else {
  152. page.value--;
  153. }
  154. } catch (error) {
  155. page.value--;
  156. }
  157. };
  158. onMounted(() => {
  159. getQuery();
  160. });
  161. </script>
  162. <style lang="scss" scoped>
  163. ::v-deep .el-form-item__label {
  164. width: 100px;
  165. }
  166. .app-containers {
  167. height: calc(100vh - 180px);
  168. }
  169. </style>