index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  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="new_freight_forwarder_button"
  10. @searchForms="searchForms"
  11. @clearForm="clearForm"
  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.agentName"
  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="cargoInformationForm"
  44. >
  45. <el-row :gutter="24">
  46. <el-col>
  47. <el-form-item
  48. label="货代ID"
  49. size="default"
  50. prop="agentID"
  51. :rules="formRules.isNotNull"
  52. >
  53. <el-input
  54. v-model="tableForm.agentID"
  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="agentName"
  64. :rules="formRules.isNotNull"
  65. >
  66. <el-input
  67. v-model="tableForm.agentName"
  68. placeholder="请输入货代名称"
  69. />
  70. </el-form-item>
  71. </el-col>
  72. <el-col>
  73. <el-form-item
  74. label="货代编码"
  75. size="default"
  76. prop="agentCode"
  77. :rules="formRules.isNotNull"
  78. >
  79. <el-input
  80. v-model="tableForm.agentCode"
  81. placeholder="请输入货代编码"
  82. />
  83. </el-form-item>
  84. </el-col>
  85. <el-col>
  86. <el-form-item
  87. label="货代等级"
  88. size="default"
  89. prop="level"
  90. :rules="formRules.isNotNull"
  91. >
  92. <el-input
  93. v-model="tableForm.level"
  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.agentDesc"
  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. import { useUserStore } from "@/store/user";
  121. const formRules = useElement().formRules;
  122. const router = useRouter();
  123. const page = ref<number>(0); //分页参数
  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. agentID: "",
  139. agentName: "",
  140. agentCode: "",
  141. level: "",
  142. agentDesc: "",
  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. { label: "货代描述", key: "two" },
  154. ],
  155. listLoading: true,
  156. });
  157. const tableBtnGroup = ref([
  158. {
  159. name: "编辑",
  160. className: "editBtn",
  161. param: 2,
  162. is: "freight_forwarder_editor_button",
  163. },
  164. {
  165. name: "删除",
  166. className: "delBtn",
  167. param: 3,
  168. is: "freight_forwarder_deletion_button",
  169. },
  170. ]);
  171. const searchForms = (val) => {
  172. gueryRoles();
  173. getQuery(val);
  174. };
  175. const clearForm = () => {
  176. gueryRoles();
  177. };
  178. //新增
  179. const addForm = () => {
  180. msgTitle.value = "新增货代管理";
  181. flag.value = true;
  182. type.value = "";
  183. for (const key in tableForm) {
  184. tableForm[key] = "";
  185. }
  186. tableForm.event = 1;
  187. };
  188. //取消
  189. const resetForm = () => {
  190. cargoInformationForm.value?.resetFields();
  191. flag.value = false;
  192. // tableForm.agentID = "";
  193. // tableForm.agentName = "";
  194. // tableForm.agentCode = "";
  195. // tableForm.agentDesc = "";
  196. };
  197. //编辑
  198. const editDialog = (data) => {
  199. msgTitle.value = "编辑货代管理";
  200. flag.value = true;
  201. type.value = "";
  202. tableForm.name = data.name;
  203. tableForm.china = data.china;
  204. tableForm.two = data.two;
  205. };
  206. //删除
  207. const eleDialog = () => {
  208. msgTitle.value = "删除货代管理";
  209. flag.value = true;
  210. type.value = "del";
  211. };
  212. const delRemove = () => {
  213. tableForm.event = 3;
  214. generalDataReception(tableForm);
  215. };
  216. //删除
  217. const delRest = () => {
  218. flag.value = false;
  219. };
  220. //编辑-删除
  221. const btnClick = (row, index, param) => {
  222. if (param === 2) {
  223. msgTitle.value = "编辑货代管理";
  224. flag.value = true;
  225. type.value = "";
  226. tableForm.event = 2;
  227. tableForm.agentID = index.agentID;
  228. tableForm.agentName = index.agentName;
  229. tableForm.agentCode = index.agentCode;
  230. tableForm.level = index.level;
  231. tableForm.agentDesc = index.agentDesc;
  232. } else if (param === 3) {
  233. msgTitle.value = "删除货代管理";
  234. flag.value = true;
  235. type.value = "del";
  236. tableForm.event = 3;
  237. tableForm.agentID = index.agentID;
  238. tableForm.agentName = index.agentName;
  239. tableForm.agentCode = index.agentCode;
  240. tableForm.level = index.level;
  241. tableForm.agentDesc = index.agentDesc;
  242. } else if (param === 4) {
  243. }
  244. };
  245. const gueryRoles = async () => {
  246. const route = router.currentRoute;
  247. const authMap = useUserStore().authMap;
  248. const role = route.value.meta?.roles?.[0];
  249. const { code, returnData } = await Query({
  250. id: DATACONTENT_ID.allId,
  251. dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
  252. });
  253. conditon.value = returnData.listValues[0].query_col_conditon;
  254. conditonLisy.value = returnData.listValues[0].query_row_condition
  255. ? JSON.parse(returnData.listValues[0].query_row_condition)
  256. : null;
  257. getQuery();
  258. };
  259. //获取表格数据
  260. const getQuery = async (val = "") => {
  261. try {
  262. const { code, returnData } = await Query({
  263. id: DATACONTENT_ID.forwarderNodeId,
  264. needPage: ++page.value,
  265. dataContent: [val],
  266. });
  267. if (code === "0") {
  268. if (returnData.listValues.length === 0) {
  269. tableData.value = [];
  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. if (val) {
  280. tableDatacp.value = [...returnData.listValues];
  281. } else {
  282. tableDatacp.value.push(...returnData.listValues);
  283. }
  284. tableData.value = [];
  285. if (conditonLisy.value == null) {
  286. tableData.value = tableDatacp.value;
  287. } else {
  288. let art = [];
  289. let arts = [];
  290. let art2 = [];
  291. let art3 = [];
  292. conditonLisy.value.forEach((element) => {
  293. if (element.conn == "%") {
  294. tableDatacp.value.forEach((res) => {
  295. if (res[element.key] && res[element.key].includes(element.val)) {
  296. art.push(res);
  297. }
  298. });
  299. }
  300. if (element.conn == "=") {
  301. if (art.length == 0) {
  302. art = tableDatacp.value;
  303. }
  304. art.forEach((res) => {
  305. if (res[element.key] == element.val) {
  306. arts.push(res);
  307. }
  308. });
  309. }
  310. setTimeout(() => {
  311. if (element.conn == ">") {
  312. if (arts.length == 0) {
  313. arts = tableDatacp.value;
  314. }
  315. arts.forEach((res) => {
  316. if (Number(res[element.key]) - Number(element.val) > 0) {
  317. art2.push(res);
  318. }
  319. });
  320. }
  321. });
  322. setTimeout(() => {
  323. if (element.conn == "<") {
  324. if (art2.length == 0) {
  325. art2 = tableDatacp.value;
  326. }
  327. art2.forEach((res) => {
  328. if (Number(res[element.key]) - Number(element.val) < 0) {
  329. art3.push(res);
  330. }
  331. });
  332. }
  333. tableData.value = art3.length > 0 ? art3 : art2;
  334. });
  335. });
  336. }
  337. tableCols.value = [];
  338. if (conditon.value == null) {
  339. tableCols.value = returnData.columnSet;
  340. } else {
  341. tableCols.value = [];
  342. conditon.value.split(",").forEach((element) => {
  343. returnData.columnSet.forEach((res) => {
  344. if (element === res.columnName) {
  345. tableCols.value.push(res);
  346. }
  347. });
  348. });
  349. }
  350. tableCols.value.forEach((element) => {
  351. element.label = element.columnLabel;
  352. element.key = element.columnName;
  353. // if (element.columnName === "queryTemplate") {
  354. // element.width = "300px";
  355. // }
  356. });
  357. serviceId.value = returnData.submitID;
  358. } else {
  359. page.value--;
  360. }
  361. } catch (error) {
  362. page.value--;
  363. }
  364. };
  365. //确认提交
  366. const cargoInformationForm: any = ref(null);
  367. const submitForm = () => {
  368. cargoInformationForm.value.validate((valid: any) => {
  369. if (valid) {
  370. generalDataReception(tableForm);
  371. } else {
  372. return false;
  373. }
  374. });
  375. };
  376. const resetTable = () => {
  377. page.value = 0;
  378. noMore.value = false;
  379. tableData.value = [];
  380. };
  381. const btnAuthMap = [
  382. ,
  383. "new_freight_forwarder_button",
  384. "freight_forwarder_editor_button",
  385. "freight_forwarder_deletion_button",
  386. ];
  387. //新增-编辑-删除
  388. const generalDataReception = async (data) => {
  389. try {
  390. data = {
  391. ...data,
  392. };
  393. const { code } = await GeneralDataReception({
  394. serviceId: serviceId.value,
  395. dataContent: JSON.stringify(data),
  396. btnAuth: btnAuthMap[data.event],
  397. });
  398. if (code == 0) {
  399. ElMessage.success(`操作成功`);
  400. // this.$message.success("操作成功");
  401. resetTable();
  402. gueryRoles();
  403. resetForm();
  404. flag.value = false;
  405. // rmFlag.value = false;
  406. tableObj.value = {};
  407. // this.$router.go(0);
  408. } else {
  409. ElMessage.error(`操作失败`);
  410. // this.$message.error("操作失败");
  411. // this.flag = false;
  412. // this.rmFlag = false;
  413. tableObj.value = {};
  414. resetForm();
  415. }
  416. } catch (error) {
  417. flag.value = false;
  418. // rmFlag.value = false;
  419. tableObj.value = {};
  420. resetForm();
  421. }
  422. };
  423. gueryRoles();
  424. </script>
  425. <style lang="scss" scoped>
  426. ::v-deep .el-form-item__label {
  427. width: 80px;
  428. }
  429. </style>