index.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <div class="airportInfo scroll-y">
  3. <div class="wrap">
  4. <Minheader :is-auth="true" :is-btn="true" :is-search="true" :is-statuser="true" powerData="new_special_goods_type_button" @searchForms="searchForms" @clearForm="clearForm" @addForm="addForm">
  5. <template #header>
  6. <div class="status flex-wrap">
  7. <div class="manageTitle">特殊货物类型维护</div>
  8. </div>
  9. </template>
  10. </Minheader>
  11. <div class="app-containers">
  12. <DataTable :tableHeader="tableCols" :tableData="tableData" :tableBtnGroup="tableBtnGroup" :tableProperty="{ rowKey: 'ID' }" @btnClick="btnClick" />
  13. </div>
  14. <Dialog :flag="flag" :type="type" :msgTitle="msgTitle" :delName="tableForm.specialTypeName" @resetForm="resetForm" @delRest="delRest" @submitForm="submitForm" @delRemove="delRemove">
  15. <div class="diacont">
  16. <el-form :model="tableForm" :rules="formRules" ref="specialCargoMaintenanceForm">
  17. <el-row :gutter="24">
  18. <el-col>
  19. <el-form-item label="特殊货物类型ID" size="default" prop="specialTypeID" :rules="formRules.isNotNull">
  20. <el-input v-model="tableForm.specialTypeID" placeholder="请输入特殊货物类型ID" />
  21. </el-form-item>
  22. </el-col>
  23. <el-col>
  24. <el-form-item label="特殊货物类型名称" size="default" prop="specialTypeName" :rules="formRules.isNotNull">
  25. <el-input v-model="tableForm.specialTypeName" placeholder="请输入特殊货物类型名称" />
  26. </el-form-item>
  27. </el-col>
  28. <el-col>
  29. <el-form-item label="特殊货物类型编码" size="default" prop="specialType" :rules="formRules.isNotNull">
  30. <el-input v-model="tableForm.specialType" placeholder="请输入特殊货物类型编码" />
  31. </el-form-item>
  32. </el-col>
  33. <el-col>
  34. <el-form-item label="特殊货物类型简称" size="default" prop="abbspecialType" :rules="formRules.isNotNull">
  35. <el-input v-model="tableForm.abbspecialType" placeholder="请输入特殊货物类型简称" />
  36. </el-form-item>
  37. </el-col>
  38. <el-col>
  39. <el-form-item label="备注" size="default">
  40. <el-input type="textarea" v-model="tableForm.specialTypeDescribe" placeholder="请输入备注" />
  41. </el-form-item>
  42. </el-col>
  43. </el-row>
  44. </el-form>
  45. </div>
  46. </Dialog>
  47. </div>
  48. </div>
  49. </template>
  50. <script setup lang="ts">
  51. import DataTable from "@/components/tableTemp/index.vue";
  52. import Minheader from "@/components/minheader/index.vue";
  53. import Dialog from "@/components/dialog/index.vue";
  54. import { Query, GeneralDataReception } from "@/api/webApi";
  55. import { ElMessage } from "element-plus";
  56. const formRules = useElement().formRules;
  57. const page = ref<number>(0); //分页参数
  58. const dataContent = ref<object>({});
  59. const noMore = ref<boolean>(false);
  60. const rowTitle = ref<string>("");
  61. const tableCols = ref<any>([]); //表头数据
  62. const serviceId = ref<any>("");
  63. const tableObj = ref({}); //增删改数据缓存
  64. const flag = ref<boolean>(false); //弹窗开关
  65. const type = ref<string>(""); //判断是否删除
  66. const msgTitle = ref<string>("新增特殊货物类型维护"); //弹窗标题
  67. const tableColsCopys = reactive<Object>({}); //弹窗
  68. const tableForm = reactive<any>({
  69. specialTypeID: "",
  70. specialType: "",
  71. specialTypeName: "",
  72. specialTypeDescribe: "",
  73. abbspecialType: "",
  74. event: "",
  75. }); //弹窗内容
  76. //列表
  77. const tableData = ref<any>([]);
  78. //表头
  79. const state = reactive({
  80. list: [
  81. { label: "类型名称", key: "name" },
  82. { label: "类型编码", key: "china" },
  83. { label: "描述", key: "englin" },
  84. ],
  85. listLoading: true,
  86. });
  87. const tableBtnGroup = ref([
  88. {
  89. name: "编辑",
  90. className: "editBtn",
  91. param: 2,
  92. is: "edit_special_cargo_type_button",
  93. },
  94. {
  95. name: "删除",
  96. className: "delBtn",
  97. param: 3,
  98. is: "special_cargo_type_deletion_button",
  99. },
  100. ]);
  101. const searchForms = (val) => {
  102. console.log(val);
  103. };
  104. const clearForm = () => {
  105. console.log("清除");
  106. };
  107. //新增
  108. const addForm = () => {
  109. msgTitle.value = "新增特殊货物类型维护";
  110. flag.value = true;
  111. type.value = "";
  112. tableForm.event = 1;
  113. };
  114. //取消
  115. const resetForm = () => {
  116. specialCargoMaintenanceForm.value?.resetFields();
  117. flag.value = false;
  118. // tableForm.specialTypeID = "";
  119. // tableForm.specialType = "";
  120. // tableForm.specialTypeName = "";
  121. // tableForm.specialTypeDescribe = "";
  122. // tableForm.abbspecialType = "";
  123. };
  124. //编辑
  125. const editDialog = (data) => {
  126. msgTitle.value = "编辑特殊货物类型维护";
  127. flag.value = true;
  128. type.value = "";
  129. tableForm.name = data.name;
  130. tableForm.china = data.china;
  131. tableForm.englin = data.englin;
  132. };
  133. //删除
  134. const eleDialog = () => {
  135. msgTitle.value = "删除特殊货物类型维护";
  136. flag.value = true;
  137. type.value = "del";
  138. };
  139. const delRemove = () => {
  140. tableForm.event = 3;
  141. generalDataReception(tableForm);
  142. };
  143. //删除
  144. const delRest = () => {
  145. flag.value = false;
  146. };
  147. //编辑-删除
  148. const btnClick = (row, index, param) => {
  149. if (param === 2) {
  150. msgTitle.value = "编辑特殊货物类型维护";
  151. flag.value = true;
  152. type.value = "";
  153. tableForm.event = 2;
  154. tableForm.specialTypeID = index.specialTypeID;
  155. tableForm.specialType = index.specialType;
  156. tableForm.specialTypeName = index.specialTypeName;
  157. tableForm.specialTypeDescribe = index.specialTypeDescribe;
  158. tableForm.abbspecialType = index.abbspecialType;
  159. } else if (param === 3) {
  160. msgTitle.value = "删除特殊货物类型维护";
  161. flag.value = true;
  162. type.value = "del";
  163. tableForm.event = 3;
  164. tableForm.specialTypeID = index.specialTypeID;
  165. tableForm.specialType = index.specialType;
  166. tableForm.specialTypeName = index.specialTypeName;
  167. tableForm.specialTypeDescribe = index.specialTypeDescribe;
  168. tableForm.abbspecialType = index.abbspecialType;
  169. } else if (param === 4) {
  170. }
  171. };
  172. //获取表格数据
  173. const getQuery = async () => {
  174. try {
  175. const { code, returnData } = await Query({
  176. id: DATACONTENT_ID.bagTableId,
  177. needPage: ++page.value,
  178. dataContent: Object.values(dataContent.value),
  179. });
  180. if (code === "0") {
  181. if (returnData.listValues.length === 0) {
  182. page.value--;
  183. noMore.value = true;
  184. }
  185. const titleColumn = returnData.columnSet.find(
  186. (item) => item.needShow === 1
  187. );
  188. if (titleColumn) {
  189. rowTitle.value = titleColumn.columnName;
  190. }
  191. tableData.value.push(...returnData.listValues);
  192. tableCols.value = returnData.columnSet;
  193. tableCols.value.forEach((element) => {
  194. element.label = element.columnLabel;
  195. element.key = element.columnName;
  196. // if (element.columnName === "queryTemplate") {
  197. // element.width = "300px";
  198. // }
  199. });
  200. serviceId.value = returnData.submitID;
  201. } else {
  202. page.value--;
  203. }
  204. } catch (error) {
  205. page.value--;
  206. }
  207. };
  208. //确认提交
  209. const specialCargoMaintenanceForm: any = ref(null);
  210. const submitForm = () => {
  211. specialCargoMaintenanceForm.value.validate((valid: any) => {
  212. if (valid) {
  213. generalDataReception(tableForm);
  214. } else {
  215. return false;
  216. }
  217. });
  218. };
  219. const resetTable = () => {
  220. page.value = 0;
  221. noMore.value = false;
  222. tableData.value = [];
  223. };
  224. const btnAuthMap = [, 'new_special_goods_type_button', 'edit_special_cargo_type_button', 'special_cargo_type_deletion_button']
  225. //新增-编辑-删除
  226. const generalDataReception = async (data) => {
  227. try {
  228. data = {
  229. ...data,
  230. };
  231. const { code } = await GeneralDataReception({
  232. serviceId: serviceId.value,
  233. dataContent: JSON.stringify(data),
  234. btnAuth: btnAuthMap[data.event],
  235. });
  236. if (code == 0) {
  237. ElMessage.success(`操作成功`);
  238. // this.$message.success("操作成功");
  239. resetTable();
  240. getQuery();
  241. resetForm();
  242. flag.value = false;
  243. // rmFlag.value = false;
  244. tableObj.value = {};
  245. // this.$router.go(0);
  246. } else {
  247. ElMessage.error(`操作失败`);
  248. // this.$message.error("操作失败");
  249. // this.flag = false;
  250. // this.rmFlag = false;
  251. tableObj.value = {};
  252. resetForm();
  253. }
  254. } catch (error) {
  255. flag.value = false;
  256. // rmFlag.value = false;
  257. tableObj.value = {};
  258. resetForm();
  259. }
  260. };
  261. getQuery();
  262. </script>
  263. <style lang="scss" scoped>
  264. ::v-deep .el-form-item__label {
  265. width: 140px;
  266. }
  267. </style>