index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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:JOINTCONFERENCE:query']"
  121. >会议详情</el-button
  122. >
  123. <el-button
  124. size="mini"
  125. type="text"
  126. @click="handleUnit(scope.row)"
  127. v-hasPermi="['business:JOINTCONFERENCE:query']"
  128. >单位指派</el-button
  129. >
  130. <el-button
  131. size="mini"
  132. type="text"
  133. @click="handleUnit(scope.row)"
  134. v-hasPermi="['business:JOINTCONFERENCE:query']"
  135. >会议回复</el-button
  136. >
  137. </template>
  138. </el-table-column>
  139. </el-table>
  140. <pagination
  141. v-show="total > 0"
  142. :total="total"
  143. :page.sync="queryParams.pageNum"
  144. :limit.sync="queryParams.pageSize"
  145. @pagination="getList"
  146. />
  147. </div>
  148. </template>
  149. <script>
  150. import {
  151. listJOINTCONFERENCE,
  152. getJOINTCONFERENCE,
  153. delJOINTCONFERENCE,
  154. addJOINTCONFERENCE,
  155. updateJOINTCONFERENCE,
  156. } from "@/api/portal/JOINTCONFERENCE/JOINTCONFERENCE.js";
  157. import add from "@/views/JOINTCONFERENCE/add.vue";
  158. import detail from "@/views/JOINTCONFERENCE/detail.vue";
  159. import callback from "@/views/JOINTCONFERENCE/callback.vue";
  160. import { getInfo } from "@/api/login";
  161. export default {
  162. // name: "JOINTCONFERENCE",
  163. data() {
  164. return {
  165. meetId: null,
  166. statusList: [
  167. { label: "未指派", value: 1 },
  168. { label: "进行中", value: 2 },
  169. { label: "已完成", value: 3 },
  170. ],
  171. // 根路径
  172. baseURL: process.env.VUE_APP_BASE_API,
  173. // 遮罩层
  174. loading: true,
  175. // 选中数组
  176. ids: [],
  177. // 非单个禁用
  178. single: true,
  179. // 非多个禁用
  180. multiple: true,
  181. // 显示搜索条件
  182. showSearch: true,
  183. // 总条数
  184. total: 0,
  185. // 联席会议表格数据
  186. JOINTCONFERENCEList: [],
  187. // 弹出层标题
  188. title: "",
  189. // 是否显示弹出层
  190. open: false,
  191. // 查询参数
  192. queryParams: {
  193. pageNum: 1,
  194. pageSize: 10,
  195. deptIds: null,
  196. id: null,
  197. createTime: null,
  198. createBy: null,
  199. updateTime: null,
  200. updateBy: null,
  201. delFlag: null,
  202. deptId: null,
  203. conferenceTitle: null,
  204. conferenceContent: null,
  205. cooperativeUnit: null,
  206. replied: null,
  207. status: null,
  208. },
  209. // 表单参数
  210. form: {},
  211. // 表单校验
  212. rules: {
  213. id: [{ required: true, message: "主键id不能为空", trigger: "blur" }],
  214. delFlag: [
  215. { required: true, message: "删除标志不能为空", trigger: "blur" },
  216. ],
  217. deptId: [
  218. { required: true, message: "部门id不能为空", trigger: "blur" },
  219. ],
  220. conferenceTitle: [
  221. { required: true, message: "会议标题不能为空", trigger: "blur" },
  222. ],
  223. conferenceContent: [
  224. { required: true, message: "会议内容不能为空", trigger: "blur" },
  225. ],
  226. cooperativeUnit: [
  227. { required: true, message: "协作单位不能为空", trigger: "blur" },
  228. ],
  229. replied: [
  230. {
  231. required: true,
  232. message: "已回复单位数量不能为空",
  233. trigger: "blur",
  234. },
  235. ],
  236. status: [
  237. {
  238. required: true,
  239. message: "会议状态1=未指派,2=进行中,3=已完成不能为空",
  240. trigger: "blur",
  241. },
  242. ],
  243. },
  244. };
  245. },
  246. created() {
  247. getInfo().then((res) => {
  248. this.meetId = res.user.deptId;
  249. this.queryParams.deptIds = this.meetId;
  250. this.getList();
  251. });
  252. },
  253. methods: {
  254. goDetail(row) {
  255. this.iframe({
  256. obj: detail,
  257. param: { id: row.id },
  258. title: "会议详情",
  259. width: "750px",
  260. height: "60%",
  261. });
  262. },
  263. handleUnit(row) {
  264. const id = row.id || this.ids;
  265. this.iframe({
  266. obj: add,
  267. param: { id: id },
  268. title: "单位指派",
  269. width: "750px",
  270. height: "60%",
  271. });
  272. },
  273. handleReply(row) {
  274. this.iframe({
  275. obj: callback,
  276. param: { id: row.id },
  277. title: "回复会议",
  278. width: "750px",
  279. height: "60%",
  280. });
  281. },
  282. /** 查询联席会议列表 */
  283. getList() {
  284. this.loading = true;
  285. listJOINTCONFERENCE(this.queryParams).then((response) => {
  286. this.JOINTCONFERENCEList = response.rows;
  287. this.total = response.total;
  288. this.loading = false;
  289. });
  290. },
  291. // 取消按钮
  292. cancel() {
  293. this.open = false;
  294. this.reset();
  295. },
  296. // 表单重置
  297. reset() {
  298. this.form = {
  299. id: null,
  300. delFlag: null,
  301. deptId: null,
  302. conferenceTitle: null,
  303. conferenceContent: null,
  304. cooperativeUnit: null,
  305. replied: null,
  306. status: "0",
  307. };
  308. this.resetForm("form");
  309. },
  310. /** 搜索按钮操作 */
  311. handleQuery() {
  312. this.queryParams.pageNum = 1;
  313. this.getList();
  314. },
  315. /** 重置按钮操作 */
  316. resetQuery() {
  317. this.resetForm("queryForm");
  318. this.handleQuery();
  319. },
  320. // 多选框选中数据
  321. handleSelectionChange(selection) {
  322. this.ids = selection.map((item) => item.id);
  323. this.single = selection.length !== 1;
  324. this.multiple = !selection.length;
  325. },
  326. /** 新增按钮操作 */
  327. handleAdd() {
  328. this.iframe({
  329. obj: add,
  330. param: {},
  331. title: "发起会议",
  332. width: "750px",
  333. height: "60%",
  334. });
  335. },
  336. /** 修改按钮操作 */
  337. handleUpdate(row) {
  338. this.reset();
  339. const id = row.id || this.ids;
  340. // getJOINTCONFERENCE(id).then((response) => {
  341. // this.form = response.data;
  342. // this.open = true;
  343. // this.title = "修改联席会议";
  344. // });
  345. this.iframe({
  346. obj: add,
  347. param: {id:id},
  348. title: "修改会议",
  349. width: "750px",
  350. height: "60%",
  351. });
  352. },
  353. /** 提交按钮 */
  354. submitForm() {
  355. this.$refs["form"].validate((valid) => {
  356. if (valid) {
  357. if (this.form.id != null) {
  358. updateJOINTCONFERENCE(this.form).then((response) => {
  359. this.$modal.msgSuccess("修改成功");
  360. this.open = false;
  361. this.getList();
  362. });
  363. } else {
  364. addJOINTCONFERENCE(this.form).then((response) => {
  365. this.$modal.msgSuccess("新增成功");
  366. this.open = false;
  367. this.getList();
  368. });
  369. }
  370. }
  371. });
  372. },
  373. /** 删除按钮操作 */
  374. handleDelete(row) {
  375. const ids = row.id || this.ids;
  376. this.$modal
  377. .confirm("是否确认删除?")
  378. .then(function () {
  379. return delJOINTCONFERENCE(ids);
  380. })
  381. .then(() => {
  382. this.getList();
  383. this.$modal.msgSuccess("删除成功");
  384. })
  385. .catch(() => {});
  386. },
  387. /** 导出按钮操作 */
  388. handleExport() {
  389. this.download(
  390. "business/JOINTCONFERENCE/export",
  391. {
  392. ...this.queryParams,
  393. },
  394. `JOINTCONFERENCE_${new Date().getTime()}.xlsx`
  395. );
  396. },
  397. },
  398. };
  399. </script>