mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-22 11:08:10 +00:00
426 lines
17 KiB
Vue
426 lines
17 KiB
Vue
<template>
|
||
<div class="main-container">
|
||
<el-card class="box-card !border-none" shadow="never">
|
||
|
||
<div class="flex justify-between items-center">
|
||
<span class="text-page-title">{{ pageName }}</span>
|
||
<el-button type="primary" @click="addEvent">{{ t('addEvaluate') }}</el-button>
|
||
</div>
|
||
|
||
<el-card class="box-card !border-none my-[10px] table-search-wrap" shadow="never">
|
||
<el-form :inline="true" :model="evaluateTable.searchParam" ref="searchFormRef">
|
||
<el-form-item :label="t('goodsName')" prop="goods_name">
|
||
<el-input v-model.trim="evaluateTable.searchParam.goods_name" :placeholder="t('goodsNamePlaceholder')" class="input-width" maxlength="60" />
|
||
</el-form-item>
|
||
<el-form-item :label="t('status')" prop="status">
|
||
<el-select v-model="evaluateTable.searchParam.status" :placeholder="t('statusPlaceholder')" clearable>
|
||
<el-option v-for="(item, index) in statusList" :key="index" :label="item" :value="index" />
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button type="primary" @click="loadEvaluateList()">{{ t('search') }}</el-button>
|
||
<el-button @click="resetForm(searchFormRef)">{{ t('reset') }}</el-button>
|
||
</el-form-item>
|
||
</el-form>
|
||
</el-card>
|
||
|
||
<div class="mt-[10px]">
|
||
<div class="mb-[10px] flex items-center">
|
||
<el-checkbox v-model="toggleCheckbox" size="large" class="px-[14px]" @change="toggleChange" :indeterminate="isIndeterminate" />
|
||
<el-button @click="batchDeleteEvent" size="small" >{{t("batchDelete")}}</el-button>
|
||
<el-button @click="batchAdoptEvent" size="small" >{{t("batchAdopt")}}</el-button>
|
||
<el-button @click="batchRefuseEvent" size="small" >{{t("batchRefuse")}}</el-button>
|
||
</div>
|
||
<el-table :data="evaluateTable.data" size="large" v-loading="evaluateTable.loading" ref="evaluateTableRef" @selection-change="handleSelectionChange">
|
||
<template #empty>
|
||
<span>{{ !evaluateTable.loading ? t('emptyData') : '' }}</span>
|
||
</template>
|
||
<el-table-column type="selection" width="55" />
|
||
<el-table-column :label="t('goodsInfo')" min-width="120" align="left">
|
||
<template #default="{ row }">
|
||
<div class="flex cursor-pointer">
|
||
<div class="flex items-center min-w-[50px] mr-[10px]">
|
||
<el-image v-if="row.goods.goods_cover_thumb_small" class="w-[50px] h-[50px]" :src="img(row.goods.goods_cover_thumb_small)" fit="contain">
|
||
<template #error>
|
||
<div class="image-slot">
|
||
<img class="w-[50px] h-[50px]" src="@/addon/shop/assets/goods_default.png" />
|
||
</div>
|
||
</template>
|
||
</el-image>
|
||
|
||
<img v-else class="w-[50px] h-[50px]" src="@/addon/shop/assets/goods_default.png" fit="contain" />
|
||
</div>
|
||
<div class="flex">
|
||
<p class="multi-hidden">{{ row.goods.goods_name }}</p>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="t('content')" min-width="240" align="left">
|
||
<template #default="{ row }">
|
||
<div>
|
||
<p class="text-[14px]">{{ row.content }}</p>
|
||
<div class="flex flex-wrap mt-[10px]" v-if="row.images?.length > 0">
|
||
<div v-for="(imageItem, imageIndex) in row.images" :key="imageIndex" class="mr-4">
|
||
<el-image v-if="imageItem" class="w-[40px] h-[40px]" :src="img(imageItem)" fit="contain" :preview-src-list="[img(imageItem)]" :zoom-rate="1.2" :max-scale="7" :min-scale="0.2">
|
||
<template #error>
|
||
<div class="image-slot">
|
||
<img class="w-[40px] h-[40px]" src="@/addon/shop/assets/goods_default.png" />
|
||
</div>
|
||
</template>
|
||
</el-image>
|
||
<img v-else class="w-[40px] h-[40px]" src="@/addon/shop/assets/goods_default.png" />
|
||
</div>
|
||
</div>
|
||
<p class="mt-[15px] text-[14px]" v-if="row.explain_first"><span class="text-[#ff7f5b]">{{ t('explainFirst') }}:</span>{{ row.explain_first }}</p>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="t('scores')" min-width="110" align="left">
|
||
<template #default="{ row }">
|
||
<el-rate v-model="row.scores" disabled />
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="audit_name" :label="t('auditName')" min-width="80" />
|
||
<el-table-column prop="create_time" :label="t('createTime')" min-width="120" />
|
||
<el-table-column :label="t('operation')" fixed="right" min-width="100" align="right">
|
||
<template #default="{ row }">
|
||
<div>
|
||
<el-button type="primary" link @click="adoptEvent(row.evaluate_id)" v-if="row.is_audit == 1">{{ t('adopt') }}</el-button>
|
||
<el-button type="primary" link @click="refuseEvent(row.evaluate_id)" v-if="row.is_audit == 1">{{ t('refuse') }}</el-button>
|
||
<el-button type="primary" link @click="replyEvent(row.evaluate_id)" v-if="row.explain_first == ''">{{ t('reply') }}</el-button>
|
||
<el-button type="primary" link @click="deleteEvent(row.evaluate_id)">{{ t('delete') }}</el-button>
|
||
<el-button type="primary" link @click="toppingEvent(row.evaluate_id, 'topping')" v-if="row.is_audit == 2 && row.topping == 0">{{ t('topping') }}</el-button>
|
||
<el-button type="primary" link @click="toppingEvent(row.evaluate_id, 'cancel_topping')" v-if="row.topping == 1">{{ t('cancelTopping') }}</el-button>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
|
||
</el-table>
|
||
<div class="mt-[16px] flex justify-end">
|
||
<el-pagination v-model:current-page="evaluateTable.page" v-model:page-size="evaluateTable.limit"
|
||
layout="total, sizes, prev, pager, next, jumper" :total="evaluateTable.total"
|
||
@size-change="loadEvaluateList()" @current-change="loadEvaluateList" />
|
||
</div>
|
||
</div>
|
||
</el-card>
|
||
|
||
<evaluate-add ref="editEvaluateDialog" @complete="loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)" />
|
||
|
||
<el-dialog v-model="replyShowDialog" :title="t('explainFirst')" width="460px" class="diy-dialog-wrap" :destroy-on-close="true">
|
||
<el-form :model="formData" label-width="90px" ref="formRef" :rules="formRules" class="page-form">
|
||
<el-form-item :label="t('explainFirst')" prop="explain_first">
|
||
<el-input v-model.trim="formData.explain_first" type="textarea" rows="4" clearable
|
||
:placeholder="t('explainFirstPlaceholder')" class="input-width" maxlength="200" show-word-limit />
|
||
</el-form-item>
|
||
</el-form>
|
||
<template #footer>
|
||
<span class="dialog-footer">
|
||
<el-button @click="replyShowDialog = false">{{ t('cancel') }}</el-button>
|
||
<el-button type="primary" @click="confirm(formRef)">{{ t('confirm') }}</el-button>
|
||
</span>
|
||
</template>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { reactive, ref, computed } from 'vue'
|
||
import { t } from '@/lang'
|
||
import { getEvaluateList, deleteEvaluate, adoptEvaluate, refuseEvaluate, replyEvaluate, toppingEvaluate, cancelToppingEvaluate ,getEvaluateStatus,batchDelEvaluate,batchAdoptEvaluate,batchRefuseEvaluate} from '@/addon/shop/api/goods'
|
||
import EvaluateAdd from '@/addon/shop/views/goods/components/evaluate-add.vue'
|
||
import { img, setTablePageStorage,getTablePageStorage} from '@/utils/common'
|
||
import { ElMessageBox, FormInstance } from 'element-plus'
|
||
import { useRoute } from 'vue-router'
|
||
|
||
const route = useRoute()
|
||
const pageName = route.meta.title
|
||
|
||
const evaluateTable = reactive({
|
||
page: 1,
|
||
limit: 10,
|
||
total: 0,
|
||
loading: true,
|
||
data: [],
|
||
searchParam: {
|
||
goods_name: '',
|
||
status: ''
|
||
}
|
||
})
|
||
|
||
const searchFormRef = ref<FormInstance>()
|
||
|
||
/**
|
||
* 获取商品评价列表
|
||
*/
|
||
const loadEvaluateList = (page: number = 1) => {
|
||
evaluateTable.loading = true
|
||
evaluateTable.page = page
|
||
|
||
getEvaluateList({
|
||
page: evaluateTable.page,
|
||
limit: evaluateTable.limit,
|
||
...evaluateTable.searchParam
|
||
}).then(res => {
|
||
evaluateTable.loading = false
|
||
evaluateTable.data = res.data.data
|
||
evaluateTable.total = res.data.total
|
||
evaluateTable.data.map((item: any) => {
|
||
item.previewList = item.images.map((el: any) => {
|
||
return img(el)
|
||
})
|
||
return item
|
||
})
|
||
setTablePageStorage(evaluateTable.page, evaluateTable.limit, evaluateTable.searchParam)
|
||
}).catch(() => {
|
||
evaluateTable.loading = false
|
||
})
|
||
}
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
|
||
const statusList = ref([])
|
||
const getEvaluateStatusFn = () => {
|
||
getEvaluateStatus().then(res => {
|
||
statusList.value = res.data
|
||
})
|
||
}
|
||
getEvaluateStatusFn()
|
||
|
||
const editEvaluateDialog: Record<string, any> | null = ref(null)
|
||
/**
|
||
* 添加商品评价
|
||
*/
|
||
const addEvent = () => {
|
||
editEvaluateDialog.value.setFormData()
|
||
editEvaluateDialog.value.showDialog = true
|
||
}
|
||
|
||
|
||
// 批量复选框
|
||
const toggleCheckbox = ref()
|
||
|
||
// 复选框中间状态
|
||
const isIndeterminate = ref(false)
|
||
|
||
// 监听批量复选框事件
|
||
const toggleChange = (value: any) => {
|
||
isIndeterminate.value = false
|
||
evaluateTableRef.value.toggleAllSelection()
|
||
}
|
||
|
||
const evaluateTableRef = ref()
|
||
|
||
// 选中数据
|
||
const multipleSelection: any = ref([])
|
||
|
||
// 监听表格单行选中
|
||
const handleSelectionChange = (val: []) => {
|
||
multipleSelection.value = val
|
||
|
||
toggleCheckbox.value = false
|
||
if (multipleSelection.value.length > 0 && multipleSelection.value.length < evaluateTable.data.length) {
|
||
isIndeterminate.value = true
|
||
} else {
|
||
isIndeterminate.value = false
|
||
}
|
||
|
||
if (multipleSelection.value.length == evaluateTable.data.length && evaluateTable.data.length && multipleSelection.value.length) {
|
||
toggleCheckbox.value = true
|
||
}
|
||
}
|
||
|
||
// 批量删除
|
||
const batchDeleteEvent = () => {
|
||
if (multipleSelection.value.length == 0) {
|
||
ElMessage({
|
||
type: 'warning',
|
||
message: `${t('batchEmptySelectedCommentsTips')}`
|
||
})
|
||
return
|
||
}
|
||
|
||
ElMessageBox.confirm(t('batchDeleteTips'), t('warning'), {
|
||
confirmButtonText: t('confirm'),
|
||
cancelButtonText: t('cancel'),
|
||
type: 'warning'
|
||
}).then(() => {
|
||
const evaluate_ids: any = []
|
||
multipleSelection.value.forEach((item: any) => {
|
||
evaluate_ids .push(item.evaluate_id)
|
||
})
|
||
|
||
batchDelEvaluate({
|
||
evaluate_ids: evaluate_ids
|
||
}).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
}).catch(() => {
|
||
})
|
||
})
|
||
}
|
||
|
||
// 批量审核通过
|
||
const batchAdoptEvent = (status: number) => {
|
||
if (multipleSelection.value.length == 0) {
|
||
ElMessage({
|
||
type: 'warning',
|
||
message: t('batchEmptySelectedCommentsTips')
|
||
})
|
||
return
|
||
}
|
||
|
||
ElMessageBox.confirm(t('batchAdoptTips'), t('warning'), {
|
||
confirmButtonText: t('confirm'),
|
||
cancelButtonText: t('cancel'),
|
||
type: 'warning'
|
||
}).then(() => {
|
||
const evaluate_ids: any = []
|
||
multipleSelection.value.forEach((item: any) => {
|
||
evaluate_ids .push(item.evaluate_id)
|
||
})
|
||
|
||
batchAdoptEvaluate({
|
||
evaluate_ids: evaluate_ids
|
||
}).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
}).catch(() => {
|
||
})
|
||
})
|
||
}
|
||
|
||
|
||
// 批量审核拒绝
|
||
const batchRefuseEvent = (status: number) => {
|
||
if (multipleSelection.value.length == 0) {
|
||
ElMessage({
|
||
type: 'warning',
|
||
message: t('batchEmptySelectedCommentsTips')
|
||
})
|
||
return
|
||
}
|
||
|
||
ElMessageBox.confirm(t('batchRefuseTips'), t('warning'), {
|
||
confirmButtonText: t('confirm'),
|
||
cancelButtonText: t('cancel'),
|
||
type: 'warning'
|
||
}).then(() => {
|
||
const evaluate_ids: any = []
|
||
multipleSelection.value.forEach((item: any) => {
|
||
evaluate_ids .push(item.evaluate_id)
|
||
})
|
||
|
||
batchRefuseEvaluate({
|
||
evaluate_ids: evaluate_ids
|
||
}).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
}).catch(() => {
|
||
})
|
||
})
|
||
}
|
||
|
||
|
||
/**
|
||
* 删除商品评价
|
||
*/
|
||
const deleteEvent = (id: number) => {
|
||
ElMessageBox.confirm(t('evaluateDeleteTips'), t('warning'),
|
||
{
|
||
confirmButtonText: t('confirm'),
|
||
cancelButtonText: t('cancel'),
|
||
type: 'warning'
|
||
}
|
||
).then(() => {
|
||
deleteEvaluate(id).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
}).catch(() => {
|
||
})
|
||
})
|
||
}
|
||
|
||
// 审核通过
|
||
const adoptEvent = (id: number) => {
|
||
ElMessageBox.confirm(t('auditAdoptTips'), t('warning'),
|
||
{
|
||
confirmButtonText: t('confirm'),
|
||
cancelButtonText: t('cancel'),
|
||
type: 'warning'
|
||
}
|
||
).then(() => {
|
||
adoptEvaluate(id).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
})
|
||
})
|
||
}
|
||
|
||
// 审核拒绝
|
||
const refuseEvent = (id: number) => {
|
||
refuseEvaluate(id).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
})
|
||
}
|
||
|
||
// 置顶、取消置顶
|
||
const toppingEvent = (id: number, event:string) => {
|
||
if (event == 'topping') {
|
||
toppingEvaluate(id).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
})
|
||
} else {
|
||
cancelToppingEvaluate(id).then(() => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
})
|
||
}
|
||
}
|
||
|
||
// 评价回复
|
||
const replyShowDialog = ref(false)
|
||
const initialFormData = {
|
||
evaluate_id: 0,
|
||
explain_first: ''
|
||
}
|
||
const formData: Record<string, any> = reactive({ ...initialFormData })
|
||
const formRef = ref<FormInstance>()
|
||
const replyEvent = (id: number) => {
|
||
formData.evaluate_id = id
|
||
formData.explain_first = ''
|
||
replyShowDialog.value = true
|
||
}
|
||
const formRules = computed(() => {
|
||
return {
|
||
explain_first: [
|
||
{ required: true, message: t('explainFirstPlaceholder'), trigger: 'blur' }
|
||
]
|
||
}
|
||
})
|
||
const confirm = async (formEl: FormInstance | undefined) => {
|
||
if (!formEl) return
|
||
await formEl.validate(async (valid) => {
|
||
if (valid) {
|
||
const data = formData
|
||
replyEvaluate(data).then(res => {
|
||
loadEvaluateList(getTablePageStorage(evaluateTable.searchParam).page)
|
||
replyShowDialog.value = false
|
||
}).catch(() => {
|
||
replyShowDialog.value = false
|
||
})
|
||
}
|
||
})
|
||
}
|
||
|
||
const resetForm = (formEl: FormInstance | undefined) => {
|
||
if (!formEl) return
|
||
formEl.resetFields()
|
||
loadEvaluateList()
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
/* 多行超出隐藏 */
|
||
.multi-hidden {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}</style>
|