index.vue 11 KB

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