index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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
  31. :model="tableForm"
  32. :rules="formRules"
  33. ref="airportCompanyForm"
  34. >
  35. <el-row :gutter="24">
  36. <el-col>
  37. <el-form-item
  38. label="公司名称"
  39. size="default"
  40. :rules="formRules.isNotNull"
  41. prop="companyName"
  42. >
  43. <el-input
  44. v-model="tableForm.companyName"
  45. placeholder="请输入公司名称"
  46. />
  47. </el-form-item>
  48. </el-col>
  49. <el-col>
  50. <el-form-item label="上级公司" size="default">
  51. <el-select
  52. style="width: 100%"
  53. v-model="tableForm.parentID"
  54. class="input-shadow"
  55. filterable
  56. default-first-option
  57. clearable
  58. placeholder="请选择"
  59. >
  60. <el-option
  61. v-for="item in tableOptionser"
  62. :key="item.v"
  63. :label="item.k"
  64. :value="item.v"
  65. >
  66. </el-option>
  67. </el-select>
  68. </el-form-item>
  69. </el-col>
  70. <el-col>
  71. <el-form-item label="公司描述" size="default">
  72. <el-input
  73. type="textarea"
  74. v-model="tableForm.companyDesc"
  75. placeholder="请输入公司描述"
  76. />
  77. </el-form-item>
  78. </el-col>
  79. </el-row>
  80. </el-form>
  81. </div>
  82. </Dialog>
  83. </div>
  84. </div>
  85. </template>
  86. <script setup lang="ts">
  87. import DataTable from "@/components/tableTemp/index.vue";
  88. import Minheader from "@/components/minheader/index.vue";
  89. import Dialog from "@/components/dialog/index.vue";
  90. import { Query, GeneralDataReception } from "@/api/webApi";
  91. import { ElMessage } from "element-plus";
  92. const formRules = useElement().formRules;
  93. const page = ref<number>(0); //分页参数
  94. const dataContent = ref<object>({});
  95. const noMore = ref<Boolean>(false);
  96. const asShow = ref<Boolean>(false);
  97. const rowTitle = ref<String>("");
  98. const tableCols = ref([]); //表头数据
  99. const serviceId = ref<String>("");
  100. const tableObj = ref({}); //增删改数据缓存
  101. const flag = ref<Boolean>(false); //弹窗开关
  102. const type = ref<String>(""); //判断是否删除
  103. const msgTitle = ref<String>("新增机场公司维护"); //弹窗标题
  104. const tableOptionser = ref([]); //弹窗下拉
  105. const tableColsCopys = reactive([]); //弹窗
  106. const tableForm = reactive({
  107. companyName: "",
  108. parentID: "",
  109. companyDesc: "",
  110. companyID: "",
  111. event: "",
  112. }); //弹窗内容
  113. const tableBtnGroup = ref([
  114. {
  115. name: "编辑",
  116. className: "editBtn",
  117. param: 2,
  118. },
  119. {
  120. name: "删除",
  121. className: "delBtn",
  122. param: 3,
  123. },
  124. ]);
  125. //列表
  126. const tableData = ref([]);
  127. //表头
  128. const state = reactive({
  129. list: [
  130. { label: "公司名称", key: "name" },
  131. { label: "公司描述", key: "china" },
  132. { label: "上级公司", key: "englin" },
  133. ],
  134. listLoading: true,
  135. });
  136. //新增
  137. const addForm = () => {
  138. msgTitle.value = "新增机场公司维护";
  139. flag.value = true;
  140. type.value = "";
  141. tableForm.event = 1;
  142. asShow.value = false;
  143. asShow.value = true;
  144. };
  145. //取消
  146. const resetForm = () => {
  147. flag.value = false;
  148. tableForm.companyName = "";
  149. tableForm.parentID = "";
  150. tableForm.companyDesc = "";
  151. tableForm.companyID = "";
  152. };
  153. //编辑-删除
  154. const btnClick = (row, index, param) => {
  155. if (param === 2) {
  156. msgTitle.value = "编辑机场公司维护";
  157. flag.value = true;
  158. type.value = "";
  159. tableForm.event = 2;
  160. tableForm.companyName = index.companyName;
  161. tableForm.parentID = index.parentID;
  162. tableForm.companyDesc = index.companyDesc;
  163. tableForm.companyID = index.companyID;
  164. } else if (param === 3) {
  165. msgTitle.value = "删除机场公司维护";
  166. flag.value = true;
  167. type.value = "del";
  168. tableForm.event = 3;
  169. tableForm.companyName = index.companyName;
  170. tableForm.parentID = index.parentID;
  171. tableForm.companyDesc = index.companyDesc;
  172. tableForm.companyID = index.companyID;
  173. } else if (param === 4) {
  174. }
  175. };
  176. //删除
  177. const delRest = () => {
  178. flag.value = false;
  179. };
  180. //获取弹框-下拉数据
  181. const getSelectData = async (id, name) => {
  182. const { code, returnData } = await Query({
  183. id,
  184. dataContent: name ? [name] : name === null ? [null] : [],
  185. });
  186. if (code == 0) {
  187. tableOptionser.value = returnData.listValues;
  188. } else {
  189. tableOptionser.value = [];
  190. }
  191. };
  192. //获取表格数据
  193. const getQuery = async () => {
  194. try {
  195. const { code, returnData } = await Query({
  196. id: DATACONTENT_ID.airportTreeId,
  197. needPage: ++page.value,
  198. dataContent: Object.values(dataContent.value),
  199. });
  200. if (code === "0") {
  201. if (returnData.listValues.length === 0) {
  202. page.value--;
  203. noMore.value = true;
  204. }
  205. const titleColumn = returnData.columnSet.find(
  206. (item) => item.needShow === 1
  207. );
  208. if (titleColumn) {
  209. rowTitle.value = titleColumn.columnName;
  210. }
  211. tableData.value.push(...returnData.listValues);
  212. tableCols.value = returnData.columnSet;
  213. returnData.columnSet.forEach((item) => {
  214. if (item.listqueryTemplateID && item.columnName === "parentID") {
  215. getSelectData(item.listqueryTemplateID);
  216. }
  217. });
  218. tableCols.value.forEach((element) => {
  219. element.label = element.columnLabel;
  220. element.key = element.columnName;
  221. });
  222. serviceId.value = returnData.submitID;
  223. } else {
  224. page.value--;
  225. }
  226. } catch (error) {
  227. page.value--;
  228. }
  229. };
  230. const changeSelect = (data, name) => {
  231. if (tableForm[data].value === "") {
  232. tableForm[data].value = null;
  233. }
  234. };
  235. const resetTable = () => {
  236. page.value = 0;
  237. noMore.value = false;
  238. tableData.value = [];
  239. };
  240. //新增-编辑-删除
  241. const generalDataReception = async (data) => {
  242. try {
  243. data = {
  244. ...data,
  245. };
  246. const { code } = await GeneralDataReception({
  247. serviceId: serviceId.value,
  248. dataContent: JSON.stringify(data),
  249. });
  250. if (code == 0) {
  251. ElMessage.success(`操作成功`);
  252. // this.$message.success("操作成功");
  253. resetTable();
  254. getQuery();
  255. resetForm();
  256. flag.value = false;
  257. // rmFlag.value = false;
  258. tableObj.value = {};
  259. // this.$router.go(0);
  260. } else {
  261. ElMessage.error(`操作失败`);
  262. // this.$message.error("操作失败");
  263. // this.flag = false;
  264. // this.rmFlag = false;
  265. tableObj.value = {};
  266. resetForm();
  267. }
  268. } catch (error) {
  269. flag.value = false;
  270. // rmFlag.value = false;
  271. tableObj.value = {};
  272. resetForm();
  273. }
  274. };
  275. //确认提交
  276. const airportCompanyForm: any = ref(null);
  277. const submitForm = () => {
  278. airportCompanyForm.value.validate((valid: any) => {
  279. if (valid) {
  280. generalDataReception(tableForm);
  281. } else {
  282. return false;
  283. }
  284. });
  285. };
  286. const delRemove = () => {
  287. tableForm.event = 3;
  288. generalDataReception(tableForm);
  289. };
  290. getQuery();
  291. </script>
  292. <style lang="scss" scoped>
  293. ::v-deep .el-form-item__label {
  294. width: 100px;
  295. }
  296. </style>