|
|
@@ -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>
|