index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. <template>
  2. <div class="airportInfo scroll-y">
  3. <div class="wrap">
  4. <Minheader
  5. :is-auth="true"
  6. :is-statuser="true"
  7. powerData="new_airlines_button"
  8. @addForm="addForm"
  9. >
  10. <template #header>
  11. <div class="status flex-wrap">
  12. <div class="manageTitle">航司信息维护</div>
  13. </div>
  14. </template>
  15. </Minheader>
  16. <div class="app-containers">
  17. <DataTable
  18. :tableHeader="tableCols"
  19. :tableData="tableData"
  20. :tableBtnGroup="tableBtnGroup"
  21. :tableProperty="{ rowKey: 'ID' }"
  22. @btnClick="btnClick"
  23. />
  24. </div>
  25. <Dialog
  26. :flag="flag"
  27. :type="type"
  28. :msgTitle="msgTitle"
  29. :delName="tableForm.fullName"
  30. @resetForm="resetForm"
  31. @delRest="delRest"
  32. @submitForm="submitForm"
  33. @delRemove="delRemove"
  34. >
  35. <div class="diacont">
  36. <el-form
  37. :model="tableForm"
  38. :rules="formRules"
  39. ref="airlineCompanyForm"
  40. >
  41. <el-row :gutter="24">
  42. <el-col>
  43. <el-form-item
  44. label="航司ID"
  45. size="default"
  46. prop="airlineCompanyID"
  47. :rules="formRules.isNotNull"
  48. >
  49. <el-input
  50. v-model="tableForm.airlineCompanyID"
  51. placeholder="请输入航司ID"
  52. />
  53. </el-form-item>
  54. </el-col>
  55. <el-col>
  56. <el-form-item
  57. label="中文名称"
  58. size="default"
  59. prop="fullName"
  60. :rules="formRules.isNotNull"
  61. >
  62. <el-input
  63. v-model="tableForm.fullName"
  64. placeholder="请输入中文名称"
  65. />
  66. </el-form-item>
  67. </el-col>
  68. <el-col>
  69. <el-form-item
  70. label="中文简称"
  71. size="default"
  72. prop="abbreviation"
  73. :rules="formRules.isNotNull"
  74. >
  75. <el-input
  76. v-model="tableForm.abbreviation"
  77. placeholder="请输入中文简称"
  78. />
  79. </el-form-item>
  80. </el-col>
  81. <el-col>
  82. <el-form-item
  83. label="英文全称"
  84. size="default"
  85. prop="englishFullName"
  86. :rules="formRules.isNotNull"
  87. >
  88. <el-input
  89. v-model="tableForm.englishFullName"
  90. placeholder="请输入英文全称"
  91. />
  92. </el-form-item>
  93. </el-col>
  94. <el-col>
  95. <el-form-item
  96. label="英文简称"
  97. prop="englishAbbreviation"
  98. size="default"
  99. :rules="formRules.isNotNull"
  100. >
  101. <el-input
  102. v-model="tableForm.englishAbbreviation"
  103. placeholder="请输入英文简称"
  104. />
  105. </el-form-item>
  106. </el-col>
  107. <el-col>
  108. <el-form-item
  109. label="航司二字码"
  110. size="default"
  111. prop="ITATCode"
  112. :rules="formRules.isNotNull"
  113. >
  114. <el-input
  115. v-model="tableForm.ITATCode"
  116. placeholder="请输入航司二字码"
  117. />
  118. </el-form-item>
  119. </el-col>
  120. <el-col>
  121. <el-form-item
  122. label="航司三字码"
  123. size="default"
  124. prop="ICAOCode"
  125. :rules="formRules.isNotNull"
  126. >
  127. <el-input
  128. v-model="tableForm.ICAOCode"
  129. placeholder="请输入航司三字码"
  130. />
  131. </el-form-item>
  132. </el-col>
  133. <el-col>
  134. <el-form-item label="备注" size="default">
  135. <el-input
  136. type="textarea"
  137. v-model="tableForm.remarks"
  138. placeholder="请输入备注"
  139. />
  140. </el-form-item>
  141. </el-col>
  142. </el-row>
  143. </el-form>
  144. </div>
  145. </Dialog>
  146. </div>
  147. </div>
  148. </template>
  149. <script setup lang="ts">
  150. import DataTable from "@/components/tableTemp/index.vue";
  151. import Minheader from "@/components/minheader/index.vue";
  152. import Dialog from "@/components/dialog/index.vue";
  153. import { Query, GeneralDataReception } from "@/api/webApi";
  154. import { ElMessage } from "element-plus";
  155. import { useUserStore } from "@/store/user";
  156. const router = useRouter();
  157. const formRules = useElement().formRules;
  158. const page = ref(0); //分页参数
  159. const dataContent = ref({});
  160. const noMore = ref(false);
  161. const rowTitle = ref("");
  162. const tableCols = ref<any[]>([]); //表头数据
  163. const serviceId = ref<number | null>(null);
  164. const tableObj = ref({}); //增删改数据缓存
  165. const flag = ref(false); //弹窗开关
  166. const type = ref(""); //判断是否删除
  167. const conditon = ref("");
  168. const msgTitle = ref("新增航司信息维护"); //弹窗标题
  169. const tableForm = reactive({
  170. fullName: "",
  171. abbreviation: "",
  172. englishAbbreviation: "",
  173. ITATCode: "",
  174. ICAOCode: "",
  175. remarks: "",
  176. event: <number | string>"",
  177. airlineCompanyID: "",
  178. englishFullName: "",
  179. }); //弹窗内容
  180. //列表
  181. const tableData = ref<any[]>([]);
  182. const tableBtnGroup = ref([
  183. {
  184. name: "编辑",
  185. className: "editBtn",
  186. param: 2,
  187. is: "airline_editor_button",
  188. },
  189. {
  190. name: "删除",
  191. className: "delBtn",
  192. param: 3,
  193. is: "airlines_delete_button",
  194. },
  195. ]);
  196. //新增
  197. const addForm = () => {
  198. msgTitle.value = "新增航司信息维护";
  199. for (const key in tableForm) {
  200. tableForm[key] = "";
  201. }
  202. tableForm.event = 1;
  203. flag.value = true;
  204. type.value = "";
  205. };
  206. //取消
  207. const resetForm = () => {
  208. airlineCompanyForm.value?.resetFields();
  209. flag.value = false;
  210. // tableForm.fullName = "";
  211. // tableForm.abbreviation = "";
  212. // tableForm.englishAbbreviation = "";
  213. // tableForm.ITATCode = "";
  214. // tableForm.ICAOCode = "";
  215. // tableForm.remarks = "";
  216. // tableForm.airlineCompanyID = "";
  217. // tableForm.englishFullName = "";
  218. };
  219. //编辑-删除
  220. const btnClick = (row, index, param) => {
  221. if (param === 2) {
  222. msgTitle.value = "编辑航司信息维护";
  223. flag.value = true;
  224. type.value = "";
  225. tableForm.event = 2;
  226. tableForm.fullName = index.fullName;
  227. tableForm.abbreviation = index.abbreviation;
  228. tableForm.englishAbbreviation = index.englishAbbreviation;
  229. tableForm.ITATCode = index.ITATCode;
  230. tableForm.ICAOCode = index.ICAOCode;
  231. tableForm.remarks = index.remarks;
  232. tableForm.airlineCompanyID = index.airlineCompanyID;
  233. tableForm.englishFullName = index.englishFullName;
  234. } else if (param === 3) {
  235. msgTitle.value = "删除航司信息维护";
  236. flag.value = true;
  237. type.value = "del";
  238. tableForm.event = 3;
  239. tableForm.fullName = index.fullName;
  240. tableForm.abbreviation = index.abbreviation;
  241. tableForm.englishAbbreviation = index.englishAbbreviation;
  242. tableForm.ITATCode = index.ITATCode;
  243. tableForm.ICAOCode = index.ICAOCode;
  244. tableForm.remarks = index.remarks;
  245. tableForm.airlineCompanyID = index.airlineCompanyID;
  246. tableForm.englishFullName = index.englishFullName;
  247. } else if (param === 4) {
  248. }
  249. };
  250. //删除
  251. const eleDialog = () => {
  252. msgTitle.value = "删除航司信息维护";
  253. flag.value = true;
  254. type.value = "del";
  255. };
  256. const delRemove = () => {
  257. tableForm.event = 3;
  258. generalDataReception(tableForm);
  259. };
  260. //删除
  261. const delRest = () => {
  262. flag.value = false;
  263. };
  264. const gueryRoles = async () => {
  265. const route = router.currentRoute;
  266. const authMap = useUserStore().authMap;
  267. const role = route.value.meta?.roles?.[0];
  268. const { code, returnData } = await Query({
  269. id: DATACONTENT_ID.allId,
  270. dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
  271. });
  272. conditon.value = returnData.listValues[0].query_col_conditon;
  273. getQuery();
  274. };
  275. //获取表格数据
  276. const getQuery = async () => {
  277. try {
  278. const { code, returnData } = await Query({
  279. id: DATACONTENT_ID.airlineTableId,
  280. needPage: ++page.value,
  281. dataContent: Object.values(dataContent.value),
  282. });
  283. if (code === "0") {
  284. if (returnData.listValues.length === 0) {
  285. page.value--;
  286. noMore.value = true;
  287. }
  288. const titleColumn = returnData.columnSet.find(
  289. (item) => item.needShow == 1
  290. );
  291. if (titleColumn) {
  292. rowTitle.value = titleColumn.columnName;
  293. }
  294. tableData.value.push(...returnData.listValues);
  295. tableCols.value = [];
  296. if (conditon.value == null) {
  297. tableCols.value = returnData.columnSet;
  298. } else {
  299. tableCols.value = [];
  300. conditon.value.split(",").forEach((element) => {
  301. returnData.columnSet.forEach((res) => {
  302. if (element === res.columnName) {
  303. tableCols.value.push(res);
  304. }
  305. });
  306. });
  307. }
  308. tableCols.value.forEach((element) => {
  309. element.label = element.columnLabel;
  310. element.key = element.columnName;
  311. // if (element.columnName === "queryTemplate") {
  312. // element.width = "300px";
  313. // }
  314. });
  315. serviceId.value = returnData.submitID!;
  316. } else {
  317. page.value--;
  318. }
  319. } catch (error) {
  320. page.value--;
  321. }
  322. };
  323. //确认提交
  324. const airlineCompanyForm: any = ref(null);
  325. const submitForm = () => {
  326. airlineCompanyForm.value.validate((valid: any) => {
  327. if (valid) {
  328. generalDataReception(tableForm);
  329. } else {
  330. return false;
  331. }
  332. });
  333. };
  334. const resetTable = () => {
  335. page.value = 0;
  336. noMore.value = false;
  337. tableData.value = [];
  338. };
  339. const btnAuthMap = [
  340. ,
  341. "new_airlines_button",
  342. "airline_editor_button",
  343. "airlines_delete_button",
  344. ];
  345. //新增-编辑-删除
  346. const generalDataReception = async (data) => {
  347. try {
  348. data = {
  349. ...data,
  350. };
  351. const { code } = await GeneralDataReception({
  352. serviceId: serviceId.value,
  353. dataContent: JSON.stringify(data),
  354. btnAuth: btnAuthMap[data.event],
  355. });
  356. if (code == 0) {
  357. ElMessage.success(`操作成功`);
  358. // this.$message.success("操作成功");
  359. resetTable();
  360. gueryRoles();
  361. resetForm();
  362. flag.value = false;
  363. // rmFlag.value = false;
  364. tableObj.value = {};
  365. // this.$router.go(0);
  366. } else {
  367. ElMessage.error(`操作失败`);
  368. // this.$message.error("操作失败");
  369. // this.flag = false;
  370. // this.rmFlag = false;
  371. tableObj.value = {};
  372. resetForm();
  373. }
  374. } catch (error) {
  375. flag.value = false;
  376. // rmFlag.value = false;
  377. tableObj.value = {};
  378. resetForm();
  379. }
  380. };
  381. onMounted(() => {
  382. gueryRoles();
  383. });
  384. </script>
  385. <style lang="scss" scoped>
  386. ::v-deep .el-form-item__label {
  387. width: 100px;
  388. }
  389. .app-containers {
  390. height: calc(100vh - 180px);
  391. }
  392. </style>