jinxia.mo 1 ヶ月 前
コミット
18d7df3f13

+ 52 - 0
back-ui/src/api/dz/bCustomerQuestionError.js

@@ -0,0 +1,52 @@
+import request from '@/utils/request'
+
+// 查询题目纠错列表
+export function listBCustomerQuestionError(query) {
+  return request({
+    url: '/dz/bCustomerQuestionError/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询题目纠错详细
+export function getBCustomerQuestionError(id) {
+  return request({
+    url: '/dz/bCustomerQuestionError/' + id,
+    method: 'get'
+  })
+}
+
+// 新增题目纠错
+export function addBCustomerQuestionError(data) {
+  return request({
+    url: '/dz/bCustomerQuestionError',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改题目纠错
+export function updateBCustomerQuestionError(data) {
+  return request({
+    url: '/dz/bCustomerQuestionError',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除题目纠错
+export function delBCustomerQuestionError(id) {
+  return request({
+    url: '/dz/bCustomerQuestionError/' + id,
+    method: 'delete'
+  })
+}
+
+// 确认解决
+export function verifyProcess(id) {
+  return request({
+    url: '/dz/bCustomerQuestionError/verifyProcess/' + id,
+    method: 'post'
+  })
+}

+ 314 - 0
back-ui/src/views/dz/bCustomerQuestionError/index.vue

@@ -0,0 +1,314 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
+      <!-- <el-form-item label="客户" prop="customerCode">
+        <el-input
+          v-model="queryParams.customerCode"
+          placeholder="请输入客户"
+          clearable
+          @keyup.enter="handleQuery"
+        />
+      </el-form-item> -->
+      <el-form-item label="题目ID" prop="questionid">
+        <el-input
+          v-model="queryParams.questionid"
+          placeholder="请输入题目ID"
+          clearable
+          @keyup.enter="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="是否解决" prop="status">
+        <el-select v-model="queryParams.status" placeholder="请选择是否解决" clearable style="width: 200px">
+          <el-option v-for="item in bool_values" :key="item.value" :label="item.label" :value="item.value" />
+        </el-select>
+      </el-form-item>
+      <!-- <el-form-item label="时间" prop="createTime">
+        <el-date-picker clearable
+          v-model="queryParams.createTime"
+          type="date"
+          value-format="YYYY-MM-DD"
+          placeholder="请选择时间">
+        </el-date-picker>
+      </el-form-item> -->
+      <el-form-item>
+        <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
+        <el-button icon="Refresh" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <!-- <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="Plus"
+          @click="handleAdd"
+          v-hasPermi="['dz:bCustomerQuestionError:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="Edit"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['dz:bCustomerQuestionError:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="Delete"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['dz:bCustomerQuestionError:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="Download"
+          @click="handleExport"
+          v-hasPermi="['dz:bCustomerQuestionError:export']"
+        >导出</el-button>
+      </el-col> -->
+      <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="bCustomerQuestionErrorList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="ID" align="center" prop="id" />
+      <el-table-column label="客户" align="center">
+        <template #default="scope">
+          <span v-if="scope.row.user">
+            {{ scope.row.user.nickName || '-' }} - {{ scope.row.user.userName || '-' }}
+          </span>
+          <span v-else>-</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="题目ID" align="center" prop="questionid" />
+      <el-table-column label="留言备注" align="center" prop="remark" />
+      <el-table-column label="时间" align="center" prop="createTime" width="180">
+        <template #default="scope">
+          <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="是否解决" align="center" prop="status">
+        <template #default="scope">
+          <dict-tag :options="bool_values" :value="scope.row.status" />
+        </template>
+      </el-table-column>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template #default="scope">
+          <el-button 
+            link 
+            type="primary" 
+            icon="Edit" 
+            @click="handleVerifyProcess(scope.row)" 
+            v-hasPermi="['dz:bCustomerQuestionError:edit']"
+            :disabled="scope.row.status === 1"
+          >确认解决</el-button>
+          <!-- <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['dz:bCustomerQuestionError:edit']">修改</el-button> -->
+          <!-- <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['dz:bCustomerQuestionError:remove']">删除</el-button> -->
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      v-model:page="queryParams.pageNum"
+      v-model:limit="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改题目纠错对话框 -->
+    <el-dialog :title="title" v-model="open" width="500px" append-to-body>
+      <el-form ref="bCustomerQuestionErrorRef" :model="form" :rules="rules" label-width="80px">
+        
+        <el-form-item label="题目ID" prop="questionid">
+          <el-input v-model="form.questionid" placeholder="请输入题目" disabled/>
+        </el-form-item>
+        <el-form-item label="是否处理" prop="status">
+          <el-select v-model="form.status" placeholder="请选择是否处理">
+            <el-option v-for="item in bool_values" :key="item.value" :label="item.label" :value="item.value" />
+          </el-select>
+        </el-form-item>
+        <el-form-item label="留言备注" prop="remark">
+          <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button type="primary" @click="submitForm">确 定</el-button>
+          <el-button @click="cancel">取 消</el-button>
+        </div>
+      </template>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup name="BCustomerQuestionError">
+import { listBCustomerQuestionError, getBCustomerQuestionError, delBCustomerQuestionError, addBCustomerQuestionError, updateBCustomerQuestionError, verifyProcess } from "@/api/dz/bCustomerQuestionError"
+import DictTag from '@/components/DictTag/index.vue'
+
+const { proxy } = getCurrentInstance()
+const { bool_values } = proxy.useDict("bool_values")
+
+const bCustomerQuestionErrorList = ref([])
+const open = ref(false)
+const loading = ref(true)
+const showSearch = ref(true)
+const ids = ref([])
+const single = ref(true)
+const multiple = ref(true)
+const total = ref(0)
+const title = ref("")
+
+const data = reactive({
+  form: {},
+  queryParams: {
+    pageNum: 1,
+    pageSize: 10,
+    customercode: null,
+    questionid: null,
+    createTime: null,
+    status: null
+  },
+  rules: {
+    remark: [
+      { required: true, message: "留言备注不能为空", trigger: "blur" }
+    ],
+  }
+})
+
+const { queryParams, form, rules } = toRefs(data)
+
+/** 查询题目纠错列表 */
+function getList() {
+  loading.value = true
+  listBCustomerQuestionError(queryParams.value).then(response => {
+    bCustomerQuestionErrorList.value = response.rows
+    total.value = response.total
+    loading.value = false
+  })
+}
+
+// 取消按钮
+function cancel() {
+  open.value = false
+  reset()
+}
+
+// 表单重置
+function reset() {
+  form.value = {
+    id: null,
+    customercode: null,
+    questionid: null,
+    remark: null,
+    createTime: null,
+    status: null
+  }
+  proxy.resetForm("bCustomerQuestionErrorRef")
+}
+
+/** 搜索按钮操作 */
+function handleQuery() {
+  queryParams.value.pageNum = 1
+  getList()
+}
+
+/** 重置按钮操作 */
+function resetQuery() {
+  proxy.resetForm("queryRef")
+  handleQuery()
+}
+
+// 多选框选中数据
+function handleSelectionChange(selection) {
+  ids.value = selection.map(item => item.id)
+  single.value = selection.length != 1
+  multiple.value = !selection.length
+}
+
+/** 新增按钮操作 */
+function handleAdd() {
+  reset()
+  open.value = true
+  title.value = "添加题目纠错"
+}
+
+/** 修改按钮操作 */
+function handleUpdate(row) {
+  reset()
+  const _id = row.id || ids.value
+  getBCustomerQuestionError(_id).then(response => {
+    console.log('编辑获取的数据:', response.data)
+    form.value = {
+      ...response.data,
+      // 确保字段名正确映射
+      questionid: response.data.questionid || response.data.questionId,
+      status: response.data.status
+    }
+    console.log('设置后的 form.value:', form.value)
+    open.value = true
+    title.value = "修改题目纠错"
+  })
+}
+
+/** 提交按钮 */
+function submitForm() {
+  proxy.$refs["bCustomerQuestionErrorRef"].validate(valid => {
+    if (valid) {
+      if (form.value.id != null) {
+        updateBCustomerQuestionError(form.value).then(response => {
+          proxy.$modal.msgSuccess("修改成功")
+          open.value = false
+          getList()
+        })
+      } else {
+        addBCustomerQuestionError(form.value).then(response => {
+          proxy.$modal.msgSuccess("新增成功")
+          open.value = false
+          getList()
+        })
+      }
+    }
+  })
+}
+
+/** 删除按钮操作 */
+function handleDelete(row) {
+  const _ids = row.id || ids.value
+  proxy.$modal.confirm('是否确认删除题目纠错编号为"' + _ids + '"的数据项?').then(function() {
+    return delBCustomerQuestionError(_ids)
+  }).then(() => {
+    getList()
+    proxy.$modal.msgSuccess("删除成功")
+  }).catch(() => {})
+}
+
+/** 导出按钮操作 */
+function handleExport() {
+  proxy.download('dz/bCustomerQuestionError/export', {
+    ...queryParams.value
+  }, `bCustomerQuestionError_${new Date().getTime()}.xlsx`)
+}
+
+/** 确认解决按钮操作 */
+function handleVerifyProcess(row) {
+  const _id = row.id
+  proxy.$modal.confirm('是否确认将该题目纠错标记为已解决?').then(() => {
+    return verifyProcess(_id)
+  }).then(() => {
+    proxy.$modal.msgSuccess("确认解决成功")
+    getList()
+  }).catch(() => {})
+}
+
+getList()
+</script>

+ 118 - 0
ie-admin/src/main/java/com/ruoyi/web/controller/dz/BCustomerQuestionErrorController.java

@@ -0,0 +1,118 @@
+package com.ruoyi.web.controller.dz;
+
+import java.util.List;
+import javax.servlet.http.HttpServletResponse;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.ruoyi.common.annotation.Log;
+import com.ruoyi.common.core.controller.BaseController;
+import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.back.domain.BCustomerQuestionError;
+import com.ruoyi.back.service.IBCustomerQuestionErrorService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 题目纠错Controller
+ *
+ * @author ruoyi
+ * @date 2025-11-22
+ */
+@RestController
+@RequestMapping("/dz/bCustomerQuestionError")
+public class BCustomerQuestionErrorController extends BaseController
+{
+    @Autowired
+    private IBCustomerQuestionErrorService bCustomerQuestionErrorService;
+
+    /**
+     * 查询题目纠错列表
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(BCustomerQuestionError bCustomerQuestionError)
+    {
+        startPage();
+        List<BCustomerQuestionError> list = bCustomerQuestionErrorService.selectBCustomerQuestionErrorList(bCustomerQuestionError);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出题目纠错列表
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:export')")
+    @Log(title = "题目纠错", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, BCustomerQuestionError bCustomerQuestionError)
+    {
+        List<BCustomerQuestionError> list = bCustomerQuestionErrorService.selectBCustomerQuestionErrorList(bCustomerQuestionError);
+        ExcelUtil<BCustomerQuestionError> util = new ExcelUtil<BCustomerQuestionError>(BCustomerQuestionError.class);
+        util.exportExcel(response, list, "题目纠错数据");
+    }
+
+    /**
+     * 获取题目纠错详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return success(bCustomerQuestionErrorService.selectBCustomerQuestionErrorById(id));
+    }
+
+    /**
+     * 新增题目纠错
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:add')")
+    @Log(title = "题目纠错", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody BCustomerQuestionError bCustomerQuestionError)
+    {
+        return toAjax(bCustomerQuestionErrorService.insertBCustomerQuestionError(bCustomerQuestionError));
+    }
+
+    /**
+     * 修改题目纠错
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:edit')")
+    @Log(title = "题目纠错", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody BCustomerQuestionError bCustomerQuestionError)
+    {
+        return toAjax(bCustomerQuestionErrorService.updateBCustomerQuestionError(bCustomerQuestionError));
+    }
+
+    /**
+     * 删除题目纠错
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:remove')")
+    @Log(title = "题目纠错", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(bCustomerQuestionErrorService.deleteBCustomerQuestionErrorByIds(ids));
+    }
+
+    /**
+     * 确认解决
+     */
+    @PreAuthorize("@ss.hasPermi('dz:bCustomerQuestionError:edit')")
+    @Log(title = "题目纠错", businessType = BusinessType.UPDATE)
+    @PostMapping("/verifyProcess/{id}")
+    public AjaxResult verifyProcess(@PathVariable("id") Long id)
+    {
+        BCustomerQuestionError bCustomerQuestionError = new BCustomerQuestionError();
+        bCustomerQuestionError.setId(id);
+        bCustomerQuestionError.setStatus(1);
+        return toAjax(bCustomerQuestionErrorService.updateBCustomerQuestionError(bCustomerQuestionError));
+    }
+}

+ 1 - 1
ie-system/src/main/resources/mapper/back/BCustomerQuestionErrorMapper.xml

@@ -32,7 +32,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <include refid="selectBCustomerQuestionErrorVo"/>
         where 1=1
             <if test="customercode != null  and customercode != ''"> and bcqe.customerCode = #{customercode}</if>
-            <if test="questionid != null  and questionid != ''"> and bcqe.questionId = #{questionid}</if>
+            <if test="questionid != null  and questionid != ''"> and bcqe.questionId like concat('%', #{questionid}, '%')</if>
             <if test="createTime != null "> and bcqe.createTime = #{createTime}</if>
             <if test="status != null "> and bcqe.status = #{status}</if>
         order by id desc