index.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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="tableColst"
  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.code"
  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="航司二字码"
  45. prop="code"
  46. size="default"
  47. :rules="formRules.isNotNull"
  48. >
  49. <el-input
  50. v-model="tableForm.code"
  51. placeholder="请输入航司二字码"
  52. />
  53. </el-form-item>
  54. <el-form-item label="进港" prop="in_type" size="default">
  55. <el-checkbox
  56. v-model="tableForm.in_type"
  57. :true-label="1"
  58. :false-label="0"
  59. size="default"
  60. />
  61. </el-form-item>
  62. <el-form-item label="出港" prop="out_type" size="default">
  63. <el-checkbox
  64. v-model="tableForm.out_type"
  65. :true-label="1"
  66. :false-label="0"
  67. size="default"
  68. />
  69. </el-form-item>
  70. </el-col>
  71. </el-row>
  72. </el-form>
  73. </div>
  74. </Dialog>
  75. </div>
  76. </div>
  77. </template>
  78. <script setup lang="ts">
  79. import DataTable from "@/components/tableTemp/index.vue";
  80. import Minheader from "@/components/minheader/index.vue";
  81. import Dialog from "@/components/dialog/index.vue";
  82. import { Query, GeneralDataReception } from "@/api/webApi";
  83. import { ElMessage } from "element-plus";
  84. import { CommonTableColumn, CommonValue } from "~/common";
  85. import { useUserStore } from "@/store/user";
  86. const router = useRouter();
  87. const tableColumns = [
  88. {
  89. columnLabel: "航司二字码",
  90. columnName: "code",
  91. },
  92. {
  93. columnLabel: "进港",
  94. columnName: "in_type_zh",
  95. },
  96. {
  97. columnLabel: "出港",
  98. columnName: "out_type_zh",
  99. },
  100. ].map((column) => ({
  101. columnDescribe: "",
  102. dataType: "",
  103. listqueryTemplateID: null,
  104. needCount: null,
  105. needFilters: null,
  106. needGroup: null,
  107. needSearch: null,
  108. needShow: 1,
  109. needSort: null,
  110. orderNumber: null,
  111. queryTemplateColumnSetID: null,
  112. queryTemplateID: null,
  113. ...column,
  114. }));
  115. const conditon = ref("");
  116. const conditonLisy = ref<any>([]);
  117. const tableDatacp = ref<any[]>([]);
  118. const formRules = useElement().formRules;
  119. const page = ref(0); //分页参数
  120. const dataContent = ref<any>({});
  121. const noMore = ref(false);
  122. const tableCols = ref<CommonTableColumn[]>(tableColumns); //表头数据
  123. const tableColst = ref<any[]>([]); //表头数据
  124. const serviceId = ref<number | null>(null);
  125. const tableObj = ref<any>({}); //增删改数据缓存
  126. const flag = ref(false); //弹窗开关
  127. const type = ref(""); //判断是否删除
  128. const msgTitle = ref("新增屏蔽航司"); //弹窗标题
  129. const tableForm = reactive({
  130. id: null,
  131. code: "",
  132. in_type: 1,
  133. out_type: 1,
  134. event: 0,
  135. }); //弹窗内容
  136. //列表
  137. const tableData = ref<CommonValue[]>([]);
  138. const tableBtnGroup = ref([
  139. {
  140. name: "编辑",
  141. className: "editBtn",
  142. param: 2,
  143. is: "airline_editor_button",
  144. },
  145. {
  146. name: "删除",
  147. className: "delBtn",
  148. param: 3,
  149. is: "airlines_delete_button",
  150. },
  151. ]);
  152. //新增
  153. const addForm = () => {
  154. msgTitle.value = "新增屏蔽航司";
  155. for (const key in tableForm) {
  156. tableForm[key] = "";
  157. }
  158. tableForm.event = 1;
  159. flag.value = true;
  160. type.value = "";
  161. };
  162. //取消
  163. const resetForm = () => {
  164. airlineCompanyForm.value?.resetFields();
  165. flag.value = false;
  166. // tableForm.id = null
  167. // tableForm.code = ''
  168. // tableForm.in_type = 1
  169. // tableForm.out_type = 1
  170. // tableForm.event = 0
  171. };
  172. //编辑-删除
  173. const btnClick = (index, row, param) => {
  174. if (param === 2) {
  175. msgTitle.value = "编辑屏蔽航司";
  176. flag.value = true;
  177. type.value = "";
  178. tableForm.event = 2;
  179. tableForm.id = row.id;
  180. tableForm.code = row.code;
  181. tableForm.in_type = row.in_type;
  182. tableForm.out_type = row.out_type;
  183. } else if (param === 3) {
  184. msgTitle.value = "删除屏蔽航司";
  185. flag.value = true;
  186. type.value = "del";
  187. tableForm.event = 3;
  188. tableForm.id = row.id;
  189. tableForm.code = row.code;
  190. tableForm.in_type = row.in_type;
  191. tableForm.out_type = row.out_type;
  192. }
  193. };
  194. //删除
  195. const delRemove = () => {
  196. tableForm.event = 3;
  197. generalDataReception(tableForm);
  198. };
  199. //删除
  200. const delRest = () => {
  201. flag.value = false;
  202. };
  203. const gueryRoles = async () => {
  204. const route = router.currentRoute;
  205. const authMap = useUserStore().authMap;
  206. const role = route.value.meta?.roles?.[0];
  207. const { code, returnData } = await Query({
  208. id: DATACONTENT_ID.allId,
  209. needPage: ++page.value,
  210. dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
  211. });
  212. conditon.value = returnData.listValues[0].query_col_conditon;
  213. conditonLisy.value = returnData.listValues[0].query_row_condition
  214. ? JSON.parse(returnData.listValues[0].query_row_condition)
  215. : null;
  216. if (conditon.value == null) {
  217. tableColst.value = tableCols.value;
  218. } else {
  219. tableColst.value = [];
  220. conditon.value.split(",").forEach((element) => {
  221. tableCols.value.forEach((res) => {
  222. if (element === res.columnName) {
  223. tableColst.value.push(res);
  224. }
  225. });
  226. });
  227. }
  228. };
  229. //获取表格数据
  230. const getQuery = async () => {
  231. try {
  232. const { code, returnData } = await Query({
  233. id: DATACONTENT_ID.hiddenCompany,
  234. needPage: ++page.value,
  235. dataContent: Object.values(dataContent.value),
  236. });
  237. if (code === "0") {
  238. if (returnData.listValues.length === 0) {
  239. page.value--;
  240. noMore.value = true;
  241. }
  242. tableDatacp.value.push(
  243. ...returnData.listValues.map((row) => ({
  244. in_type_zh: row.in_type ? "是" : "否",
  245. out_type_zh: row.out_type ? "是" : "否",
  246. ...row,
  247. }))
  248. );
  249. tableData.value = [];
  250. if (conditonLisy.value == null) {
  251. tableData.value = tableDatacp.value;
  252. } else {
  253. let art = [];
  254. let arts = [];
  255. let art2 = [];
  256. let art3 = [];
  257. conditonLisy.value.forEach((element) => {
  258. if (element.conn == "%") {
  259. tableDatacp.value.forEach((res) => {
  260. if (res[element.key] && res[element.key].includes(element.val)) {
  261. art.push(res);
  262. }
  263. });
  264. }
  265. if (element.conn == "=") {
  266. if (art.length == 0) {
  267. art = tableDatacp.value;
  268. }
  269. art.forEach((res) => {
  270. if (res[element.key] == element.val) {
  271. arts.push(res);
  272. }
  273. });
  274. }
  275. setTimeout(() => {
  276. if (element.conn == ">") {
  277. if (arts.length == 0) {
  278. arts = tableDatacp.value;
  279. }
  280. arts.forEach((res) => {
  281. if (Number(res[element.key]) - Number(element.val) > 0) {
  282. art2.push(res);
  283. }
  284. });
  285. }
  286. });
  287. setTimeout(() => {
  288. if (element.conn == "<") {
  289. if (art2.length == 0) {
  290. art2 = tableDatacp.value;
  291. }
  292. art2.forEach((res) => {
  293. if (Number(res[element.key]) - Number(element.val) < 0) {
  294. art3.push(res);
  295. }
  296. });
  297. }
  298. tableData.value = art3.length > 0 ? art3 : art2;
  299. });
  300. });
  301. }
  302. serviceId.value = returnData.submitID!;
  303. } else {
  304. page.value--;
  305. }
  306. } catch (error) {
  307. page.value--;
  308. }
  309. };
  310. //确认提交
  311. const airlineCompanyForm: any = ref(null);
  312. const submitForm = () => {
  313. airlineCompanyForm.value.validate((valid: any) => {
  314. if (valid) {
  315. generalDataReception(tableForm);
  316. } else {
  317. return false;
  318. }
  319. });
  320. };
  321. const resetTable = () => {
  322. page.value = 0;
  323. noMore.value = false;
  324. tableData.value = [];
  325. };
  326. const btnAuthMap = [
  327. ,
  328. "new_airlines_button",
  329. "airline_editor_button",
  330. "airlines_delete_button",
  331. ];
  332. //新增-编辑-删除
  333. const generalDataReception = async (data) => {
  334. try {
  335. data = {
  336. ...data,
  337. };
  338. const { code } = await GeneralDataReception({
  339. serviceId: serviceId.value,
  340. dataContent: JSON.stringify(data),
  341. btnAuth: btnAuthMap[data.event],
  342. });
  343. if (code == 0) {
  344. ElMessage.success(`操作成功`);
  345. // this.$message.success("操作成功");
  346. resetTable();
  347. getQuery();
  348. resetForm();
  349. flag.value = false;
  350. // rmFlag.value = false;
  351. tableObj.value = {};
  352. // this.$router.go(0);
  353. } else {
  354. ElMessage.error(`操作失败`);
  355. // this.$message.error("操作失败");
  356. // this.flag = false;
  357. // this.rmFlag = false;
  358. tableObj.value = {};
  359. resetForm();
  360. }
  361. } catch (error) {
  362. flag.value = false;
  363. // rmFlag.value = false;
  364. tableObj.value = {};
  365. resetForm();
  366. }
  367. };
  368. onMounted(() => {
  369. gueryRoles();
  370. getQuery();
  371. });
  372. </script>
  373. <style lang="scss" scoped>
  374. ::v-deep .el-form-item__label {
  375. width: 100px;
  376. }
  377. .app-containers {
  378. height: calc(100vh - 180px);
  379. }
  380. </style>