index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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. @submitForm="submitForm"
  27. @delRemove="delRemove"
  28. >
  29. <div class="diacont">
  30. <el-form :model="tableForm">
  31. <el-row :gutter="24">
  32. <el-col>
  33. <el-form-item label="航司名称" size="default">
  34. <el-input
  35. v-model="tableForm.fullName"
  36. placeholder="请输入航司名称"
  37. />
  38. </el-form-item>
  39. </el-col>
  40. <el-col>
  41. <el-form-item label="中文简称" size="default">
  42. <el-input
  43. v-model="tableForm.abbreviation"
  44. placeholder="请输入中文简称"
  45. />
  46. </el-form-item>
  47. </el-col>
  48. <el-col>
  49. <el-form-item label="英文简称" size="default">
  50. <el-input
  51. v-model="tableForm.englishAbbreviation"
  52. placeholder="请输入英文简称"
  53. />
  54. </el-form-item>
  55. </el-col>
  56. <el-col>
  57. <el-form-item label="航司二字码" size="default">
  58. <el-input
  59. v-model="tableForm.ITATCode"
  60. placeholder="请输入航司二字码"
  61. />
  62. </el-form-item>
  63. </el-col>
  64. <el-col>
  65. <el-form-item label="航司三字码" size="default">
  66. <el-input
  67. v-model="tableForm.ICAOCode"
  68. placeholder="请输入航司三字码"
  69. />
  70. </el-form-item>
  71. </el-col>
  72. <el-col>
  73. <el-form-item label="备注" size="default">
  74. <el-input
  75. type="textarea"
  76. v-model="tableForm.remarks"
  77. placeholder="请输入备注"
  78. />
  79. </el-form-item>
  80. </el-col>
  81. </el-row>
  82. </el-form>
  83. </div>
  84. </Dialog>
  85. </div>
  86. </div>
  87. </template>
  88. <script setup lang="ts">
  89. import DataTable from "@/components/tableTemp/index.vue";
  90. import Minheader from "@/components/minheader/index.vue";
  91. import Dialog from "@/components/dialog/index.vue";
  92. import { Query, GeneralDataReception } from "@/api/webApi";
  93. import { ElMessage } from "element-plus";
  94. const page = ref<number>(0); //分页参数
  95. const dataContent = ref<object>({});
  96. const noMore = ref<Boolean>(false);
  97. const rowTitle = ref<String>("");
  98. const tableCols = ref([]); //表头数据
  99. const serviceId = ref<String>("");
  100. const tableObj = ref({}); //增删改数据缓存
  101. const flag = ref<Boolean>(false); //弹窗开关
  102. const type = ref<String>(""); //判断是否删除
  103. const msgTitle = ref<String>("新增航司信息维护"); //弹窗标题
  104. const tableColsCopys = reactive<Object>({}); //弹窗
  105. const tableForm = reactive({
  106. fullName: "",
  107. abbreviation: "",
  108. englishAbbreviation: "",
  109. ITATCode: "",
  110. ICAOCode: "",
  111. remarks: "",
  112. event: "",
  113. airlineCompanyID: "",
  114. }); //弹窗内容
  115. //列表
  116. const tableData = ref([]);
  117. //表头
  118. const state = reactive({
  119. list: [
  120. { label: "名称", key: "name" },
  121. { label: "中文简称", key: "china" },
  122. { label: "英文简称", key: "englin" },
  123. { label: "航司二字码", key: "two" },
  124. { label: "航司三字码", key: "three" },
  125. { label: "备注", key: "text" },
  126. ],
  127. listLoading: true,
  128. });
  129. const tableBtnGroup = ref([
  130. {
  131. name: "编辑",
  132. className: "editBtn",
  133. param: 2,
  134. },
  135. {
  136. name: "删除",
  137. className: "delBtn",
  138. param: 3,
  139. },
  140. ]);
  141. //新增
  142. const addForm = () => {
  143. msgTitle.value = "新增航司信息维护";
  144. tableForm.event = 1;
  145. flag.value = true;
  146. type.value = "";
  147. };
  148. //取消
  149. const resetForm = () => {
  150. flag.value = false;
  151. tableForm.fullName = "";
  152. tableForm.abbreviation = "";
  153. tableForm.englishAbbreviation = "";
  154. tableForm.ITATCode = "";
  155. tableForm.ICAOCode = "";
  156. tableForm.remarks = "";
  157. tableForm.airlineCompanyID = "";
  158. };
  159. //编辑-删除
  160. const btnClick = (row, index, param) => {
  161. if (param === 2) {
  162. msgTitle.value = "编辑航司信息维护";
  163. flag.value = true;
  164. type.value = "";
  165. tableForm.event = 2;
  166. tableForm.fullName = index.fullName;
  167. tableForm.abbreviation = index.abbreviation;
  168. tableForm.englishAbbreviation = index.englishAbbreviation;
  169. tableForm.ITATCode = index.ITATCode;
  170. tableForm.ICAOCode = index.ICAOCode;
  171. tableForm.remarks = index.remarks;
  172. tableForm.airlineCompanyID = index.airlineCompanyID;
  173. } else if (param === 3) {
  174. msgTitle.value = "删除航司信息维护";
  175. flag.value = true;
  176. type.value = "del";
  177. tableForm.event = 3;
  178. tableForm.fullName = index.fullName;
  179. tableForm.abbreviation = index.abbreviation;
  180. tableForm.englishAbbreviation = index.englishAbbreviation;
  181. tableForm.ITATCode = index.ITATCode;
  182. tableForm.ICAOCode = index.ICAOCode;
  183. tableForm.remarks = index.remarks;
  184. tableForm.airlineCompanyID = index.airlineCompanyID;
  185. } else if (param === 4) {
  186. }
  187. };
  188. //删除
  189. const eleDialog = () => {
  190. msgTitle.value = "删除航司信息维护";
  191. flag.value = true;
  192. type.value = "del";
  193. };
  194. const delRemove = () => {
  195. tableForm.event = 3;
  196. generalDataReception(tableForm);
  197. };
  198. //删除
  199. const delRest = () => {
  200. flag.value = false;
  201. };
  202. //获取表格数据
  203. const getQuery = async () => {
  204. try {
  205. const { code, returnData } = await Query({
  206. id: DATACONTENT_ID.airlineTableId,
  207. needPage: ++page.value,
  208. dataContent: Object.values(dataContent.value),
  209. });
  210. if (code === "0") {
  211. if (returnData.listValues.length === 0) {
  212. page.value--;
  213. noMore.value = true;
  214. }
  215. const titleColumn = returnData.columnSet.find(
  216. (item) => item.needShow === 1
  217. );
  218. if (titleColumn) {
  219. rowTitle.value = titleColumn.columnName;
  220. }
  221. tableData.value.push(...returnData.listValues);
  222. tableCols.value = returnData.columnSet;
  223. tableCols.value.forEach((element) => {
  224. element.label = element.columnLabel;
  225. element.key = element.columnName;
  226. // if (element.columnName === "queryTemplate") {
  227. // element.width = "300px";
  228. // }
  229. });
  230. serviceId.value = returnData.submitID;
  231. } else {
  232. page.value--;
  233. }
  234. } catch (error) {
  235. page.value--;
  236. }
  237. };
  238. //确认提交
  239. const submitForm = () => {
  240. generalDataReception(tableForm);
  241. };
  242. const resetTable = () => {
  243. page.value = 0;
  244. noMore.value = false;
  245. tableData.value = [];
  246. };
  247. //新增-编辑-删除
  248. const generalDataReception = async (data) => {
  249. try {
  250. data = {
  251. ...data,
  252. ...dataContent,
  253. };
  254. const { code } = await GeneralDataReception({
  255. serviceId: serviceId.value,
  256. dataContent: JSON.stringify(data),
  257. });
  258. if (code == 0) {
  259. ElMessage.success(`操作成功`);
  260. // this.$message.success("操作成功");
  261. resetTable();
  262. getQuery();
  263. resetForm();
  264. flag.value = false;
  265. // rmFlag.value = false;
  266. tableObj.value = {};
  267. // this.$router.go(0);
  268. } else {
  269. ElMessage.error(`操作失败`);
  270. // this.$message.error("操作失败");
  271. // this.flag = false;
  272. // this.rmFlag = false;
  273. tableObj.value = {};
  274. resetForm();
  275. }
  276. } catch (error) {
  277. flag.value = false;
  278. // rmFlag.value = false;
  279. tableObj.value = {};
  280. resetForm();
  281. }
  282. };
  283. onMounted(() => {
  284. getQuery();
  285. });
  286. </script>
  287. <style lang="scss" scoped>
  288. ::v-deep .el-form-item__label {
  289. width: 100px;
  290. }
  291. .app-containers {
  292. height: calc(100vh - 180px);
  293. }
  294. </style>