| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- <template>
- <div class="mod-prod-prodComm">
- <div class="search-bar">
- <el-form :inline="true" class="search-form" ref="searchForm" :model="searchForm" label-width="auto" size="small">
- <div class="input-row">
- <el-form-item prop="prodName" :label="$t('product.prodName') + ':'">
- <el-input type="text" v-model="searchForm.prodName" :placeholder="$t('product.prodName')"></el-input>
- </el-form-item>
- <el-form-item prop="nickName" :label="$t('users.name') + ':'">
- <el-input type="text" v-model="searchForm.nickName" :placeholder="$t('users.name')"></el-input>
- </el-form-item>
- <el-form-item prop="isDeleted" label="是否删除">
- <el-select key="isDeleted" v-model="searchForm.isDeleted" :clearable="true">
- <el-option label="正常" value="0"></el-option>
- <el-option label="已删除" value="1"></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item prop="status" :label="$t('product.reviewStatus') + ':'">-->
- <!-- <el-select v-model="searchForm.status" :placeholder="$t('product.reviewStatus')">-->
- <!-- <el-option :label="$t('productComm.pass')" :value="1"></el-option>-->
- <!-- <el-option :label="$t('productComm.noPass')" :value="-1"></el-option>-->
- <!-- </el-select>-->
- <!-- </el-form-item>-->
- <el-form-item prop="status" label="审核状态">
- <el-select key="status" v-model="searchForm.status" :clearable="true">
- <el-option label="待审核" value="0"></el-option>
- <el-option label="通过" value="1"></el-option>
- <el-option label="不通过" value="-1"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('productComm.recTime') + ':'">
- <el-date-picker
- v-model="recDateRange"
- type="datetimerange"
- :range-separator="$t('time.tip')"
- value-format="yyyy-MM-dd HH:mm:ss"
- :start-placeholder="$t('time.start')"
- :end-placeholder="$t('time.end')"
- ></el-date-picker>
- </el-form-item>
- <el-form-item :label="$t('productComm.replyTime') + ':'">
- <el-date-picker
- v-model="replyDateRange"
- type="datetimerange"
- :range-separator="$t('time.tip')"
- value-format="yyyy-MM-dd HH:mm:ss"
- :start-placeholder="$t('time.start')"
- :end-placeholder="$t('time.end')"
- ></el-date-picker>
- </el-form-item>
- <el-form-item>
- <div class="default-btn primary-btn" @click="searchChange(true)">{{$t('crud.searchBtn')}}</div>
- <div class="default-btn" @click="resetSearchForm('searchForm')">{{$t('shop.resetMap')}}</div>
- </el-form-item>
- </div>
- </el-form>
- </div>
- <div class="main-container">
- <div class="table-con prod-conmm-table">
- <el-table
- ref="prodCommTable"
- :data="dataList"
- header-cell-class-name="table-header"
- row-class-name="table-row"
- style="width: 100%">
- <el-table-column
- align="left"
- prop="prodName"
- width="240"
- :label="$t('product.prodName')">
- <template slot-scope="scope">
- <div class="table-cell-con">
- <div v-if="scope.row.pic" class="table-cell-image">
- <img :src="scope.row.pic" alt="">
- </div>
- <span class="table-cell-text">{{ scope.row.prodName }}</span>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="status"
- label="审核状态">
- <template slot-scope="scope">
- <el-tag v-if="scope.row.status === 0" type="warning">待审核</el-tag>
- <el-tag v-if="scope.row.status === 1" type="success">通过</el-tag>
- <el-tag v-if="scope.row.status === -1" type="danger">不通过</el-tag>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="isDeleted"
- label="是否删除">
- <template slot-scope="scope">
- <el-tag v-if="scope.row.isDeleted === 1" type="danger">已删除</el-tag>
- <el-tag v-if="scope.row.isDeleted === 0" type="success">正常</el-tag>
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- prop="nickName"
- :label="$t('users.name')">
- <template slot-scope="scope">
- <span class="table-cell-text line-clamp-one">{{ scope.row.nickName }}</span>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="score"
- :label="$t('productComm.score')">
- </el-table-column>
- <el-table-column
- align="center"
- prop="isAnonymous"
- :label="$t('productComm.isAnonymous')">
- <template slot-scope="scope">
- <div class="tag-text">{{[$t('publics.no'), $t('publics.yes')][scope.row.isAnonymous]}}</div>
- </template>
- </el-table-column>
- <!-- <el-table-column-->
- <!-- align="left"-->
- <!-- prop="status"-->
- <!-- :label="$t('product.reviewStatus')"-->
- <!-- width="130">-->
- <!-- <template slot-scope="scope">-->
- <!-- <div class="tag-text" v-if="scope.row.status === -1">{{ $t("productComm.noPass") }}</div>-->
- <!-- <div class="tag-text" v-if="scope.row.status === 0">{{ $t("productComm.waitPass") }}</div>-->
- <!-- <div class="tag-text" v-if="scope.row.status === 1">{{ $t("productComm.pass") }}</div>-->
- <!-- </template>-->
- <!-- </el-table-column>-->
- <el-table-column
- align="center"
- prop="recTime"
- :label="$t('productComm.recTime')">
- <template slot-scope="scope">
- <div>{{scope.row.recTime}}</div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="content"
- label="用户评价">
- <template slot-scope="scope" :show-overflow-tooltip="true">
- <div>{{scope.row.content}}</div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="replyTime"
- :label="$t('productComm.replyTime')">
- <template slot-scope="scope">
- <div>{{scope.row.replyTime}}</div>
- </template>
- </el-table-column>
- <el-table-column
- fixed="right"
- align="center"
- :label="$t('publics.operating')"
- width="250"
- >
- <template slot-scope="scope">
- <div class="text-btn-con">
- <div
- class="default-btn text-btn"
- @click="openOrderInfo(scope.row.prodCommId)"
- >订单
- </div>
- <div
- class="default-btn text-btn"
- @click="addOrUpdateHandle(scope.row.prodCommId, true)"
- >{{$t('groups.edit')}}
- </div>
- <div
- class="default-btn text-btn"
- @click="addOrUpdateHandle(scope.row.prodCommId, false)"
- >{{$t('查看')}}
- </div>
- <div
- class="default-btn text-btn"
- @click="deleteHandle(scope.row.prodCommId)"
- >{{$t("text.delBtn")}}
- </div>
- <div
- class="default-btn text-btn"
- @click="handleAudit(scope.row.prodCommId)"
- >审核
- </div>
- </div>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <el-pagination
- v-if="dataList.length"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="page.currentPage"
- :page-sizes="[10, 20, 50, 100]"
- :page-size="page.pageSize"
- layout="total, sizes, prev, pager, next, jumper"
- :total="page.total">
- </el-pagination>
- </div>
- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="refreshChange"></add-or-update>
- <order-info ref="orderInfo"></order-info>
- </div>
- </template>
- <script>
- import AddOrUpdate from './prodComm-add-or-update'
- import OrderInfo from "../order/orderInfo";
- export default {
- data () {
- return {
- dataList: [],
- page: {
- total: 0, // 总页数
- currentPage: 1, // 当前页数
- pageSize: 20 // 每页显示多少条
- },
- searchForm: {
- prodName: '',
- nickName: '',
- status: ''
- },
- recDateRange: [],
- replyDateRange: [],
- dataListLoading: false,
- addOrUpdateVisible: false
- }
- },
- components: {
- AddOrUpdate,
- OrderInfo
- },
- created () {
- this.getDataList()
- },
- mounted () {
- },
- methods: {
- handleAudit(prodCommId){
- this.$confirm("请确认审核状态", this.$i18n.t('text.tips'), {
- distinguishCancelAndClose:true,
- confirmButtonText: "通过",
- cancelButtonText: "不通过",
- type: 'warning'
- }).then(() => {
- this.$http({
- url: this.$http.adornUrl('/prod/prodComm/audit'),
- method: 'post',
- data: this.$http.adornData({prodCommId:prodCommId, status: 1})
- }).then(({ data }) => {
- this.getDataList(this.page);
- this.$message({
- message: "审核操作成功",
- type: 'success',
- })
- })
- }).catch(action => {
- if(action === 'cancel'){
- this.$http({
- url: this.$http.adornUrl('/prod/prodComm/audit'),
- method: 'post',
- data: this.$http.adornData({prodCommId:prodCommId, status:-1})
- }).then(({ data }) => {
- this.getDataList(this.page);
- this.$message({
- message: "审核操作成功",
- type: 'success',
- })
- })
- }
- })
- },
- getDataList (page) {
- this.dataListLoading = true
- this.$http({
- url: this.$http.adornUrl('/prod/prodComm/page'),
- method: 'get',
- params: this.$http.adornParams(Object.assign({
- current: page == null ? this.page.currentPage : page.currentPage,
- size: page == null ? this.page.pageSize : page.pageSize,
- 'recStartTime': this.recDateRange === null ? null : this.recDateRange[0],
- 'recEndTime': this.recDateRange === null ? null : this.recDateRange[1],
- 'replyTimeStart': this.replyDateRange === null ? null : this.replyDateRange[0],
- 'replyTimeEnd': this.replyDateRange === null ? null : this.replyDateRange[1]
- }, this.searchForm))
- }).then(({ data }) => {
- this.dataList = data.records
- this.page.total = data.total
- this.page.pageSize = data.size
- this.page.currentPage = data.current
- this.dataListLoading = false
- })
- },
- openOrderInfo(prodCommId){
- this.$http({
- url: this.$http.adornUrl(`/prod/prodComm/info/${prodCommId}`),
- method: 'GET',
- params: this.$http.adornParams()
- }).then(({data}) => {
- if(data){
- this.$refs.orderInfo.init({
- orderNumber: data.orderNumber
- })
- }
- })
- },
- // 新增 / 修改
- addOrUpdateHandle (id, isEdit) {
- this.addOrUpdateVisible = true
- this.$nextTick(() => {
- this.$refs.addOrUpdate.init(id, isEdit)
- })
- },
- deleteHandle: function (prodCommId) {
- this.$confirm(this.$i18n.t('admin.isDeleOper'), this.$i18n.t('text.tips'), {
- confirmButtonText: this.$i18n.t('crud.filter.submitBtn'),
- cancelButtonText: this.$i18n.t('crud.filter.cancelBtn'),
- type: 'warning'
- }).then(() => {
- this.$http({
- url: this.$http.adornUrl('/prod/prodComm/' + prodCommId),
- method: 'delete',
- data: this.$http.adornData({})
- }).then(({ data }) => {
- this.$message({
- message: this.$i18n.t('publics.operation'),
- type: 'success',
- duration: 1500,
- onClose: () => {
- this.refreshChange()
- }
- })
- })
- }).catch(() => { })
- },
- // 刷新回调用
- refreshChange () {
- this.getDataList(this.page)
- },
- searchChange () {
- this.page.currentPage = 1
- this.getDataList(this.page)
- },
- /**
- * 重置表单
- * @param {String} formName 表单名称
- */
- resetSearchForm (formName) {
- this.$refs[formName].resetFields()
- this.replyDateRange = []
- this.recDateRange = []
- },
- handleSizeChange (val) {
- this.page.pageSize = val
- this.getDataList()
- },
- handleCurrentChange (val) {
- this.page.currentPage = val
- this.getDataList()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|