index.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
  4. <!-- <el-form-item label="留言标题" prop="question">-->
  5. <!-- <el-input v-model="queryParams.question" placeholder="请输入留言标题" clearable @keyup.enter.native="handleQuery" />-->
  6. <!-- </el-form-item>-->
  7. <el-form-item label="留言人姓名" prop="ansName">
  8. <el-input v-model="queryParams.ansName" placeholder="请输入留言人姓名" clearable @keyup.enter.native="handleQuery" />
  9. </el-form-item>
  10. <el-form-item label="状态" prop="type">
  11. <el-select v-model="queryParams.type" placeholder="请选择">
  12. <el-option
  13. v-for="item in options"
  14. :key="item.value"
  15. :label="item.label"
  16. :value="item.value">
  17. </el-option>
  18. </el-select>
  19. </el-form-item>
  20. <el-form-item>
  21. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  22. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  23. </el-form-item>
  24. </el-form>
  25. <el-row :gutter="10" class="mb8">
  26. <el-col :span="1.5">
  27. <el-button type="primary" icon="el-icon-edit" :disabled="single" @click="handleUpdate(scope.row)" v-hasPermi="['business:LEAVEMESSAGE:edit']">查看</el-button>
  28. </el-col>
  29. <el-col :span="1.5">
  30. <el-button type="danger" icon="el-icon-delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['business:LEAVEMESSAGE:remove']">删除</el-button>
  31. </el-col>
  32. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  33. </el-row>
  34. <el-table ref="multipleTable" :data="LEAVEMESSAGEList" @selection-change="handleSelectionChange">
  35. <el-table-column type="selection" width="55" align="center" />
  36. <el-table-column label="创建人" align="center" prop="createBy" />
  37. <el-table-column label="留言人姓名" align="center" prop="ansName" />
  38. <!-- <el-table-column label="留言标题" align="center" prop="question" :show-overflow-tooltip="true" />-->
  39. <el-table-column label="留言详情" align="center" prop="questionDetail" :show-overflow-tooltip="true" />
  40. <el-table-column label="状态" align="center" prop="type">
  41. <template slot-scope="scope">
  42. <span v-if="scope.row.type == 0"><el-tag type="danger">未回复</el-tag></span>
  43. <span v-if="scope.row.type == 1"><el-tag>已回复</el-tag></span>
  44. </template>
  45. </el-table-column>
  46. <el-table-column label="留言时间" align="center" prop="createTime">
  47. <template slot-scope="scope">
  48. <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}-{h}:{i}') }}</span>
  49. </template>
  50. </el-table-column>
  51. <el-table-column label="更新时间" align="center" prop="updateTime">
  52. <template slot-scope="scope">
  53. <span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}-{h}:{i}') }}</span>
  54. </template>
  55. </el-table-column>
  56. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  57. <template slot-scope="scope">
  58. <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:LEAVEMESSAGE:edit']">查看</el-button>
  59. <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['business:LEAVEMESSAGE:remove']">删除</el-button>
  60. </template>
  61. </el-table-column>
  62. </el-table>
  63. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  64. <!-- 添加或修改留言反馈对话框 -->
  65. <el-dialog :title="title" :visible.sync="open" width="750px" :close-on-click-modal="false" append-to-body>
  66. <el-form ref="form" :model="form" :rules="rules" label-width="100px">
  67. <el-row>
  68. <el-col :span="24">
  69. <el-form-item label="留言标题" prop="questionDetail">
  70. <el-input v-model="form.questionDetail" placeholder="请输入链接" type="textarea" :disabled="true" autosize />
  71. </el-form-item>
  72. </el-col>
  73. </el-row>
  74. <el-row>
  75. <el-col :span="24">
  76. <el-form-item label="留言详情" prop="questionDetail">
  77. <el-input v-model="form.questionDetail" placeholder="请输入链接" type="textarea" :disabled="true" autosize />
  78. </el-form-item>
  79. </el-col>
  80. </el-row>
  81. <el-row>
  82. <el-col :span="24">
  83. <el-form-item label="回复内容" prop="replyContent">
  84. <template slot-scope="scope">
  85. <el-input v-if="form.type == 0" v-model="form.replyContent" type="textarea" rows="5" placeholder="请输入内容" />
  86. <el-input v-else-if="form.type == 1" disabled v-model="form.replyContent" rows="5" type="textarea" />
  87. </template>
  88. </el-form-item>
  89. </el-col>
  90. </el-row>
  91. </el-form>
  92. <div slot="footer" class="dialog-footer">
  93. <el-button type="primary" @click="submitForm">确 定</el-button>
  94. <el-button @click="cancel">取 消</el-button>
  95. </div>
  96. </el-dialog>
  97. </div>
  98. </template>
  99. <script>
  100. import { listLEAVEMESSAGE, getLEAVEMESSAGE, delLEAVEMESSAGE, addLEAVEMESSAGE, updateLEAVEMESSAGE } from '@/api/portal/LEAVEMESSAGE/LEAVEMESSAGE';
  101. export default {
  102. name: 'LEAVEMESSAGE',
  103. data() {
  104. return {
  105. options:[
  106. {value: 0, label: '未回复'},
  107. {value: 1, label: '已回复'},
  108. ],
  109. // 根路径
  110. baseURL: process.env.VUE_APP_BASE_API,
  111. // 遮罩层
  112. loading: true,
  113. // 选中数组
  114. ids: [],
  115. // 非单个禁用
  116. single: true,
  117. // 非多个禁用
  118. multiple: true,
  119. // 显示搜索条件
  120. showSearch: true,
  121. // 总条数
  122. total: 0,
  123. // 留言反馈表格数据
  124. LEAVEMESSAGEList: [],
  125. // 弹出层标题
  126. title: '',
  127. // 是否显示弹出层
  128. open: false,
  129. // 查询参数
  130. queryParams: {
  131. pageNum: 1,
  132. pageSize: 10,
  133. id: null,
  134. userId: null,
  135. createTime: null,
  136. createBy: null,
  137. updateTime: null,
  138. updateBy: null,
  139. delFlag: null,
  140. deptId: null,
  141. question: null,
  142. questionDetail: null,
  143. questionTime: null,
  144. ansName: null
  145. },
  146. // 表单参数
  147. form: {
  148. replyContent: null
  149. },
  150. // 表单校验
  151. rules: {
  152. question: [{ required: true, message: '留言标题不能为空', trigger: 'blur' }],
  153. questionDetail: [{ required: true, message: '留言详情不能为空', trigger: 'blur' }],
  154. questionTime: [{ required: true, message: '留言时间不能为空', trigger: 'blur' }],
  155. ansName: [{ required: true, message: '留言人姓名不能为空', trigger: 'blur' }],
  156. replyContent: [{ required: true, message: '回复内容不能为空', trigger: 'blur' }]
  157. }
  158. };
  159. },
  160. created() {
  161. this.getList();
  162. },
  163. methods: {
  164. /** 查询留言反馈列表 */
  165. getList() {
  166. this.loading = true;
  167. listLEAVEMESSAGE(this.queryParams).then(response => {
  168. this.LEAVEMESSAGEList = response.rows;
  169. this.total = response.total;
  170. this.loading = false;
  171. });
  172. },
  173. // 取消按钮
  174. cancel() {
  175. this.open = false;
  176. this.reset();
  177. },
  178. // 表单重置
  179. reset() {
  180. this.form = {
  181. id: null,
  182. userId: null,
  183. delFlag: null,
  184. deptId: null,
  185. question: null,
  186. questionDetail: null,
  187. questionTime: null,
  188. ansName: null,
  189. replyContent: null
  190. };
  191. this.resetForm('form');
  192. },
  193. /** 搜索按钮操作 */
  194. handleQuery() {
  195. this.queryParams.pageNum = 1;
  196. this.getList();
  197. },
  198. /** 重置按钮操作 */
  199. resetQuery() {
  200. this.resetForm('queryForm');
  201. this.handleQuery();
  202. },
  203. // 多选框选中数据
  204. handleSelectionChange(selection) {
  205. this.ids = selection.map(item => item.id);
  206. this.single = selection.length !== 1;
  207. this.multiple = !selection.length;
  208. },
  209. /** 新增按钮操作 */
  210. handleAdd() {
  211. this.reset();
  212. this.open = true;
  213. this.title = '添加留言反馈';
  214. },
  215. /** 修改按钮操作 */
  216. handleUpdate(row) {
  217. this.reset();
  218. const id = row.id || this.ids;
  219. getLEAVEMESSAGE(id).then(response => {
  220. this.form = response.data;
  221. this.open = true;
  222. this.title = '修改留言反馈';
  223. });
  224. },
  225. /** 提交按钮 */
  226. submitForm() {
  227. this.$refs['form'].validate(valid => {
  228. if (valid) {
  229. if (this.form.id != null) {
  230. this.form.type = 1;
  231. updateLEAVEMESSAGE(this.form).then(response => {
  232. this.$modal.msgSuccess('回复成功');
  233. this.open = false;
  234. this.getList();
  235. });
  236. } else {
  237. addLEAVEMESSAGE(this.form).then(response => {
  238. this.$modal.msgSuccess('新增成功');
  239. this.open = false;
  240. this.getList();
  241. });
  242. }
  243. }
  244. });
  245. },
  246. /** 删除按钮操作 */
  247. handleDelete(row) {
  248. const ids = row ? row.id : this.ids;
  249. this.$modal
  250. .confirm('是否确认删除所选留言?')
  251. .then(function () {
  252. return delLEAVEMESSAGE(ids);
  253. })
  254. .then(() => {
  255. this.getList();
  256. this.$modal.msgSuccess('删除成功');
  257. })
  258. .catch(() => {
  259. this.$refs.multipleTable.clearSelection();
  260. });
  261. },
  262. /** 导出按钮操作 */
  263. handleExport() {
  264. this.download(
  265. 'business/LEAVEMESSAGE/export',
  266. {
  267. ...this.queryParams
  268. },
  269. `LEAVEMESSAGE_${new Date().getTime()}.xlsx`
  270. );
  271. }
  272. }
  273. };
  274. </script>