index.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. for (const key in tableForm) {
  114. tableForm[key] = "";
  115. }
  116. tableForm.event = 1;
  117. flag.value = true;
  118. type.value = "";
  119. };
  120. //取消
  121. const resetForm = () => {
  122. shippingSpaceForm.value?.resetFields();
  123. flag.value = false;
  124. // tableForm.storingID = "";
  125. // tableForm.storingName = "";
  126. // tableForm.storingCode = "";
  127. // tableForm.storingDesc = "";
  128. };
  129. //编辑
  130. const editDialog = (data) => {
  131. msgTitle.value = "编辑舱位管理";
  132. flag.value = true;
  133. type.value = "";
  134. tableForm.name = data.name;
  135. tableForm.china = data.china;
  136. tableForm.englin = data.englin;
  137. };
  138. //删除
  139. const eleDialog = () => {
  140. msgTitle.value = "删除舱位管理";
  141. flag.value = true;
  142. type.value = "del";
  143. };
  144. const delRemove = () => {
  145. const obj = {
  146. storingID: tableForm.storingID,
  147. event: 3,
  148. };
  149. generalDataReception(obj);
  150. };
  151. //删除
  152. const delRest = () => {
  153. flag.value = false;
  154. };
  155. //编辑-删除
  156. const btnClick = (row, index, param) => {
  157. if (param === 2) {
  158. msgTitle.value = "编辑舱位管理";
  159. flag.value = true;
  160. type.value = "";
  161. tableForm.event = 2;
  162. tableForm.storingID = index.storingID;
  163. tableForm.storingName = index.storingName;
  164. tableForm.storingCode = index.storingCode;
  165. tableForm.storingDesc = index.storingDesc;
  166. } else if (param === 3) {
  167. msgTitle.value = "删除舱位管理";
  168. flag.value = true;
  169. type.value = "del";
  170. tableForm.event = 3;
  171. tableForm.storingID = index.storingID;
  172. tableForm.storingName = index.storingName;
  173. tableForm.storingCode = index.storingCode;
  174. tableForm.storingDesc = index.storingDesc;
  175. } else if (param === 4) {
  176. }
  177. };
  178. //获取表格数据
  179. const getQuery = async () => {
  180. try {
  181. const { code, returnData } = await Query({
  182. id: DATACONTENT_ID.shippingNodeId,
  183. needPage: ++page.value,
  184. dataContent: [route.query.modelID],
  185. });
  186. if (code === "0") {
  187. if (returnData.listValues.length === 0) {
  188. page.value--;
  189. noMore.value = true;
  190. }
  191. const titleColumn = returnData.columnSet.find(
  192. (item) => item.needShow === 1
  193. );
  194. if (titleColumn) {
  195. rowTitle.value = titleColumn.columnName;
  196. }
  197. tableData.value.push(...returnData.listValues);
  198. tableData.value.forEach((element) => {
  199. element.modelName = route.query.modelName;
  200. });
  201. tableCols.value = returnData.columnSet;
  202. tableCols.value.forEach((element) => {
  203. element.label = element.columnLabel;
  204. element.key = element.columnName;
  205. // if (element.columnName === "queryTemplate") {
  206. // element.width = "300px";
  207. // }
  208. });
  209. serviceId.value = returnData.submitID;
  210. } else {
  211. page.value--;
  212. }
  213. } catch (error) {
  214. page.value--;
  215. }
  216. };
  217. //确认提交
  218. const shippingSpaceForm: any = ref(null);
  219. const submitForm = () => {
  220. shippingSpaceForm.value.validate((valid: any) => {
  221. if (valid) {
  222. generalDataReception(tableForm);
  223. } else {
  224. return false;
  225. }
  226. });
  227. };
  228. const resetTable = () => {
  229. page.value = 0;
  230. noMore.value = false;
  231. tableData.value = [];
  232. };
  233. const btnAuthMap = [
  234. ,
  235. "new_cabin_button",
  236. "cabin_editor_button",
  237. "cabin_deletion_button",
  238. ];
  239. //新增-编辑-删除
  240. const generalDataReception = async (data) => {
  241. try {
  242. let obj = {
  243. IATACode: route.query.modelID,
  244. };
  245. data = {
  246. ...data,
  247. };
  248. const { code } = await GeneralDataReception({
  249. serviceId: serviceId.value,
  250. dataContent: JSON.stringify(data),
  251. btnAuth: btnAuthMap[data.event],
  252. });
  253. if (code == 0) {
  254. ElMessage.success(`操作成功`);
  255. // this.$message.success("操作成功");
  256. resetTable();
  257. getQuery();
  258. resetForm();
  259. flag.value = false;
  260. // rmFlag.value = false;
  261. tableObj.value = {};
  262. // this.$router.go(0);
  263. } else {
  264. ElMessage.error(`操作失败`);
  265. // this.$message.error("操作失败");
  266. // this.flag = false;
  267. // this.rmFlag = false;
  268. tableObj.value = {};
  269. resetForm();
  270. }
  271. } catch (error) {
  272. flag.value = false;
  273. // rmFlag.value = false;
  274. tableObj.value = {};
  275. resetForm();
  276. }
  277. };
  278. getQuery();
  279. </script>
  280. <style lang="scss" scoped>
  281. ::v-deep .el-form-item__label {
  282. width: 80px;
  283. }
  284. </style>