index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. label-width="68px"
  10. >
  11. <!-- <el-form-item label="会议日期" prop="status"> </el-form-item> -->
  12. <el-form-item label="会议状态" prop="status">
  13. <el-select
  14. v-model="queryParams.status"
  15. placeholder="请选择会议状态"
  16. clearable
  17. filterable
  18. >
  19. <el-option
  20. v-for="dict in statusList"
  21. :key="dict.value + 'statusList'"
  22. :label="dict.label"
  23. :value="dict.value"
  24. />
  25. </el-select>
  26. </el-form-item>
  27. <el-form-item>
  28. <el-button
  29. type="primary"
  30. icon="el-icon-search"
  31. size="mini"
  32. @click="handleQuery"
  33. >搜索</el-button
  34. >
  35. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  36. >重置</el-button
  37. >
  38. </el-form-item>
  39. </el-form>
  40. <el-row :gutter="10" class="mb8">
  41. <el-col :span="1.5">
  42. <el-button
  43. type="primary"
  44. plain
  45. icon="el-icon-plus"
  46. size="mini"
  47. @click="handleAdd"
  48. v-hasPermi="['business:JOINTCONFERENCE:add']"
  49. >发起会议</el-button
  50. >
  51. </el-col>
  52. <!-- <el-col :span="1.5">
  53. <el-button
  54. type="success"
  55. plain
  56. icon="el-icon-edit"
  57. size="mini"
  58. :disabled="single"
  59. @click="handleUpdate"
  60. v-hasPermi="['business:JOINTCONFERENCE:edit']"
  61. >修改</el-button
  62. >
  63. </el-col> -->
  64. <el-col :span="1.5">
  65. <el-button
  66. type="danger"
  67. plain
  68. icon="el-icon-delete"
  69. size="mini"
  70. :disabled="multiple"
  71. @click="handleDelete"
  72. v-hasPermi="['business:JOINTCONFERENCE:remove']"
  73. >删除</el-button
  74. >
  75. </el-col>
  76. <right-toolbar
  77. :showSearch.sync="showSearch"
  78. @queryTable="getList"
  79. ></right-toolbar>
  80. </el-row>
  81. <el-table
  82. :data="JOINTCONFERENCEList"
  83. @selection-change="handleSelectionChange"
  84. >
  85. <el-table-column type="selection" width="55" align="center" />
  86. <el-table-column label="会议标题" align="center" prop="conferenceTitle">
  87. <template slot-scope="scope">
  88. {{ scope.row.conferenceTitle }}
  89. </template>
  90. </el-table-column>
  91. <el-table-column label="协作单位" align="center" prop="cooperativeUnit">
  92. <template slot-scope="scope">
  93. {{ scope.row.cooperativeUnit }}
  94. </template>
  95. </el-table-column>
  96. <el-table-column label="会议状态" align="center" prop="status">
  97. <template slot-scope="scope">
  98. <el-tag v-if="scope.row.status == 1">未指派</el-tag>
  99. <el-tag v-else-if="scope.row.status == 2" type="success"
  100. >进行中</el-tag
  101. >
  102. <el-tag v-else-if="scope.row.status == 3" type="info">已完成</el-tag>
  103. </template>
  104. </el-table-column>
  105. <el-table-column label="已回复单位数量" align="center" prop="replied">
  106. <template slot-scope="scope">
  107. {{ scope.row.replied }}
  108. </template>
  109. </el-table-column>
  110. <el-table-column
  111. label="操作"
  112. align="center"
  113. class-name="small-padding fixed-width"
  114. >
  115. <template slot-scope="scope">
  116. <el-button
  117. size="mini"
  118. type="text"
  119. @click="goDetail(scope.row)"
  120. v-hasPermi="['business:ARTICLE:query']"
  121. >会议详情</el-button
  122. >
  123. <el-button
  124. size="mini"
  125. type="text"
  126. @click="handleUnit(scope.row)"
  127. v-if="scope.row.condition !=1 && scope.row.status != 3 && checkPermi(['business:JOINTCONFERENCE:edit'])"
  128. >单位指派</el-button
  129. >
  130. </template>
  131. </el-table-column>
  132. </el-table>
  133. <pagination
  134. v-show="total > 0"
  135. :total="total"
  136. :page.sync="queryParams.pageNum"
  137. :limit.sync="queryParams.pageSize"
  138. @pagination="getList"
  139. />
  140. </div>
  141. </template>
  142. <script>
  143. import {
  144. listJOINTCONFERENCE,
  145. getJOINTCONFERENCE,
  146. delJOINTCONFERENCE,
  147. addJOINTCONFERENCE,
  148. updateJOINTCONFERENCE,
  149. } from "@/api/portal/JOINTCONFERENCE/JOINTCONFERENCE.js";
  150. import { getInfo } from "@/api/login";
  151. import { checkPermi } from "@/utils/permission.js";
  152. import add from "./add.vue";
  153. import detail from "./detail.vue";
  154. export default {
  155. name: "JOINTCONFERENCE",
  156. data() {
  157. return {
  158. statusList: [
  159. { label: "未指派", value: 1 },
  160. { label: "进行中", value: 2 },
  161. { label: "已完成", value: 3 },
  162. ],
  163. // 根路径
  164. baseURL: process.env.VUE_APP_BASE_API,
  165. // 遮罩层
  166. loading: true,
  167. // 选中数组
  168. ids: [],
  169. // 非单个禁用
  170. single: true,
  171. // 非多个禁用
  172. multiple: true,
  173. // 显示搜索条件
  174. showSearch: true,
  175. // 总条数
  176. total: 0,
  177. // 联席会议表格数据
  178. JOINTCONFERENCEList: [],
  179. // 弹出层标题
  180. title: "",
  181. // 是否显示弹出层
  182. open: false,
  183. // 查询参数
  184. queryParams: {
  185. pageNum: 1,
  186. pageSize: 10,
  187. id: null,
  188. createTime: null,
  189. createBy: null,
  190. updateTime: null,
  191. updateBy: null,
  192. delFlag: null,
  193. deptId: null,
  194. createBy: null,
  195. conferenceTitle: null,
  196. conferenceContent: null,
  197. cooperativeUnit: null,
  198. replied: null,
  199. status: null,
  200. },
  201. // 表单参数
  202. form: {},
  203. // 表单校验
  204. rules: {
  205. id: [{ required: true, message: "主键id不能为空", trigger: "blur" }],
  206. delFlag: [
  207. { required: true, message: "删除标志不能为空", trigger: "blur" },
  208. ],
  209. deptId: [
  210. { required: true, message: "部门id不能为空", trigger: "blur" },
  211. ],
  212. conferenceTitle: [
  213. { required: true, message: "会议标题不能为空", trigger: "blur" },
  214. ],
  215. conferenceContent: [
  216. { required: true, message: "会议内容不能为空", trigger: "blur" },
  217. ],
  218. cooperativeUnit: [
  219. { required: true, message: "协作单位不能为空", trigger: "blur" },
  220. ],
  221. replied: [
  222. {
  223. required: true,
  224. message: "已回复单位数量不能为空",
  225. trigger: "blur",
  226. },
  227. ],
  228. status: [
  229. {
  230. required: true,
  231. message: "会议状态1=未指派,2=进行中,3=已完成不能为空",
  232. trigger: "blur",
  233. },
  234. ],
  235. },
  236. };
  237. },
  238. created() {
  239. getInfo().then((res) => {
  240. this.queryParams.createBy = res.user.userName;
  241. this.getList();
  242. });
  243. },
  244. methods: {
  245. checkPermi,
  246. goDetail(row) {
  247. this.iframe({
  248. obj: detail,
  249. param: { id: row.id },
  250. title: "会议详情",
  251. width: "750px",
  252. height: "60%",
  253. });
  254. },
  255. handleUnit(row) {
  256. const id = row.id || this.ids;
  257. this.iframe({
  258. obj: add,
  259. param: { id: id,edit:true },
  260. title: "单位指派",
  261. width: "750px",
  262. height: "60%",
  263. });
  264. },
  265. /** 查询联席会议列表 */
  266. getList() {
  267. this.loading = true;
  268. listJOINTCONFERENCE(this.queryParams).then((response) => {
  269. this.JOINTCONFERENCEList = response.rows;
  270. this.total = response.total;
  271. this.loading = false;
  272. });
  273. },
  274. // 取消按钮
  275. cancel() {
  276. this.open = false;
  277. this.reset();
  278. },
  279. // 表单重置
  280. reset() {
  281. this.form = {
  282. id: null,
  283. delFlag: null,
  284. deptId: null,
  285. conferenceTitle: null,
  286. conferenceContent: null,
  287. cooperativeUnit: null,
  288. replied: null,
  289. status: "0",
  290. };
  291. this.resetForm("form");
  292. },
  293. /** 搜索按钮操作 */
  294. handleQuery() {
  295. this.queryParams.pageNum = 1;
  296. this.getList();
  297. },
  298. /** 重置按钮操作 */
  299. resetQuery() {
  300. this.resetForm("queryForm");
  301. this.handleQuery();
  302. },
  303. // 多选框选中数据
  304. handleSelectionChange(selection) {
  305. this.ids = selection.map((item) => item.id);
  306. this.single = selection.length !== 1;
  307. this.multiple = !selection.length;
  308. },
  309. /** 新增按钮操作 */
  310. handleAdd() {
  311. this.iframe({
  312. obj: add,
  313. param: {
  314. edit:false
  315. },
  316. title: "发起会议",
  317. width: "750px",
  318. height: "60%",
  319. });
  320. },
  321. /** 修改按钮操作 */
  322. handleUpdate(row) {
  323. this.reset();
  324. const id = row.id || this.ids;
  325. // getJOINTCONFERENCE(id).then((response) => {
  326. // this.form = response.data;
  327. // this.open = true;
  328. // this.title = "修改联席会议";
  329. // });
  330. this.iframe({
  331. obj: add,
  332. param: {id:id},
  333. title: "修改会议",
  334. width: "750px",
  335. height: "60%",
  336. });
  337. },
  338. /** 提交按钮 */
  339. submitForm() {
  340. this.$refs["form"].validate((valid) => {
  341. if (valid) {
  342. if (this.form.id != null) {
  343. updateJOINTCONFERENCE(this.form).then((response) => {
  344. this.$modal.msgSuccess("修改成功");
  345. this.open = false;
  346. this.getList();
  347. });
  348. } else {
  349. addJOINTCONFERENCE(this.form).then((response) => {
  350. this.$modal.msgSuccess("新增成功");
  351. this.open = false;
  352. this.getList();
  353. });
  354. }
  355. }
  356. });
  357. },
  358. /** 删除按钮操作 */
  359. handleDelete(row) {
  360. const ids = row.id || this.ids;
  361. this.$modal
  362. .confirm("是否确认删除?")
  363. .then(function () {
  364. return delJOINTCONFERENCE(ids);
  365. })
  366. .then(() => {
  367. this.getList();
  368. this.$modal.msgSuccess("删除成功");
  369. })
  370. .catch(() => {});
  371. },
  372. /** 导出按钮操作 */
  373. handleExport() {
  374. this.download(
  375. "business/JOINTCONFERENCE/export",
  376. {
  377. ...this.queryParams,
  378. },
  379. `JOINTCONFERENCE_${new Date().getTime()}.xlsx`
  380. );
  381. },
  382. },
  383. };
  384. </script>