index.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. <template>
  2. <div class="airportInfo scroll-y">
  3. <div class="wrap">
  4. <Minheader
  5. :is-auth="true"
  6. :is-statuser="true"
  7. powerData="agreement_addition"
  8. @addForm="addForm"
  9. >
  10. <template #header>
  11. <div class="status flex-wrap">
  12. <div class="manageTitle">协议管理</div>
  13. </div>
  14. </template></Minheader
  15. >
  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. width="508px"
  27. :flag="flag"
  28. :type="type"
  29. :msgTitle="msgTitle"
  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="protocolManagement"
  40. >
  41. <el-row :gutter="24">
  42. <el-col>
  43. <el-form-item
  44. label="协议名称"
  45. size="default"
  46. prop="protocolName"
  47. :rules="formRules.isNotNull"
  48. >
  49. <el-input
  50. v-model="tableForm.protocolName"
  51. placeholder="请输入协议名称"
  52. />
  53. </el-form-item>
  54. </el-col>
  55. <el-col>
  56. <el-form-item
  57. label="类名"
  58. size="default"
  59. prop="className"
  60. :rules="formRules.isNotNull"
  61. >
  62. <el-input
  63. type="textarea"
  64. v-model="tableForm.className"
  65. placeholder="请输入类名"
  66. />
  67. </el-form-item>
  68. </el-col>
  69. <!-- <el-col>
  70. <el-form-item label="协议类型" size="default">
  71. <el-input
  72. v-model="tableForm.protocolType"
  73. placeholder="请输入协议类型"
  74. />
  75. </el-form-item>
  76. </el-col> -->
  77. <el-col>
  78. <el-form-item
  79. label="读方法名"
  80. size="default"
  81. prop="rmethodName"
  82. :rules="formRules.isNotNull"
  83. >
  84. <el-input
  85. v-model="tableForm.rmethodName"
  86. placeholder="请输入读方法名"
  87. />
  88. </el-form-item>
  89. </el-col>
  90. <el-col>
  91. <el-form-item
  92. label="写方法名"
  93. size="default"
  94. prop="smethodName"
  95. :rules="formRules.isNotNull"
  96. >
  97. <el-input
  98. v-model="tableForm.smethodName"
  99. placeholder="请输入写方法名"
  100. />
  101. </el-form-item>
  102. </el-col>
  103. <el-col>
  104. <el-form-item
  105. label="文件名及路径"
  106. size="default"
  107. prop="filePath"
  108. :rules="formRules.isNotNull"
  109. >
  110. <el-input
  111. type="textarea"
  112. v-model="tableForm.filePath"
  113. placeholder="请输入文件名及路径"
  114. />
  115. </el-form-item>
  116. </el-col>
  117. </el-row>
  118. </el-form>
  119. </div>
  120. </Dialog>
  121. </div>
  122. </div>
  123. </template>
  124. <script setup lang="ts">
  125. import DataTable from "@/components/tableTemp/index.vue";
  126. import Minheader from "@/components/minheader/index.vue";
  127. import Dialog from "@/components/dialog/index.vue";
  128. import { Query, GeneralDataReception } from "@/api/webApi";
  129. import { ElMessage } from "element-plus";
  130. const formRules = useElement().formRules;
  131. const page = ref<number>(0); //分页参数
  132. const dataContent = ref<object>({});
  133. const noMore = ref<Boolean>(false);
  134. const rowTitle = ref<String>("");
  135. const tableCols = ref([]); //表头数据
  136. const serviceId = ref<String>("");
  137. const tableObj = ref({}); //增删改数据缓存
  138. const flag = ref<Boolean>(false); //弹窗开关
  139. const type = ref<String>(""); //判断是否删除
  140. const msgTitle = ref<String>("新增协议管理"); //弹窗标题
  141. const tableColsCopys = reactive<Object>({}); //弹窗
  142. const tableForm = reactive({
  143. protocolID: "",
  144. protocolName: "",
  145. protocolType: "",
  146. filePath: "",
  147. className: "",
  148. rmethodName: "",
  149. smethodName: "",
  150. event: "",
  151. }); //弹窗内容
  152. //列表
  153. const tableData = ref([]);
  154. //表头
  155. const state = reactive({
  156. list: [
  157. { label: "协议名称", key: "name" },
  158. { label: "类名", key: "china" },
  159. { label: "读方法名", key: "englin" },
  160. { label: "写方法名", key: "two" },
  161. { label: "文件名及路径", key: "three" },
  162. ],
  163. listLoading: true,
  164. });
  165. const tableBtnGroup = ref([
  166. {
  167. name: "编辑",
  168. className: "editBtn",
  169. param: 2,
  170. is: "arotocol_Editing",
  171. },
  172. {
  173. name: "删除",
  174. className: "delBtn",
  175. param: 3,
  176. is: "agreement_deletion",
  177. },
  178. ]);
  179. //新增
  180. const addForm = () => {
  181. msgTitle.value = "新增协议管理";
  182. flag.value = true;
  183. type.value = "";
  184. tableForm.event = 1;
  185. };
  186. //取消
  187. const resetForm = () => {
  188. protocolManagement.value?.resetFields()
  189. flag.value = false;
  190. // tableForm.protocolID = "";
  191. // tableForm.protocolName = "";
  192. // tableForm.protocolType = "";
  193. // tableForm.filePath = "";
  194. // tableForm.className = "";
  195. // tableForm.rmethodName = "";
  196. // tableForm.smethodName = "";
  197. };
  198. //编辑-删除
  199. const btnClick = (row, index, param) => {
  200. if (param === 2) {
  201. msgTitle.value = "编辑协议管理";
  202. flag.value = true;
  203. type.value = "";
  204. tableForm.event = 2;
  205. tableForm.protocolID = index.protocolID;
  206. tableForm.protocolName = index.protocolName;
  207. tableForm.protocolType = index.protocolType;
  208. tableForm.filePath = index.filePath;
  209. tableForm.className = index.className;
  210. tableForm.rmethodName = index.rmethodName;
  211. tableForm.smethodName = index.smethodName;
  212. } else if (param === 3) {
  213. msgTitle.value = "删除协议管理";
  214. flag.value = true;
  215. type.value = "del";
  216. tableForm.event = 3;
  217. tableForm.protocolID = index.protocolID;
  218. tableForm.protocolName = index.protocolName;
  219. tableForm.protocolType = index.protocolType;
  220. tableForm.filePath = index.filePath;
  221. tableForm.className = index.className;
  222. tableForm.rmethodName = index.rmethodName;
  223. tableForm.smethodName = index.smethodName;
  224. } else if (param === 4) {
  225. }
  226. };
  227. //删除
  228. const eleDialog = () => {
  229. msgTitle.value = "删除协议管理";
  230. flag.value = true;
  231. type.value = "del";
  232. };
  233. const delRemove = () => {
  234. tableForm.event = 3;
  235. generalDataReception(tableForm);
  236. };
  237. //删除
  238. const delRest = () => {
  239. flag.value = false;
  240. };
  241. //获取表格数据
  242. const getQuery = async () => {
  243. try {
  244. const { code, returnData } = await Query({
  245. id: DATACONTENT_ID.sysProtoTabId,
  246. needPage: ++page.value,
  247. dataContent: Object.values(dataContent.value),
  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. tableCols.value = returnData.columnSet;
  262. tableCols.value.forEach((element) => {
  263. element.label = element.columnLabel;
  264. element.key = element.columnName;
  265. // if (element.columnName === "queryTemplate") {
  266. // element.width = "300px";
  267. // }
  268. });
  269. serviceId.value = returnData.submitID;
  270. } else {
  271. page.value--;
  272. }
  273. } catch (error) {
  274. page.value--;
  275. }
  276. };
  277. //确认提交
  278. const protocolManagement: any = ref(null);
  279. const submitForm = () => {
  280. protocolManagement.value.validate((valid: any) => {
  281. if (valid) {
  282. generalDataReception(tableForm);
  283. } else {
  284. return false;
  285. }
  286. });
  287. };
  288. const resetTable = () => {
  289. page.value = 0;
  290. noMore.value = false;
  291. tableData.value = [];
  292. };
  293. const btnAuthMap = [, 'agreement_addition', 'arotocol_Editing', 'agreement_deletion']
  294. //新增-编辑-删除
  295. const generalDataReception = async (data) => {
  296. try {
  297. data = {
  298. ...data,
  299. };
  300. const { code } = await GeneralDataReception({
  301. serviceId: serviceId.value,
  302. dataContent: JSON.stringify(data),
  303. btnAuth: btnAuthMap[data.event],
  304. });
  305. if (code == 0) {
  306. ElMessage.success(`操作成功`);
  307. // this.$message.success("操作成功");
  308. resetTable();
  309. getQuery();
  310. resetForm();
  311. flag.value = false;
  312. // rmFlag.value = false;
  313. tableObj.value = {};
  314. // this.$router.go(0);
  315. } else {
  316. ElMessage.error(`操作失败`);
  317. // this.$message.error("操作失败");
  318. // this.flag = false;
  319. // this.rmFlag = false;
  320. tableObj.value = {};
  321. resetForm();
  322. }
  323. } catch (error) {
  324. flag.value = false;
  325. // rmFlag.value = false;
  326. tableObj.value = {};
  327. resetForm();
  328. }
  329. };
  330. getQuery();
  331. </script>
  332. <style lang="scss" scoped>
  333. ::v-deep .el-form-item__label {
  334. width: 110px;
  335. }
  336. </style>