|
@@ -0,0 +1,246 @@
|
|
|
|
+<template>
|
|
|
|
+ <a-card size="small" :bordered="false" class="jg-page-wrap promotionInfoList-wrap">
|
|
|
|
+ <a-spin :spinning="spinning" tip="Loading...">
|
|
|
|
+ <!-- 搜索条件 -->
|
|
|
|
+ <div ref="tableSearch" class="table-page-search-wrapper">
|
|
|
|
+ <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
|
+ <a-row :gutter="15">
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="发布时间">
|
|
|
|
+ <rangeDate ref="rangeDate" :value="time" @change="dateChange" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="促销名称">
|
|
|
|
+ <a-input id="promotionInfoList-name" v-model.trim="queryParam.name" allowClear placeholder="请输入促销名称"/>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
|
+ <a-form-item label="显示状态">
|
|
|
|
+ <a-select
|
|
|
|
+ v-model="queryParam.showFlag"
|
|
|
|
+ placeholder="请选择显示状态"
|
|
|
|
+ allowClear
|
|
|
|
+ >
|
|
|
|
+ <a-select-option :value="1">已显示</a-select-option>
|
|
|
|
+ <a-select-option :value="0">未显示</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
|
+ <a-form-item label="促销状态">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.state"
|
|
|
|
+ ref="sourceType"
|
|
|
|
+ id="promotionInfoList-sourceType"
|
|
|
|
+ code="PROMO_STATE"
|
|
|
|
+ placeholder="请选择促销状态"
|
|
|
|
+ allowClear></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
|
+ <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="promotionInfoList-refresh">查询</a-button>
|
|
|
|
+ <a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="promotionInfoList-reset">重置</a-button>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ </a-form>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 列表 -->
|
|
|
|
+ <s-table
|
|
|
|
+ class="sTable fixPagination"
|
|
|
|
+ ref="table"
|
|
|
|
+ :style="{ height: tableHeight+84.5+'px' }"
|
|
|
|
+ size="small"
|
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :data="loadData"
|
|
|
|
+ :scroll="{ y: tableHeight }"
|
|
|
|
+ :defaultLoadData="false"
|
|
|
|
+ bordered>
|
|
|
|
+ <!-- 促销时间 -->
|
|
|
|
+ <template slot="promotionTime" slot-scope="text, record">
|
|
|
|
+ <span>{{ record.activeDateStart }}至{{ record.activeDateEnd }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 促销描述 -->
|
|
|
|
+ <template slot="desc" slot-scope="text, record">
|
|
|
|
+ <a-tooltip placement="rightBottom" v-if="record.description&&record.description.length>60">
|
|
|
|
+ <template slot="title">
|
|
|
|
+ <span>{{ record.description }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ <div class="desc font1" @click="handleDescModal(record)">{{ record.description }}</div>
|
|
|
|
+ </a-tooltip>
|
|
|
|
+ <div v-else class="desc font1" @click="handleDescModal(record)">{{ record.description }}</div>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 状态 -->
|
|
|
|
+ <template slot="showStatus" slot-scope="text, record">
|
|
|
|
+ {{ record.showFlag == '1'?'已显示':'未显示' }}
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 促销展示 -->
|
|
|
|
+ <template slot="salesShow" slot-scope="text, record">
|
|
|
|
+ <div @click="handleSaleShow(record)" v-if="record.contentType!='LINK'&&record.images && record.images.length>0">
|
|
|
|
+ <img :src="record.images[0]" alt="图片走丢啦" width="60" />
|
|
|
|
+ </div>
|
|
|
|
+ <div v-else-if="record.contentType=='LINK'&&record.images && record.images.length>0">
|
|
|
|
+ <img :src="record.images[0]" alt="图片走丢啦" width="60" />
|
|
|
|
+ </div>
|
|
|
|
+ <span v-else>--</span>
|
|
|
|
+ </template>
|
|
|
|
+ </s-table>
|
|
|
|
+ </a-spin>
|
|
|
|
+ <promotion-desc-modal :con="descInfo" :openModal="openDescModal" @close="openDescModal = false"/>
|
|
|
|
+ <promotion-show-modal ref="promotionShow" :openModal="openShowModal" @close="openShowModal = false"/>
|
|
|
|
+ </a-card>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { commonMixin } from '@/utils/mixin'
|
|
|
|
+import { promoTerminalList } from '@/api/promoTerminal'
|
|
|
|
+import { STable, VSelect } from '@/components'
|
|
|
|
+import rangeDate from '@/views/common/rangeDate.vue'
|
|
|
|
+import promotionDescModal from './promotionDescModal'
|
|
|
|
+import promotionShowModal from './promotionShowModal'
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'UrgentOffsetList',
|
|
|
|
+ components: { STable, VSelect, rangeDate, promotionDescModal, promotionShowModal },
|
|
|
|
+ mixins: [commonMixin],
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ spinning: false,
|
|
|
|
+ tableHeight: 0,
|
|
|
|
+ openDescModal: false, // 促销描述弹窗
|
|
|
|
+ openShowModal: false, // 促销展示弹窗
|
|
|
|
+ time: [],
|
|
|
|
+ queryParam: { // 查询条件
|
|
|
|
+ beginDate: undefined,
|
|
|
|
+ endDate: undefined,
|
|
|
|
+ name: '', // 促销名称
|
|
|
|
+ showFlag: undefined, // 显示状态
|
|
|
|
+ state: undefined// 促销状态
|
|
|
|
+ },
|
|
|
|
+ descInfo: '', // 促销描述
|
|
|
|
+ disabled: false, // 查询、重置按钮是否可操作
|
|
|
|
+ columns: [
|
|
|
|
+ { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
|
|
+ { title: '发布时间', dataIndex: 'createDate', width: '14%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '促销名称', dataIndex: 'name', width: '24%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
|
+ { title: '促销时间', scopedSlots: { customRender: 'promotionTime' }, width: '20%', align: 'center' },
|
|
|
|
+ { title: '促销描述', scopedSlots: { customRender: 'desc' }, width: '20%', align: 'center' },
|
|
|
|
+ { title: '促销展示', scopedSlots: { customRender: 'salesShow' }, width: '10%', align: 'center' },
|
|
|
|
+ { title: '显示状态', scopedSlots: { customRender: 'showStatus' }, width: '10%', align: 'center' },
|
|
|
|
+ { title: '状态', dataIndex: 'stateDictValue', width: '10%', align: 'center', customRender: function (text) { return text || '--' } }
|
|
|
|
+ ],
|
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
|
+ loadData: parameter => {
|
|
|
|
+ this.disabled = true
|
|
|
|
+ this.spinning = true
|
|
|
|
+ return promoTerminalList(Object.assign(parameter, this.queryParam)).then(res => {
|
|
|
|
+ let data
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ data = res.data
|
|
|
|
+ const no = (data.pageNo - 1) * data.pageSize
|
|
|
|
+ for (var i = 0; i < data.list.length; i++) {
|
|
|
|
+ data.list[i].no = no + i + 1
|
|
|
|
+ data.list[i].images = data.list[i].images ? data.list[i].images.split(',') : []
|
|
|
|
+ }
|
|
|
|
+ this.disabled = false
|
|
|
|
+ }
|
|
|
|
+ this.spinning = false
|
|
|
|
+ return data
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // 时间 change
|
|
|
|
+ dateChange (date) {
|
|
|
|
+ this.queryParam.beginDate = date[0]
|
|
|
|
+ this.queryParam.endDate = date[1]
|
|
|
|
+ },
|
|
|
|
+ // 查看促销描述
|
|
|
|
+ handleDescModal (row) {
|
|
|
|
+ this.descInfo = row.description
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ _this.openDescModal = true
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 促销展示
|
|
|
|
+ handleSaleShow (row) {
|
|
|
|
+ const _this = this
|
|
|
|
+ _this.openShowModal = true
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ _this.$refs.promotionShow.getDetail({ id: row.promoActiveSn, showType: row.contentType })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 重置
|
|
|
|
+ resetSearchForm () {
|
|
|
|
+ this.$refs.rangeDate.resetDate(this.time)
|
|
|
|
+ this.queryParam.beginDate = undefined
|
|
|
|
+ this.queryParam.endDate = undefined
|
|
|
|
+ this.queryParam.name = ''
|
|
|
|
+ this.queryParam.showFlag = undefined
|
|
|
|
+ this.queryParam.state = undefined
|
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
|
+ },
|
|
|
|
+ pageInit () {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$nextTick(() => { // 页面渲染完成后的回调
|
|
|
|
+ _this.setTableH()
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ setTableH () {
|
|
|
|
+ const tableSearchH = this.$refs.tableSearch.offsetHeight
|
|
|
|
+ this.tableHeight = window.innerHeight - tableSearchH - 195
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ mounted () {
|
|
|
|
+ if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
|
|
|
|
+ this.pageInit()
|
|
|
|
+ this.resetSearchForm()
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
|
|
|
|
+ this.setTableH()
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ activated () {
|
|
|
|
+ // 如果是新页签打开,则重置当前页面
|
|
|
|
+ if (this.$store.state.app.isNewTab) {
|
|
|
|
+ this.pageInit()
|
|
|
|
+ this.resetSearchForm()
|
|
|
|
+ }
|
|
|
|
+ // 只刷新列表
|
|
|
|
+ if (this.$store.state.app.updateList) {
|
|
|
|
+ this.pageInit()
|
|
|
|
+ this.$refs.table.refresh()
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ beforeRouteEnter (to, from, next) {
|
|
|
|
+ next(vm => {})
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="less">
|
|
|
|
+ .promotionInfoList-wrap{
|
|
|
|
+ .red{
|
|
|
|
+ color: #ed1c24;
|
|
|
|
+ }
|
|
|
|
+ .green{
|
|
|
|
+ color: #19be6b;
|
|
|
|
+ }
|
|
|
|
+ .font1{
|
|
|
|
+ color:#39f;
|
|
|
|
+ }
|
|
|
|
+ .desc{
|
|
|
|
+ width: 100%;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ display: -webkit-box;
|
|
|
|
+ -webkit-line-clamp: 3;
|
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</style>
|