index.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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 { Query, GeneralDataReception } from "@/api/webApi";
  119. import { ElMessage } from "element-plus";
  120. const formRules = useElement().formRules;
  121. const page = ref<number>(0); //分页参数
  122. const dataContent = ref<object>({});
  123. const noMore = ref<boolean>(false);
  124. const rowTitle = ref<string>("");
  125. const tableCols = ref<any>([]); //表头数据
  126. const serviceId = ref<any>("");
  127. const tableObj = ref({}); //增删改数据缓存
  128. const flag = ref<boolean>(false); //弹窗开关
  129. const type = ref<string>(""); //判断是否删除
  130. const conditon = ref("");
  131. const msgTitle = ref<string>("新增容器维护"); //弹窗标题
  132. const tableColsCopys = reactive<Object>({}); //弹窗
  133. const tableForm = reactive<any>({
  134. containerID: "",
  135. containerName: "",
  136. containerCode: "",
  137. containerDesc: "",
  138. containerUnit: "",
  139. event: "",
  140. }); //弹窗内容
  141. //列表
  142. const tableData = ref<any>([]);
  143. //表头
  144. const state = reactive({
  145. list: [
  146. { label: "容器名称", key: "name" },
  147. { label: "容器标识符", key: "china" },
  148. { label: "容器描述", key: "englin" },
  149. ],
  150. listLoading: true,
  151. });
  152. const tableBtnGroup = ref([
  153. {
  154. name: "编辑",
  155. className: "editBtn",
  156. param: 2,
  157. is: "container_edit_button",
  158. },
  159. {
  160. name: "删除",
  161. className: "delBtn",
  162. param: 3,
  163. is: "container_deletion_button",
  164. },
  165. ]);
  166. const searchForms = (val) => {
  167. getQuery(val);
  168. };
  169. const clearForm = () => {
  170. getQuery();
  171. };
  172. //新增
  173. const addForm = () => {
  174. msgTitle.value = "新增类型维护";
  175. flag.value = true;
  176. type.value = "";
  177. for (const key in tableForm) {
  178. tableForm[key] = "";
  179. }
  180. tableForm.event = 1;
  181. };
  182. //取消
  183. const resetForm = () => {
  184. containerMaintenanceForm.value?.resetFields();
  185. flag.value = false;
  186. // tableForm.containerID = "";
  187. // tableForm.containerName = "";
  188. // tableForm.containerCode = "";
  189. // tableForm.containerDesc = "";
  190. // tableForm.containerUnit = "";
  191. };
  192. //编辑
  193. const editDialog = (data) => {
  194. msgTitle.value = "编辑容器类型维护";
  195. flag.value = true;
  196. type.value = "";
  197. tableForm.name = data.name;
  198. tableForm.china = data.china;
  199. tableForm.englin = data.englin;
  200. };
  201. //删除
  202. const eleDialog = () => {
  203. msgTitle.value = "删除容器类型维护";
  204. flag.value = true;
  205. type.value = "del";
  206. };
  207. const delRemove = () => {
  208. const obj = {
  209. containerID: tableForm.containerID,
  210. event: 3,
  211. };
  212. generalDataReception(obj);
  213. };
  214. //删除
  215. const delRest = () => {
  216. flag.value = false;
  217. };
  218. //编辑-删除
  219. const btnClick = (row, index, param) => {
  220. if (param === 2) {
  221. msgTitle.value = "编辑容器类型维护";
  222. flag.value = true;
  223. type.value = "";
  224. tableForm.event = 2;
  225. tableForm.containerID = index.containerID;
  226. tableForm.containerName = index.containerName;
  227. tableForm.containerCode = index.containerCode;
  228. tableForm.containerDesc = index.containerDesc;
  229. tableForm.containerUnit = index.containerUnit;
  230. } else if (param === 3) {
  231. msgTitle.value = "删除容器类型维护";
  232. flag.value = true;
  233. type.value = "del";
  234. tableForm.event = 3;
  235. tableForm.containerID = index.containerID;
  236. tableForm.containerName = index.containerName;
  237. tableForm.containerCode = index.containerCode;
  238. tableForm.containerDesc = index.containerDesc;
  239. } else if (param === 4) {
  240. }
  241. };
  242. const gueryRoles = async () => {
  243. const { code, returnData } = await Query({
  244. id: DATACONTENT_ID.allId,
  245. needPage: ++page.value,
  246. dataContent: Object.values(dataContent.value),
  247. });
  248. conditon.value = returnData.listValues[0].query_col_conditon;
  249. getQuery();
  250. };
  251. //获取表格数据
  252. const getQuery = async (val = "") => {
  253. try {
  254. const { code, returnData } = await Query({
  255. id: DATACONTENT_ID.containerNodeId,
  256. needPage: ++page.value,
  257. dataContent: [val],
  258. });
  259. if (code === "0") {
  260. if (returnData.listValues.length === 0) {
  261. page.value--;
  262. noMore.value = true;
  263. }
  264. const titleColumn = returnData.columnSet.find(
  265. (item) => item.needShow == 1
  266. );
  267. if (titleColumn) {
  268. rowTitle.value = titleColumn.columnName;
  269. }
  270. tableData.value = [...returnData.listValues];
  271. tableCols.value = [];
  272. if (conditon.value == null) {
  273. tableCols.value = returnData.columnSet;
  274. } else {
  275. tableCols.value = [];
  276. conditon.value.split(",").forEach((element) => {
  277. returnData.columnSet.forEach((res) => {
  278. if (element === res.columnName) {
  279. tableCols.value.push(res);
  280. }
  281. });
  282. });
  283. }
  284. tableCols.value.forEach((element) => {
  285. element.label = element.columnLabel;
  286. element.key = element.columnName;
  287. // if (element.columnName === "queryTemplate") {
  288. // element.width = "300px";
  289. // }
  290. });
  291. serviceId.value = returnData.submitID;
  292. } else {
  293. page.value--;
  294. }
  295. } catch (error) {
  296. page.value--;
  297. }
  298. };
  299. //确认提交
  300. const containerMaintenanceForm: any = ref(null);
  301. const submitForm = () => {
  302. containerMaintenanceForm.value.validate((valid: any) => {
  303. if (valid) {
  304. generalDataReception(tableForm);
  305. } else {
  306. return false;
  307. }
  308. });
  309. };
  310. const resetTable = () => {
  311. page.value = 0;
  312. noMore.value = false;
  313. tableData.value = [];
  314. };
  315. const btnAuthMap = [
  316. ,
  317. "container_addition_button",
  318. "container_edit_button",
  319. "container_deletion_button",
  320. ];
  321. //新增-编辑-删除
  322. const generalDataReception = async (data) => {
  323. try {
  324. data = {
  325. ...data,
  326. };
  327. const { code } = await GeneralDataReception({
  328. serviceId: serviceId.value,
  329. dataContent: JSON.stringify(data),
  330. btnAuth: btnAuthMap[data.event],
  331. });
  332. if (code == 0) {
  333. ElMessage.success(`操作成功`);
  334. // this.$message.success("操作成功");
  335. resetTable();
  336. gueryRoles();
  337. resetForm();
  338. flag.value = false;
  339. // rmFlag.value = false;
  340. tableObj.value = {};
  341. // this.$router.go(0);
  342. } else {
  343. ElMessage.error(`操作失败`);
  344. // this.$message.error("操作失败");
  345. // this.flag = false;
  346. // this.rmFlag = false;
  347. tableObj.value = {};
  348. resetForm();
  349. }
  350. } catch (error) {
  351. flag.value = false;
  352. // rmFlag.value = false;
  353. tableObj.value = {};
  354. resetForm();
  355. }
  356. };
  357. gueryRoles();
  358. </script>
  359. <style lang="scss" scoped>
  360. ::v-deep .el-form-item__label {
  361. width: 130px;
  362. }
  363. </style>