index.vue 9.1 KB

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