index.vue 9.5 KB

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