index.vue 12 KB

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