|
@@ -0,0 +1,465 @@
|
|
|
|
+<template>
|
|
|
|
+ <a-card size="small" :bordered="false" class="promotionList-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="5" :sm="24">
|
|
|
|
+ <a-form-item label="创建时间">
|
|
|
|
+ <rangeDate ref="rangeDate" @change="dateChange" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
|
+ <a-form-item label="促销名称">
|
|
|
|
+ <a-input id="promotionList-promotionName" v-model.trim="queryParam.promotionName" allowClear placeholder="请输入促销名称"/>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
|
+ <a-form-item label="发布状态">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.publishStatus"
|
|
|
|
+ ref="publishStatus"
|
|
|
|
+ id="promotionList-publishStatus"
|
|
|
|
+ code="SPARE_PARTS_RETURN_REASON"
|
|
|
|
+ placeholder="请选择发布状态"
|
|
|
|
+ allowClear></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
|
+ <a-form-item label="活动状态">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.state"
|
|
|
|
+ ref="state"
|
|
|
|
+ id="promotionList-state"
|
|
|
|
+ code="SPARE_PARTS_RETURN_STATE"
|
|
|
|
+ placeholder="请选择活动状态"
|
|
|
|
+ allowClear
|
|
|
|
+ ></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
|
+ <span class="table-page-search-submitButtons">
|
|
|
|
+ <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="promotionList-refresh">查询</a-button>
|
|
|
|
+ <a-button style="margin-left: 5px" @click="resetSearchForm()" :disabled="disabled" id="promotionList-reset">重置</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ style="margin-left: 10px"
|
|
|
|
+ type="primary"
|
|
|
|
+ class="button-warning"
|
|
|
|
+ @click="handleExport"
|
|
|
|
+ :disabled="disabled"
|
|
|
|
+ :loading="exportLoading"
|
|
|
|
+ >导出</a-button>
|
|
|
|
+ <!-- v-if="$hasPermissions('B_promotionListExport')" -->
|
|
|
|
+ </span>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ </a-form>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 操作按钮 -->
|
|
|
|
+ <div class="table-operator">
|
|
|
|
+ <!-- v-if="$hasPermissions('B_promotionListAdd')" -->
|
|
|
|
+ <a-button id="promotionList-add" type="primary" class="button-error" @click="handleAdd">新增</a-button>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 列表 -->
|
|
|
|
+ <s-table
|
|
|
|
+ class="sTable fixPagination"
|
|
|
|
+ ref="table"
|
|
|
|
+ :style="{ height: tableHeight+84.5+'px' }"
|
|
|
|
+ size="small"
|
|
|
|
+ :rowKey="(record) => record.sparePartsReturnNo"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :data="loadData"
|
|
|
|
+ :scroll="{ y: tableHeight }"
|
|
|
|
+ :defaultLoadData="false"
|
|
|
|
+ bordered>
|
|
|
|
+ <!-- 促销名称 -->
|
|
|
|
+ <template slot="promotionName" slot-scope="text, record">
|
|
|
|
+ <div class="nameBox text-overflows2">{{ record.promotionName }}名字</div>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 参与客户 -->
|
|
|
|
+ <template slot="joinCustomers" slot-scope="text, record">
|
|
|
|
+ <div @click="handleCustomers(record)">共有<span style="color:#39f;vertical-align:top;">6</span>个客户</div>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 发布状态 -->
|
|
|
|
+ <template slot="releaseStatus" slot-scope="text, record">
|
|
|
|
+ <a-switch
|
|
|
|
+ id="promotionList-enable"
|
|
|
|
+ @change="changeStatus(record)"
|
|
|
|
+ :checked="record.loginFlag == 1 ? true : false"></a-switch>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 操作 -->
|
|
|
|
+ <!-- state 待提交 WAIT_SUBMIT 待审核 WAIT_AUDIT 未开始 NO_START 进行中 A_FOOT 已完结 FINISH 审核不通过 AUDIT_REJECT -->
|
|
|
|
+ <template slot="action" slot-scope="text, record">
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ class="button-warning"
|
|
|
|
+ @click="handleSetRules(record)"
|
|
|
|
+ v-if="record.state =='WAIT_SUBMIT'"
|
|
|
|
+ id="allocateBillList-examine-btn">规则设置</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ v-if="record.state == 'WAIT_SUBMIT' ||record.state == 'AUDIT_REJECT'"
|
|
|
|
+ @click="handleEdit(record)"
|
|
|
|
+ class="button-info"
|
|
|
|
+ id="promotionList-edit-btn">编辑</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ v-if="record.state == 'WAIT_AUDIT'"
|
|
|
|
+ @click="handleCheck(record)"
|
|
|
|
+ class="button-info"
|
|
|
|
+ id="promotionList-edit-btn">审核</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ v-if="record.state == 'NO_START' || record.state=='A_FOOT'"
|
|
|
|
+ @click="handleTime(record)"
|
|
|
|
+ class="button-info"
|
|
|
|
+ id="promotionList-edit-btn">促销时间变更</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ v-if="record.state == 'NO_START' || record.state=='A_FOOT'"
|
|
|
|
+ @click="handleEnd(record)"
|
|
|
|
+ class="button-info"
|
|
|
|
+ id="promotionList-edit-btn">终止</a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ size="small"
|
|
|
|
+ type="link"
|
|
|
|
+ v-if="record.state == 'WAIT_SUBMIT'||record.state == 'AUDIT_REJECT'"
|
|
|
|
+ @click="handleDel(record)"
|
|
|
|
+ class="button-error"
|
|
|
|
+ id="promotionList-del-btn">删除</a-button>
|
|
|
|
+ <div v-if="record.state == 'FINISH'">--</div>
|
|
|
|
+ </template>
|
|
|
|
+ </s-table>
|
|
|
|
+ </a-spin>
|
|
|
|
+ <!-- 参与客户 -->
|
|
|
|
+ <lookUp-customers-modal ref="lookUpCustomers" :openModal="openCustomerModal" @close="openCustomerModal = false"></lookUp-customers-modal>
|
|
|
|
+ <!-- 新增/编辑弹窗-->
|
|
|
|
+ <add-modal v-drag :openModal="openModal" @ok="handleOk" @close="openModal=false" />
|
|
|
|
+ <!-- 审核提示语 -->
|
|
|
|
+
|
|
|
|
+ <!-- 导出提示框 -->
|
|
|
|
+ <reportModal :visible="showExport" @close="showExport=false"></reportModal>
|
|
|
|
+ <!-- 审核进度弹窗 -->
|
|
|
|
+ <!-- <reviewProgressModal v-drag :itemSn="itemSnSh" :auditTime="auditTime" :openModal="openReviewModal" @close="openReviewModal=false"></reviewProgressModal> -->
|
|
|
|
+ </a-card>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { commonMixin } from '@/utils/mixin'
|
|
|
|
+import { STable, VSelect } from '@/components'
|
|
|
|
+import addModal from './addModal.vue'
|
|
|
|
+import lookUpCustomersModal from '@/views/promotionRulesManagement/promotionManagement/lookUpCustomersModal'
|
|
|
|
+// import detailModal from './detailModal.vue'
|
|
|
|
+import rangeDate from '@/views/common/rangeDate.vue'
|
|
|
|
+// import chooseDepartUserModal from './chooseDepartUserModal.vue'
|
|
|
|
+// import reviewProgressModal from './reviewProgressModal.vue'
|
|
|
|
+import reportModal from '@/views/common/reportModal.vue'
|
|
|
|
+import { hdExportExcel } from '@/libs/exportExcel'
|
|
|
|
+import supplier from '@/views/common/supplier.js'
|
|
|
|
+import warehouse from '@/views/common/chooseWarehouse.js'
|
|
|
|
+import { sparePartsReturnList, sparePartsReturnDelete, sparePartsReturnExportDetail, againSubmit } from '@/api/sparePartsReturn'
|
|
|
|
+export default {
|
|
|
|
+ name: 'PromotionManagementList',
|
|
|
|
+ mixins: [commonMixin],
|
|
|
|
+ components: { STable, supplier, VSelect, reportModal, rangeDate, warehouse, lookUpCustomersModal, addModal },
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ spinning: false,
|
|
|
|
+ disabled: false, // 查询、重置按钮是否可操作
|
|
|
|
+ openModal: false, // 新增弹框是否显示
|
|
|
|
+ openCustomerModal: false, // 参与客户弹窗
|
|
|
|
+
|
|
|
|
+ openDetailModal: false, // 详情弹窗
|
|
|
|
+ openReviewModal: false, // 审核进度弹窗
|
|
|
|
+ showExport: false,
|
|
|
|
+ exportLoading: false,
|
|
|
|
+ tableHeight: 0,
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParam: {
|
|
|
|
+ beginDate: undefined,
|
|
|
|
+ endDate: undefined,
|
|
|
|
+ sparePartsReturnNo: undefined,
|
|
|
|
+ supplierSn: undefined,
|
|
|
|
+ returnReason: undefined,
|
|
|
|
+ warehouseSn: undefined, // 仓库
|
|
|
|
+ state: undefined
|
|
|
|
+ },
|
|
|
|
+ columns: [
|
|
|
|
+ { title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
|
|
|
|
+ { title: '创建时间', dataIndex: 'createDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '促销名称', scopedSlots: { customRender: 'promotionName' }, width: '14%', align: 'center' },
|
|
|
|
+ { title: '促销时间', dataIndex: 'auditDate', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '参与客户', scopedSlots: { customRender: 'joinCustomers' }, width: '9%', align: 'center', ellipsis: true },
|
|
|
|
+ { title: '促销描述', dataIndex: 'returnReasonDictValue', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
|
+ { title: '活动状态', dataIndex: 'stateDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '发布状态', scopedSlots: { customRender: 'releaseStatus' }, width: '9%', align: 'center', ellipsis: true },
|
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
|
|
|
|
+ ],
|
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
|
+ loadData: parameter => {
|
|
|
|
+ this.disabled = true
|
|
|
|
+ this.spinning = true
|
|
|
|
+ return sparePartsReturnList(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
|
|
|
|
+ }
|
|
|
|
+ this.disabled = false
|
|
|
|
+ }
|
|
|
|
+ this.spinning = false
|
|
|
|
+ return data
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ itemSnSh: null,
|
|
|
|
+ itemSn: null, // 采购退货SN
|
|
|
|
+ auditTime: null// 审核时间
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // 创建时间
|
|
|
|
+ dateChange (date) {
|
|
|
|
+ this.queryParam.beginDate = date[0]
|
|
|
|
+ this.queryParam.endDate = date[1]
|
|
|
|
+ },
|
|
|
|
+ // 导出
|
|
|
|
+ handleExport () {
|
|
|
|
+ const _this = this
|
|
|
|
+ _this.$store.state.app.curActionPermission = 'B_promotionListExport'
|
|
|
|
+ _this.exportLoading = true
|
|
|
|
+ _this.spinning = true
|
|
|
|
+ hdExportExcel(sparePartsReturnExportDetail, _this.queryParam, '采购退货', function () {
|
|
|
|
+ _this.exportLoading = false
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ _this.showExport = true
|
|
|
|
+ _this.$store.state.app.curActionPermission = ''
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 新增
|
|
|
|
+ handleAdd () {
|
|
|
|
+ this.openModal = true
|
|
|
|
+ },
|
|
|
|
+ // 参与客户
|
|
|
|
+ handleCustomers (row) {
|
|
|
|
+ this.openCustomerModal = true
|
|
|
|
+ // this.$nextTick(() => {
|
|
|
|
+ // this.$refs.lookUpCustomers.pageInit({ dealerSnList: row.promoBuyerSnSet ? row.promoBuyerSnSet : undefined, promoActiveSn: row.promoActiveSn })
|
|
|
|
+ // })
|
|
|
|
+ },
|
|
|
|
+ // 基本信息 保存
|
|
|
|
+ handleOk (row) {
|
|
|
|
+ this.$router.push({ name: 'promotionListAdd', query: { returnSn: row.sparePartsReturnSn, no: row.sparePartsReturnNo, sn: row.supplierSn } })
|
|
|
|
+ },
|
|
|
|
+ // 编辑
|
|
|
|
+ handleEdit (row) {
|
|
|
|
+ this.$router.push({ name: 'promotionListEdit', query: { returnSn: row.sparePartsReturnSn, no: row.sparePartsReturnNo, sn: row.supplierSn } })
|
|
|
|
+ },
|
|
|
|
+ // 发布状态
|
|
|
|
+ changeStatus (record) {
|
|
|
|
+ const params = {
|
|
|
|
+ id: record.id,
|
|
|
|
+ flag: record.loginFlag == 1 ? '0' : '1'
|
|
|
|
+ }
|
|
|
|
+ this.spinning = true
|
|
|
|
+ dealerUserEnable(params).then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ this.$message.success(res.message)
|
|
|
|
+ this.$refs.table.refresh()
|
|
|
|
+ this.spinning = false
|
|
|
|
+ } else {
|
|
|
|
+ this.$refs.table.refresh()
|
|
|
|
+ this.spinning = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 规则设置
|
|
|
|
+ handleSetRules (row) {
|
|
|
|
+ this.itemSnSh = row.sparePartsReturnSn
|
|
|
|
+ this.auditTime = row.submitDate
|
|
|
|
+ const _this = this
|
|
|
|
+ _this.$nextTick(() => {
|
|
|
|
+ _this.openReviewModal = true
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 审核
|
|
|
|
+ handleCheck (row) {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$confirm({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '请点击下方按钮确认操作?',
|
|
|
|
+ cancelText: '审核不通过',
|
|
|
|
+ okText: '审核通过',
|
|
|
|
+ centered: true,
|
|
|
|
+ closable: true,
|
|
|
|
+ onOk () {
|
|
|
|
+ _this.spinning = true
|
|
|
|
+ sparePartsReturnDelete({ sn: row.sparePartsReturnSn }).then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ _this.$message.success(res.message)
|
|
|
|
+ _this.$refs.table.refresh()
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ } else {
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ onCancel (e) {
|
|
|
|
+ console.log('不通过', e)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 促销时间变更
|
|
|
|
+ handleTime () {},
|
|
|
|
+ // 终止
|
|
|
|
+ handleEnd (row) {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$confirm({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '确定要终止该促销?',
|
|
|
|
+ centered: true,
|
|
|
|
+ onOk () {
|
|
|
|
+ _this.spinning = true
|
|
|
|
+ sparePartsReturnDelete({ sn: row.sparePartsReturnSn }).then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ _this.$message.success(res.message)
|
|
|
|
+ _this.$refs.table.refresh()
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ } else {
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 再次提交
|
|
|
|
+ handleResubmit (row) {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$confirm({
|
|
|
|
+ title: '操作提示',
|
|
|
|
+ content: '系统将自动生成一个新的采购退货单,新单据中的产品申退数量将以最大可用库存为准,最大可用库存为0时,系统将强制删除已选的对应产品。您可以对新单据进行编辑、提交等操作,原单据保持不变,确认操作吗?',
|
|
|
|
+ centered: true,
|
|
|
|
+ onOk () {
|
|
|
|
+ _this.spinning = true
|
|
|
|
+ againSubmit({ sparePartsReturnSn: row.sparePartsReturnSn }).then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ _this.$message.success(res.message)
|
|
|
|
+ _this.$refs.table.refresh()
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ } else {
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 采购退货详情
|
|
|
|
+ handleDetail (row) {
|
|
|
|
+ this.itemSn = row.sparePartsReturnSn
|
|
|
|
+ const _this = this
|
|
|
|
+ _this.$nextTick(() => {
|
|
|
|
+ _this.openDetailModal = true
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 关闭采购退货详情弹框
|
|
|
|
+ closeDetailModal () {
|
|
|
|
+ this.itemSn = null
|
|
|
|
+ this.openDetailModal = false
|
|
|
|
+ },
|
|
|
|
+ // 删除
|
|
|
|
+ handleDel (row) {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$confirm({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '确认要删除该活动吗?',
|
|
|
|
+ centered: true,
|
|
|
|
+ onOk () {
|
|
|
|
+ _this.spinning = true
|
|
|
|
+ sparePartsReturnDelete({ sn: row.sparePartsReturnSn }).then(res => {
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ _this.$message.success(res.message)
|
|
|
|
+ _this.$refs.table.refresh()
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ } else {
|
|
|
|
+ _this.spinning = false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 重置
|
|
|
|
+ resetSearchForm () {
|
|
|
|
+ this.queryParam = {
|
|
|
|
+ beginDate: undefined,
|
|
|
|
+ endDate: undefined,
|
|
|
|
+ sparePartsReturnNo: undefined,
|
|
|
|
+ supplierSn: undefined,
|
|
|
|
+ returnReason: undefined,
|
|
|
|
+ warehouseSn: undefined, // 仓库
|
|
|
|
+ state: undefined
|
|
|
|
+ }
|
|
|
|
+ this.$refs.rangeDate.resetDate()
|
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
|
+ },
|
|
|
|
+ pageInit () {
|
|
|
|
+ const _this = this
|
|
|
|
+ this.$nextTick(() => { // 页面渲染完成后的回调
|
|
|
|
+ _this.setTableH()
|
|
|
|
+ })
|
|
|
|
+ this.openModal = false
|
|
|
|
+ this.openDetailModal = false
|
|
|
|
+ this.itemSn = null
|
|
|
|
+ this.rowSelectionInfo = null
|
|
|
|
+ this.$refs.table.clearTable()
|
|
|
|
+ },
|
|
|
|
+ setTableH () {
|
|
|
|
+ const tableSearchH = this.$refs.tableSearch.offsetHeight
|
|
|
|
+ this.tableHeight = window.innerHeight - tableSearchH - 240
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
|
|
|
|
+ this.setTableH()
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ mounted () {
|
|
|
|
+ if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
|
|
|
|
+ this.pageInit()
|
|
|
|
+ this.resetSearchForm()
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ 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">
|
|
|
|
+ .promotionList-wrap{
|
|
|
|
+ .nameBox{
|
|
|
|
+ color: #39f;
|
|
|
|
+ padding:0 5px;
|
|
|
|
+ }
|
|
|
|
+ .common{
|
|
|
|
+ color: rgba(0, 0, 0);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</style>
|