index.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <div class="airportInfo scroll-y">
  3. <div class="wrap">
  4. <Minheader :is-auth="true" :is-statuser="true" @addForm="addForm">
  5. <template #header>
  6. <div class="status flex-wrap">
  7. <div class="manageTitle">特殊货物类型维护</div>
  8. </div>
  9. </template></Minheader
  10. >
  11. <div class="app-containers">
  12. <DataTable
  13. :tableHeader="tableCols"
  14. :tableData="tableData"
  15. :tableBtnGroup="tableBtnGroup"
  16. :tableProperty="{ rowKey: 'ID' }"
  17. @btnClick="btnClick"
  18. />
  19. </div>
  20. <Dialog
  21. :flag="flag"
  22. :type="type"
  23. :msgTitle="msgTitle"
  24. @resetForm="resetForm"
  25. @delRest="delRest"
  26. @submitForm="submitForm"
  27. @delRemove="delRemove"
  28. >
  29. <div class="diacont">
  30. <el-form :model="tableForm">
  31. <el-row :gutter="24">
  32. <el-col>
  33. <el-form-item label="类型名称" size="default">
  34. <el-input
  35. v-model="tableForm.specialTypeName"
  36. placeholder="请输入类型名称"
  37. />
  38. </el-form-item>
  39. </el-col>
  40. <el-col>
  41. <el-form-item label="类型编码" size="default">
  42. <el-input
  43. v-model="tableForm.specialType"
  44. placeholder="请输入类型编码"
  45. />
  46. </el-form-item>
  47. </el-col>
  48. <el-col>
  49. <el-form-item label="描述" size="default">
  50. <el-input
  51. type="textarea"
  52. v-model="tableForm.specialTypeDescribe"
  53. placeholder="请输入描述"
  54. />
  55. </el-form-item>
  56. </el-col>
  57. </el-row>
  58. </el-form>
  59. </div>
  60. </Dialog>
  61. </div>
  62. </div>
  63. </template>
  64. <script setup lang="ts">
  65. import DataTable from "@/components/tableTemp/index.vue";
  66. import Minheader from "@/components/minheader/index.vue";
  67. import Dialog from "@/components/dialog/index.vue";
  68. import { Query, GeneralDataReception } from "@/api/webApi";
  69. import { ElMessage } from "element-plus";
  70. const page = ref<number>(0); //分页参数
  71. const dataContent = ref<object>({});
  72. const noMore = ref<Boolean>(false);
  73. const rowTitle = ref<String>("");
  74. const tableCols = ref([]); //表头数据
  75. const serviceId = ref<String>("");
  76. const tableObj = ref({}); //增删改数据缓存
  77. const flag = ref<Boolean>(false); //弹窗开关
  78. const type = ref<String>(""); //判断是否删除
  79. const msgTitle = ref<String>("新增特殊货物类型维护"); //弹窗标题
  80. const tableColsCopys = reactive<Object>({}); //弹窗
  81. const tableForm = reactive({
  82. specialTypeID: "",
  83. specialType: "",
  84. specialTypeName: "",
  85. specialTypeDescribe: "",
  86. event: "",
  87. }); //弹窗内容
  88. //列表
  89. const tableData = ref([]);
  90. //表头
  91. const state = reactive({
  92. list: [
  93. { label: "类型名称", key: "name" },
  94. { label: "类型编码", key: "china" },
  95. { label: "描述", key: "englin" },
  96. ],
  97. listLoading: true,
  98. });
  99. const tableBtnGroup = ref([
  100. {
  101. name: "编辑",
  102. className: "editBtn",
  103. param: 2,
  104. },
  105. {
  106. name: "删除",
  107. className: "delBtn",
  108. param: 3,
  109. },
  110. ]);
  111. //新增
  112. const addForm = () => {
  113. msgTitle.value = "新增特殊货物类型维护";
  114. flag.value = true;
  115. type.value = "";
  116. tableForm.event = 1;
  117. };
  118. //取消
  119. const resetForm = () => {
  120. flag.value = false;
  121. tableForm.specialTypeID = "";
  122. tableForm.specialType = "";
  123. tableForm.specialTypeName = "";
  124. tableForm.specialTypeDescribe = "";
  125. };
  126. //编辑
  127. const editDialog = (data) => {
  128. msgTitle.value = "编辑特殊货物类型维护";
  129. flag.value = true;
  130. type.value = "";
  131. tableForm.name = data.name;
  132. tableForm.china = data.china;
  133. tableForm.englin = data.englin;
  134. };
  135. //删除
  136. const eleDialog = () => {
  137. msgTitle.value = "删除特殊货物类型维护";
  138. flag.value = true;
  139. type.value = "del";
  140. };
  141. const delRemove = () => {
  142. tableForm.event = 3;
  143. generalDataReception(tableForm);
  144. };
  145. //删除
  146. const delRest = () => {
  147. flag.value = false;
  148. };
  149. //编辑-删除
  150. const btnClick = (row, index, param) => {
  151. if (param === 2) {
  152. msgTitle.value = "编辑特殊货物类型维护";
  153. flag.value = true;
  154. type.value = "";
  155. tableForm.event = 2;
  156. tableForm.specialTypeID = index.specialTypeID;
  157. tableForm.specialType = index.specialType;
  158. tableForm.specialTypeName = index.specialTypeName;
  159. tableForm.specialTypeDescribe = index.specialTypeDescribe;
  160. } else if (param === 3) {
  161. msgTitle.value = "删除特殊货物类型维护";
  162. flag.value = true;
  163. type.value = "del";
  164. tableForm.event = 3;
  165. tableForm.specialTypeID = index.specialTypeID;
  166. tableForm.specialType = index.specialType;
  167. tableForm.specialTypeName = index.specialTypeName;
  168. tableForm.specialTypeDescribe = index.specialTypeDescribe;
  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 submitForm = () => {
  210. generalDataReception(tableForm);
  211. };
  212. const resetTable = () => {
  213. page.value = 0;
  214. noMore.value = false;
  215. tableData.value = [];
  216. };
  217. //新增-编辑-删除
  218. const generalDataReception = async (data) => {
  219. try {
  220. data = {
  221. ...data,
  222. };
  223. const { code } = await GeneralDataReception({
  224. serviceId: serviceId.value,
  225. dataContent: JSON.stringify(data),
  226. });
  227. if (code == 0) {
  228. ElMessage.success(`操作成功`);
  229. // this.$message.success("操作成功");
  230. resetTable();
  231. getQuery();
  232. resetForm();
  233. flag.value = false;
  234. // rmFlag.value = false;
  235. tableObj.value = {};
  236. // this.$router.go(0);
  237. } else {
  238. ElMessage.error(`操作失败`);
  239. // this.$message.error("操作失败");
  240. // this.flag = false;
  241. // this.rmFlag = false;
  242. tableObj.value = {};
  243. resetForm();
  244. }
  245. } catch (error) {
  246. flag.value = false;
  247. // rmFlag.value = false;
  248. tableObj.value = {};
  249. resetForm();
  250. }
  251. };
  252. getQuery();
  253. </script>
  254. <style lang="scss" scoped>
  255. ::v-deep .el-form-item__label {
  256. width: 80px;
  257. }
  258. </style>