index.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <template>
  2. <div class="airportInfo scroll-y">
  3. <div class="wrap">
  4. <Minheader
  5. :is-auth="true"
  6. :is-statuser="true"
  7. powerData="new_cabin_button"
  8. @addForm="addForm"
  9. >
  10. <template #header>
  11. <div class="status flex-wrap">
  12. <div class="manageTitle">舱位管理</div>
  13. </div>
  14. </template>
  15. </Minheader>
  16. <div class="app-containers">
  17. <DataTable
  18. :tableHeader="tableCols"
  19. :tableData="tableData"
  20. :tableBtnGroup="tableBtnGroup"
  21. :tableProperty="{ rowKey: 'ID' }"
  22. @btnClick="btnClick"
  23. />
  24. </div>
  25. <Dialog
  26. :flag="flag"
  27. :type="type"
  28. :msgTitle="msgTitle"
  29. :delName="tableForm.storingName"
  30. @resetForm="resetForm"
  31. @delRest="delRest"
  32. @submitForm="submitForm"
  33. @delRemove="delRemove"
  34. >
  35. <div class="diacont">
  36. <el-form
  37. :model="tableForm"
  38. :rules="formRules"
  39. ref="shippingSpaceForm"
  40. >
  41. <el-row :gutter="24">
  42. <el-col>
  43. <el-form-item
  44. label="机型ID"
  45. prop="binNo"
  46. :rules="formRules.isNotNull"
  47. size="default"
  48. >
  49. <el-input
  50. v-model="tableForm.binNo"
  51. placeholder="请输入机型ID"
  52. />
  53. </el-form-item>
  54. </el-col>
  55. <el-col>
  56. <el-form-item
  57. label="舱位ID"
  58. prop="storingID"
  59. :rules="formRules.isNotNull"
  60. size="default"
  61. >
  62. <el-input
  63. v-model="tableForm.storingID"
  64. placeholder="请输入舱位ID"
  65. />
  66. </el-form-item>
  67. </el-col>
  68. <el-col>
  69. <el-form-item label="机型名称" size="default">
  70. <el-input
  71. disabled
  72. v-model="tableForm.modelName"
  73. placeholder="请输入机型名称"
  74. />
  75. </el-form-item>
  76. </el-col>
  77. <el-col>
  78. <el-form-item
  79. label="舱位名称"
  80. size="default"
  81. prop="storingName"
  82. :rules="formRules.isNotNull"
  83. >
  84. <el-input
  85. v-model="tableForm.storingName"
  86. placeholder="请输入舱位名称"
  87. />
  88. </el-form-item>
  89. </el-col>
  90. <el-col>
  91. <el-form-item
  92. label="舱位编码"
  93. size="default"
  94. prop="storingCode"
  95. :rules="formRules.isNotNull"
  96. >
  97. <el-input
  98. v-model="tableForm.storingCode"
  99. placeholder="请输入舱位编码"
  100. />
  101. </el-form-item>
  102. </el-col>
  103. <el-col>
  104. <el-form-item label="备注" size="default">
  105. <el-input
  106. v-model="tableForm.storingDesc"
  107. placeholder="请输入备注"
  108. />
  109. </el-form-item>
  110. </el-col>
  111. </el-row>
  112. </el-form>
  113. </div>
  114. </Dialog>
  115. </div>
  116. </div>
  117. </template>
  118. <script setup lang="ts">
  119. import DataTable from "@/components/tableTemp/index.vue";
  120. import Minheader from "@/components/minheader/index.vue";
  121. import Dialog from "@/components/dialog/index.vue";
  122. import { Query, GeneralDataReception } from "@/api/webApi";
  123. import { ElMessage } from "element-plus";
  124. const formRules = useElement().formRules;
  125. const route = useRoute();
  126. const page = ref<number>(0); //分页参数
  127. const dataContent = ref<object>({});
  128. const noMore = ref<boolean>(false);
  129. const rowTitle = ref<string>("");
  130. const tableCols = ref<any>([]); //表头数据
  131. const serviceId = ref<any>("");
  132. const tableObj = ref({}); //增删改数据缓存
  133. const flag = ref<boolean>(false); //弹窗开关
  134. const type = ref<string>(""); //判断是否删除
  135. const msgTitle = ref<string>("新增舱位管理"); //弹窗标题
  136. const tableColsCopys = reactive<Object>({}); //弹窗
  137. const tableForm = reactive<any>({
  138. storingID: "",
  139. storingName: "",
  140. storingCode: "",
  141. storingDesc: "",
  142. binNo: "",
  143. modelName: "",
  144. event: "",
  145. }); //弹窗内容
  146. tableForm.binNo = route.query.modelID;
  147. tableForm.modelName = route.query.modelName;
  148. //列表
  149. const tableData = ref<any>([]);
  150. //表头
  151. const state = reactive({
  152. list: [
  153. { label: "舱位名称", key: "name" },
  154. { label: "舱位编码", key: "china" },
  155. { label: "舱位描述", key: "englin" },
  156. ],
  157. listLoading: true,
  158. });
  159. const tableBtnGroup = ref([
  160. {
  161. name: "编辑",
  162. className: "editBtn",
  163. param: 2,
  164. is: "cabin_editor_button",
  165. },
  166. {
  167. name: "删除",
  168. className: "delBtn",
  169. param: 3,
  170. is: "cabin_deletion_button",
  171. },
  172. ]);
  173. //新增
  174. const addForm = () => {
  175. msgTitle.value = "新增舱位管理";
  176. for (const key in tableForm) {
  177. tableForm[key] = "";
  178. }
  179. tableForm.event = 1;
  180. flag.value = true;
  181. type.value = "";
  182. };
  183. //取消
  184. const resetForm = () => {
  185. shippingSpaceForm.value?.resetFields();
  186. flag.value = false;
  187. // tableForm.storingID = "";
  188. // tableForm.storingName = "";
  189. // tableForm.storingCode = "";
  190. // tableForm.storingDesc = "";
  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. storingID: tableForm.storingID,
  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.storingID = index.storingID;
  226. tableForm.storingName = index.storingName;
  227. tableForm.storingCode = index.storingCode;
  228. tableForm.storingDesc = index.storingDesc;
  229. } else if (param === 3) {
  230. msgTitle.value = "删除舱位管理";
  231. flag.value = true;
  232. type.value = "del";
  233. tableForm.event = 3;
  234. tableForm.storingID = index.storingID;
  235. tableForm.storingName = index.storingName;
  236. tableForm.storingCode = index.storingCode;
  237. tableForm.storingDesc = index.storingDesc;
  238. } else if (param === 4) {
  239. }
  240. };
  241. //获取表格数据
  242. const getQuery = async () => {
  243. try {
  244. const { code, returnData } = await Query({
  245. id: DATACONTENT_ID.shippingNodeId,
  246. needPage: ++page.value,
  247. dataContent: [route.query.modelID],
  248. });
  249. if (code === "0") {
  250. if (returnData.listValues.length === 0) {
  251. page.value--;
  252. noMore.value = true;
  253. }
  254. const titleColumn = returnData.columnSet.find(
  255. (item) => item.needShow == 1
  256. );
  257. if (titleColumn) {
  258. rowTitle.value = titleColumn.columnName;
  259. }
  260. tableData.value.push(...returnData.listValues);
  261. tableData.value.forEach((element) => {
  262. element.modelName = route.query.modelName;
  263. });
  264. tableCols.value = returnData.columnSet;
  265. tableCols.value.forEach((element) => {
  266. element.label = element.columnLabel;
  267. element.key = element.columnName;
  268. // if (element.columnName === "queryTemplate") {
  269. // element.width = "300px";
  270. // }
  271. });
  272. serviceId.value = returnData.submitID;
  273. } else {
  274. page.value--;
  275. }
  276. } catch (error) {
  277. page.value--;
  278. }
  279. };
  280. //确认提交
  281. const shippingSpaceForm: any = ref(null);
  282. const submitForm = () => {
  283. shippingSpaceForm.value.validate((valid: any) => {
  284. if (valid) {
  285. generalDataReception(tableForm);
  286. } else {
  287. return false;
  288. }
  289. });
  290. };
  291. const resetTable = () => {
  292. page.value = 0;
  293. noMore.value = false;
  294. tableData.value = [];
  295. };
  296. const btnAuthMap = [
  297. ,
  298. "new_cabin_button",
  299. "cabin_editor_button",
  300. "cabin_deletion_button",
  301. ];
  302. //新增-编辑-删除
  303. const generalDataReception = async (data) => {
  304. try {
  305. let obj = {
  306. IATACode: route.query.modelID,
  307. };
  308. data = {
  309. ...data,
  310. };
  311. const { code } = await GeneralDataReception({
  312. serviceId: serviceId.value,
  313. dataContent: JSON.stringify(data),
  314. btnAuth: btnAuthMap[data.event],
  315. });
  316. if (code == 0) {
  317. ElMessage.success(`操作成功`);
  318. // this.$message.success("操作成功");
  319. resetTable();
  320. getQuery();
  321. resetForm();
  322. flag.value = false;
  323. // rmFlag.value = false;
  324. tableObj.value = {};
  325. // this.$router.go(0);
  326. } else {
  327. ElMessage.error(`操作失败`);
  328. // this.$message.error("操作失败");
  329. // this.flag = false;
  330. // this.rmFlag = false;
  331. tableObj.value = {};
  332. resetForm();
  333. }
  334. } catch (error) {
  335. flag.value = false;
  336. // rmFlag.value = false;
  337. tableObj.value = {};
  338. resetForm();
  339. }
  340. };
  341. getQuery();
  342. </script>
  343. <style lang="scss" scoped>
  344. ::v-deep .el-form-item__label {
  345. width: 80px;
  346. }
  347. </style>