index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <div class="airportInfo scroll-y">
  3. <div class="wrap">
  4. <Minheader :is-auth="true" :is-statuser="true" powerData="new_cabin_button" @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.storingName" @resetForm="resetForm" @delRest="delRest" @submitForm="submitForm" @delRemove="delRemove">
  15. <div class="diacont">
  16. <el-form :model="tableForm" :rules="formRules" ref="shippingSpaceForm">
  17. <el-row :gutter="24">
  18. <el-col>
  19. <el-form-item label="机型ID" prop="binNo" :rules="formRules.isNotNull" size="default">
  20. <el-input v-model="tableForm.binNo" placeholder="请输入机型ID" />
  21. </el-form-item>
  22. </el-col>
  23. <el-col>
  24. <el-form-item label="舱位ID" prop="storingID" :rules="formRules.isNotNull" size="default">
  25. <el-input v-model="tableForm.storingID" placeholder="请输入舱位ID" />
  26. </el-form-item>
  27. </el-col>
  28. <el-col>
  29. <el-form-item label="机型名称" size="default">
  30. <el-input disabled v-model="tableForm.modelName" placeholder="请输入机型名称" />
  31. </el-form-item>
  32. </el-col>
  33. <el-col>
  34. <el-form-item label="舱位名称" size="default" prop="storingName" :rules="formRules.isNotNull">
  35. <el-input v-model="tableForm.storingName" placeholder="请输入舱位名称" />
  36. </el-form-item>
  37. </el-col>
  38. <el-col>
  39. <el-form-item label="舱位编码" size="default" prop="storingCode" :rules="formRules.isNotNull">
  40. <el-input v-model="tableForm.storingCode" placeholder="请输入舱位编码" />
  41. </el-form-item>
  42. </el-col>
  43. <el-col>
  44. <el-form-item label="备注" size="default">
  45. <el-input v-model="tableForm.storingDesc" placeholder="请输入备注" />
  46. </el-form-item>
  47. </el-col>
  48. </el-row>
  49. </el-form>
  50. </div>
  51. </Dialog>
  52. </div>
  53. </div>
  54. </template>
  55. <script setup lang="ts">
  56. import DataTable from "@/components/tableTemp/index.vue";
  57. import Minheader from "@/components/minheader/index.vue";
  58. import Dialog from "@/components/dialog/index.vue";
  59. import { Query, GeneralDataReception } from "@/api/webApi";
  60. import { ElMessage } from "element-plus";
  61. const formRules = useElement().formRules;
  62. const route = useRoute();
  63. const page = ref<number>(0); //分页参数
  64. const dataContent = ref<object>({});
  65. const noMore = ref<boolean>(false);
  66. const rowTitle = ref<string>("");
  67. const tableCols = ref<any>([]); //表头数据
  68. const serviceId = ref<any>("");
  69. const tableObj = ref({}); //增删改数据缓存
  70. const flag = ref<boolean>(false); //弹窗开关
  71. const type = ref<string>(""); //判断是否删除
  72. const msgTitle = ref<string>("新增舱位管理"); //弹窗标题
  73. const tableColsCopys = reactive<Object>({}); //弹窗
  74. const tableForm = reactive<any>({
  75. storingID: "",
  76. storingName: "",
  77. storingCode: "",
  78. storingDesc: "",
  79. binNo: "",
  80. modelName: "",
  81. event: "",
  82. }); //弹窗内容
  83. tableForm.binNo = route.query.modelID;
  84. tableForm.modelName = route.query.modelName;
  85. //列表
  86. const tableData = ref<any>([]);
  87. //表头
  88. const state = reactive({
  89. list: [
  90. { label: "舱位名称", key: "name" },
  91. { label: "舱位编码", key: "china" },
  92. { label: "舱位描述", key: "englin" },
  93. ],
  94. listLoading: true,
  95. });
  96. const tableBtnGroup = ref([
  97. {
  98. name: "编辑",
  99. className: "editBtn",
  100. param: 2,
  101. is: "cabin_editor_button",
  102. },
  103. {
  104. name: "删除",
  105. className: "delBtn",
  106. param: 3,
  107. is: "cabin_deletion_button",
  108. },
  109. ]);
  110. //新增
  111. const addForm = () => {
  112. msgTitle.value = "新增舱位管理";
  113. tableForm.event = 1;
  114. flag.value = true;
  115. type.value = "";
  116. };
  117. //取消
  118. const resetForm = () => {
  119. shippingSpaceForm.value?.resetFields();
  120. flag.value = false;
  121. // tableForm.storingID = "";
  122. // tableForm.storingName = "";
  123. // tableForm.storingCode = "";
  124. // tableForm.storingDesc = "";
  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.storingID = index.storingID;
  157. tableForm.storingName = index.storingName;
  158. tableForm.storingCode = index.storingCode;
  159. tableForm.storingDesc = index.storingDesc;
  160. } else if (param === 3) {
  161. msgTitle.value = "删除舱位管理";
  162. flag.value = true;
  163. type.value = "del";
  164. tableForm.event = 3;
  165. tableForm.storingID = index.storingID;
  166. tableForm.storingName = index.storingName;
  167. tableForm.storingCode = index.storingCode;
  168. tableForm.storingDesc = index.storingDesc;
  169. } else if (param === 4) {
  170. }
  171. };
  172. //获取表格数据
  173. const getQuery = async () => {
  174. try {
  175. const { code, returnData } = await Query({
  176. id: DATACONTENT_ID.shippingNodeId,
  177. needPage: ++page.value,
  178. dataContent: [route.query.modelID],
  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. tableData.value.forEach((element) => {
  193. element.modelName = route.query.modelName;
  194. });
  195. tableCols.value = returnData.columnSet;
  196. tableCols.value.forEach((element) => {
  197. element.label = element.columnLabel;
  198. element.key = element.columnName;
  199. // if (element.columnName === "queryTemplate") {
  200. // element.width = "300px";
  201. // }
  202. });
  203. serviceId.value = returnData.submitID;
  204. } else {
  205. page.value--;
  206. }
  207. } catch (error) {
  208. page.value--;
  209. }
  210. };
  211. //确认提交
  212. const shippingSpaceForm: any = ref(null);
  213. const submitForm = () => {
  214. shippingSpaceForm.value.validate((valid: any) => {
  215. if (valid) {
  216. generalDataReception(tableForm);
  217. } else {
  218. return false;
  219. }
  220. });
  221. };
  222. const resetTable = () => {
  223. page.value = 0;
  224. noMore.value = false;
  225. tableData.value = [];
  226. };
  227. const btnAuthMap = [, 'new_cabin_button', 'cabin_editor_button', 'cabin_deletion_button']
  228. //新增-编辑-删除
  229. const generalDataReception = async (data) => {
  230. try {
  231. let obj = {
  232. IATACode: route.query.modelID,
  233. };
  234. data = {
  235. ...data,
  236. ...obj,
  237. };
  238. const { code } = await GeneralDataReception({
  239. serviceId: serviceId.value,
  240. dataContent: JSON.stringify(data),
  241. btnAuth: btnAuthMap[data.event]
  242. });
  243. if (code == 0) {
  244. ElMessage.success(`操作成功`);
  245. // this.$message.success("操作成功");
  246. resetTable();
  247. getQuery();
  248. resetForm();
  249. flag.value = false;
  250. // rmFlag.value = false;
  251. tableObj.value = {};
  252. // this.$router.go(0);
  253. } else {
  254. ElMessage.error(`操作失败`);
  255. // this.$message.error("操作失败");
  256. // this.flag = false;
  257. // this.rmFlag = false;
  258. tableObj.value = {};
  259. resetForm();
  260. }
  261. } catch (error) {
  262. flag.value = false;
  263. // rmFlag.value = false;
  264. tableObj.value = {};
  265. resetForm();
  266. }
  267. };
  268. getQuery();
  269. </script>
  270. <style lang="scss" scoped>
  271. ::v-deep .el-form-item__label {
  272. width: 80px;
  273. }
  274. </style>