| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- <a-col :span="3">
- <a-form-item label="">
- <a-select
- mode="multiple"
- style="width: 180px"
- placeholder="商家名称"
- :maxTagCount="1"
- :maxTagTextLength="50"
- v-model="queryParam.hotelIds"
- >
- <a-select-option
- v-for="(item, index) in hotelList"
- :key="index"
- :value="item.id"
- >
- {{ item.name }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="3">
- <a-form-item label="">
- <a-select v-model="queryParam.commentType" style="width: 100%" placeholder="类型">
- <a-select-option value="1">酒店</a-select-option>
- <a-select-option value="2">商品</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <span
- style="float: left; overflow: hidden"
- class="table-page-search-submitButtons"
- >
- <a-button type="primary" @click="searchQuery" icon="search"
- >查询</a-button
- >
- <!-- <a-button
- type="primary"
- @click="searchReset"
- icon="reload"
- style="margin-left: 8px"
- >重置</a-button
- > -->
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 查询区域-END -->
- <!-- table区域-begin -->
- <div>
- <!-- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
- <a style="margin-left: 24px" @click="onClearSelected">清空</a>
- </div> -->
- <a-table
- ref="table"
- size="middle"
- :scroll="{x:true}"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
- class="j-table-force-nowrap"
- @change="handleTableChange">
- <template slot="htmlSlot" slot-scope="text">
- <div v-html="text"></div>
- </template>
- <template slot="imgSlot" slot-scope="text,record">
- <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
- <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
- </template>
- <template slot="fileSlot" slot-scope="text">
- <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
- <a-button
- v-else
- :ghost="true"
- type="primary"
- icon="download"
- size="small"
- @click="downloadFile(text)">
- 下载
- </a-button>
- </template>
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">回复</a>
- <a-divider type="vertical" />
- <a @click="handleDelete(record.id)">删除</a>
- </span>
- </a-table>
- </div>
- <ces-order-comment-modal ref="modalForm" @ok="modalFormOk"></ces-order-comment-modal>
- </a-card>
- </template>
- <script>
- import "@/assets/less/TableExpand.less";
- import { mixinDevice } from "@/utils/mixin";
- import { JeecgListMixin } from "@/mixins/JeecgListMixin";
- import CesOrderCommentModal from "./modules/CesOrderCommentModal";
- import { httpAction, postAction,getAction } from "@/api/manage";
- export default {
- name: "CesOrderCommentList",
- mixins: [JeecgListMixin, mixinDevice],
- components: {
- CesOrderCommentModal,
- },
- data() {
- return {
- description: "ces_order_comment管理页面",
- // 表头
- columns: [
- {
- title: "商家",
- align: "center",
- dataIndex: "hotelName",
- },
- {
- title: "评分",
- align: "center",
- dataIndex: "score",
- },
- {
- title: "评价类型",
- align: "center",
- dataIndex: "commentType",
- customRender: function (text) {
- return text == 1 ? "酒店" : "商品";
- },
- },
- {
- title: "评价内容",
- align: "center",
- dataIndex: "contentBody",
- },
- {
- title: "商家回复",
- align: "center",
- dataIndex: "sellerContent",
- },
- {
- title: "创建时间",
- align: "center",
- dataIndex: "createDate",
- // customRender: function (text) {
- // return !text ? "" : text.length > 10 ? text.substr(0, 10) : text;
- // },
- },
- {
- title: "操作",
- dataIndex: "action",
- align: "center",
- fixed: "right",
- width: 147,
- scopedSlots: { customRender: "action" },
- },
- ],
- url: {
- list: "/order/cesOrderComment/list",
- delete: "/order/cesOrderComment/delete",
- deleteBatch: "/order/cesOrderComment/deleteBatch",
- exportXlsUrl: "/order/cesOrderComment/exportXls",
- importExcelUrl: "order/cesOrderComment/importExcel",
- },
- dictOptions: {},
- superFieldList: [],
- hotelList: [],
- };
- },
- created() {
- getAction(
- "/business/busHotel/list",
- { pageNo: 1, pageSize: 100 }
- ).then((res) => {
- if (res.success) {
- this.hotelList = res.result.records;
- }
- });
- },
- computed: {
- importExcelUrl: function () {
- return `${window._CONFIG["domianURL"]}/${this.url.importExcelUrl}`;
- },
- },
- methods: {
- initDictConfig() {},
- getSuperFieldList() {
- let fieldList = [];
- fieldList.push({ type: "string", value: "tenantId", text: "关联租户" });
- fieldList.push({ type: "string", value: "hotelId", text: "关联酒店" });
- fieldList.push({ type: "int", value: "commentId", text: "父级评价ID" });
- fieldList.push({ type: "int", value: "score", text: "评价1-5星" });
- fieldList.push({ type: "int", value: "userId", text: "评价用户ID" });
- fieldList.push({
- type: "int",
- value: "commentType",
- text: "评价类型 1 酒店 2商品",
- });
- fieldList.push({
- type: "string",
- value: "orderId",
- text: "评价商品/订单ID",
- });
- fieldList.push({
- type: "string",
- value: "images",
- text: "评价图片逗号分隔",
- });
- fieldList.push({
- type: "string",
- value: "contentBody",
- text: "评价内容",
- });
- fieldList.push({
- type: "string",
- value: "sellerContent",
- text: "商家回复",
- });
- fieldList.push({ type: "date", value: "createDate", text: "创建时间" });
- this.superFieldList = fieldList;
- },
- },
- };
- </script>
- <style scoped>
- @import "~@assets/less/common.less";
- </style>
|