index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  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">
  12. <el-select
  13. v-model="queryParams.status"
  14. placeholder="请选择评价状态"
  15. clearable
  16. filterable
  17. >
  18. <el-option
  19. v-for="dict in judgeList"
  20. :key="dict.value + 'judgeList'"
  21. :label="dict.label"
  22. :value="dict.value"
  23. />
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item label="咨询标签" prop="mark">
  27. <el-select
  28. v-model="queryParams.mark"
  29. placeholder="请选择或输入咨询标签"
  30. clearable
  31. filterable
  32. >
  33. <el-option
  34. v-for="dict in markList"
  35. :key="dict.mark + 'markList'"
  36. :label="dict.mark"
  37. :value="dict.mark"
  38. />
  39. </el-select>
  40. </el-form-item>
  41. <el-form-item label="审核状态" prop="checkStatus">
  42. <el-select
  43. v-model="queryParams.checkStatus"
  44. placeholder="请选择审核状态"
  45. clearable
  46. filterable
  47. >
  48. <el-option
  49. v-for="dict in checkStatusList"
  50. :key="dict.value + 'checkStatusList'"
  51. :label="dict.label"
  52. :value="dict.value"
  53. />
  54. </el-select>
  55. </el-form-item>
  56. <el-form-item>
  57. <el-button
  58. type="primary"
  59. icon="el-icon-search"
  60. size="mini"
  61. @click="handleQuery"
  62. >搜索</el-button
  63. >
  64. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  65. >重置</el-button
  66. >
  67. </el-form-item>
  68. </el-form>
  69. <el-row :gutter="10" class="mb8">
  70. <!-- <el-col :span="1.5">
  71. <el-button
  72. type="primary"
  73. plain
  74. icon="el-icon-plus"
  75. size="mini"
  76. @click="handleAdd"
  77. v-hasPermi="['business:QUESTION:add']"
  78. >新增</el-button
  79. >
  80. </el-col> -->
  81. <right-toolbar
  82. :showSearch.sync="showSearch"
  83. @queryTable="getList"
  84. ></right-toolbar>
  85. </el-row>
  86. <el-table :data="QUESTIONList">
  87. <el-table-column type="expand">
  88. <template slot-scope="props">
  89. <el-form label-position="left" inline class="demo-table-expand">
  90. <el-form-item label="提问标题">
  91. {{ props.row.question }}
  92. </el-form-item>
  93. <el-form-item label="专家回答">
  94. <!-- {{ props.row.expertAnswer }}-->
  95. <div class="clear_p" v-html="props.row.expertAnswer"></div>
  96. </el-form-item>
  97. <el-form-item label="提问详情">
  98. {{ props.row.detail }}
  99. </el-form-item>
  100. </el-form>
  101. </template>
  102. </el-table-column>
  103. <el-table-column label="标签名称" align="center" prop="mark">
  104. <template slot-scope="scope">
  105. {{ scope.row.mark }}
  106. </template>
  107. </el-table-column>
  108. <!-- <el-table-column label="提问标题" align="center" prop="question">
  109. <template slot-scope="scope">
  110. {{ scope.row.question }}
  111. </template>
  112. </el-table-column> -->
  113. <el-table-column label="专家姓名" align="center" prop="expertName">
  114. <template slot-scope="scope">
  115. {{ scope.row.expertName }}
  116. </template>
  117. </el-table-column>
  118. <!-- <el-table-column label="专家回答" align="center" prop="expertAnswer">
  119. <template slot-scope="scope">
  120. {{ scope.row.expertAnswer }}
  121. </template>
  122. </el-table-column> -->
  123. <!-- <el-table-column label="提问详情" align="center" prop="detail">
  124. <template slot-scope="scope">
  125. {{ scope.row.detail }}
  126. </template>
  127. </el-table-column> -->
  128. <el-table-column label="评价状态" align="center" prop="status">
  129. <template slot-scope="scope">
  130. <el-tag v-if="scope.row.status == 0">未回复</el-tag>
  131. <el-tag v-else-if="scope.row.status == 1" type="success"
  132. >已回复</el-tag
  133. >
  134. </template>
  135. </el-table-column>
  136. <el-table-column
  137. label="期望回复时间"
  138. align="center"
  139. prop="responseTime"
  140. width="120px"
  141. >
  142. <template slot-scope="scope">
  143. {{ scope.row.responseTime }}
  144. </template>
  145. </el-table-column>
  146. <el-table-column label="审核状态" align="center" prop="checkStatus" width="100px">
  147. <template slot-scope="scope">
  148. <el-tag v-if="scope.row.checkStatus == 0">待审核</el-tag>
  149. <el-tag v-else-if="scope.row.checkStatus == 1" type="success"
  150. >已审核</el-tag
  151. >
  152. <el-tag v-else-if="scope.row.checkStatus == 2" type="danger"
  153. >审核拒绝</el-tag
  154. >
  155. </template>
  156. </el-table-column>
  157. <el-table-column label="评价" align="center" prop="judge">
  158. <template slot-scope="scope">
  159. <el-tag v-if="scope.row.judge == 0">未评价</el-tag>
  160. <el-tag v-else-if="scope.row.judge == 1" type="success">好评</el-tag>
  161. <el-tag v-else-if="scope.row.judge == 2" type="warning">中评</el-tag>
  162. <el-tag v-else-if="scope.row.judge == 3" type="danger">差评</el-tag>
  163. </template>
  164. </el-table-column>
  165. <el-table-column label="回复时间" align="center" prop="responseTime">
  166. <template slot-scope="scope">
  167. {{ scope.row.responseTime }}
  168. </template>
  169. </el-table-column>
  170. <!-- <el-table-column label="提问人姓名" align="center" prop="ansName">
  171. <template slot-scope="scope">
  172. {{ scope.row.ansName }}
  173. </template>
  174. </el-table-column> -->
  175. <el-table-column
  176. label="操作"
  177. align="center"
  178. class-name="small-padding fixed-width"
  179. >
  180. <template slot-scope="scope">
  181. <el-button
  182. size="mini"
  183. type="text"
  184. icon="el-icon-edit"
  185. @click="handleUpdate(scope.row)"
  186. v-hasPermi="['business:QUESTION:edit']"
  187. >修改</el-button
  188. >
  189. <el-button
  190. size="mini"
  191. type="text"
  192. icon="el-icon-delete"
  193. @click="handleDelete(scope.row)"
  194. v-hasPermi="['business:QUESTION:remove']"
  195. >删除</el-button
  196. >
  197. </template>
  198. </el-table-column>
  199. </el-table>
  200. <pagination
  201. v-show="total > 0"
  202. :total="total"
  203. :page.sync="queryParams.pageNum"
  204. :limit.sync="queryParams.pageSize"
  205. @pagination="getList"
  206. />
  207. <!-- </el-dialog>-->
  208. <!-- ↑不知道是不是没删干净,我先注释了-->
  209. </div>
  210. </template>
  211. <script>
  212. import {
  213. listQUESTION,
  214. getQUESTION,
  215. delQUESTION,
  216. addQUESTION,
  217. updateQUESTION,
  218. getMarkListAll
  219. } from "@/api/portal/QUESTION/QUESTION.js";
  220. import edit from "./edit.vue";
  221. export default {
  222. name: "QUESTION",
  223. data() {
  224. return {
  225. markList:[],
  226. judgeList: [
  227. { label: "未评价", value: "0" },
  228. { label: "好评", value: "1" },
  229. { label: "中评", value: "2" },
  230. { label: "差评", value: "3" },
  231. ],
  232. checkStatusList: [
  233. { label: "待审核", value: "0" },
  234. { label: "已审核", value: "1" },
  235. { label: "审核拒绝", value: "2" },
  236. ],
  237. // 根路径
  238. baseURL: process.env.VUE_APP_BASE_API,
  239. // 遮罩层
  240. loading: true,
  241. // 选中数组
  242. ids: [],
  243. // 非单个禁用
  244. single: true,
  245. // 非多个禁用
  246. multiple: true,
  247. // 显示搜索条件
  248. showSearch: true,
  249. // 总条数
  250. total: 0,
  251. // 咨询信息表格数据
  252. QUESTIONList: [],
  253. // 弹出层标题
  254. title: "",
  255. // 是否显示弹出层
  256. open: false,
  257. // 查询参数
  258. queryParams: {
  259. pageNum: 1,
  260. pageSize: 10,
  261. expertName: null,
  262. expertId: null,
  263. expertAnswer: null,
  264. detail: null,
  265. status: null,
  266. responseTime: null,
  267. checkStatus: null,
  268. judge: null,
  269. replyTime: null,
  270. answerId: null,
  271. id: null,
  272. cbId: null,
  273. createTime: null,
  274. createBy: null,
  275. updateTime: null,
  276. updateBy: null,
  277. delFlag: null,
  278. deptId: null,
  279. question: null,
  280. mark: null,
  281. ansName: null,
  282. },
  283. // 表单参数
  284. form: {},
  285. };
  286. },
  287. created() {
  288. this.getList()
  289. this.getMark()
  290. },
  291. methods: {
  292. getMark(){
  293. getMarkListAll().then(res=>{
  294. this.markList = res.data
  295. })
  296. },
  297. /** 查询咨询信息列表 */
  298. getList() {
  299. this.loading = true;
  300. listQUESTION(this.queryParams).then((response) => {
  301. this.QUESTIONList = response.rows;
  302. this.total = response.total;
  303. this.loading = false;
  304. });
  305. },
  306. // 取消按钮
  307. cancel() {
  308. this.open = false;
  309. this.reset();
  310. },
  311. // 表单重置
  312. reset() {
  313. this.form = {
  314. expertName: null,
  315. expertId: null,
  316. expertAnswer: null,
  317. detail: null,
  318. status: "0",
  319. responseTime: null,
  320. checkStatus: "0",
  321. judge: null,
  322. replyTime: null,
  323. answerId: null,
  324. id: null,
  325. cbId: null,
  326. delFlag: null,
  327. deptId: null,
  328. question: null,
  329. mark: null,
  330. ansName: null,
  331. };
  332. this.resetForm("form");
  333. },
  334. /** 搜索按钮操作 */
  335. handleQuery() {
  336. this.queryParams.pageNum = 1;
  337. this.getList();
  338. },
  339. /** 重置按钮操作 */
  340. resetQuery() {
  341. this.resetForm("queryForm");
  342. this.handleQuery();
  343. },
  344. // 多选框选中数据
  345. handleSelectionChange(selection) {
  346. this.ids = selection.map((item) => item.expertName);
  347. this.single = selection.length !== 1;
  348. this.multiple = !selection.length;
  349. },
  350. /** 新增按钮操作 */
  351. handleAdd() {
  352. this.reset();
  353. this.open = true;
  354. this.title = "添加咨询信息";
  355. },
  356. /** 修改按钮操作 */
  357. handleUpdate(row) {
  358. const id = row.id || this.ids;
  359. this.iframe({ obj: edit, param: { id: id }, title: '修改咨询请求', width: '1050px', height: '80%' });
  360. },
  361. /** 提交按钮 */
  362. submitForm() {
  363. this.$refs["form"].validate((valid) => {
  364. if (valid) {
  365. if (this.form.expertName != null) {
  366. updateQUESTION(this.form).then((response) => {
  367. this.$modal.msgSuccess("修改成功");
  368. this.open = false;
  369. this.getList();
  370. });
  371. } else {
  372. addQUESTION(this.form).then((response) => {
  373. this.$modal.msgSuccess("新增成功");
  374. this.open = false;
  375. this.getList();
  376. });
  377. }
  378. }
  379. });
  380. },
  381. /** 删除按钮操作 */
  382. handleDelete(row) {
  383. const expertIds = row.id || this.ids;
  384. this.$modal
  385. .confirm('是否确认删除?')
  386. .then(function () {
  387. return delQUESTION(expertIds);
  388. })
  389. .then(() => {
  390. this.getList();
  391. this.$modal.msgSuccess("删除成功");
  392. })
  393. .catch(() => {});
  394. },
  395. /** 导出按钮操作 */
  396. handleExport() {
  397. this.download(
  398. "business/QUESTION/export",
  399. {
  400. ...this.queryParams,
  401. },
  402. `QUESTION_${new Date().getTime()}.xlsx`
  403. );
  404. },
  405. },
  406. };
  407. </script>
  408. <style scoped>
  409. .demo-table-expand {
  410. font-size: 0;
  411. }
  412. .demo-table-expand label {
  413. width: 90px;
  414. color: #99a9bf;
  415. }
  416. .demo-table-expand .el-form-item {
  417. margin-right: 0;
  418. margin-bottom: 0;
  419. width: 50%;
  420. padding-left: 90px;
  421. }
  422. ::v-deep .el-form-item__content p{
  423. margin: 0 !important;
  424. }
  425. </style>