123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <template>
- <div class="rebateBinding-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <a-page-header :ghost="false" :backIcon="false" @back="handleBack" class="rebateBinding-cont">
- <!-- 自定义的二级文字标题 -->
- <template slot="subTitle">
- <a id="rebateBinding-back-btn" href="javascript:;" @click="handleBack"><a-icon type="left" /> 返回列表</a>
- <span style="margin-left: 20px;color: #666;" v-if="detail">经销商:{{ detail.dealerName }}</span>
- </template>
- </a-page-header>
- <a-card size="small" :bordered="false" class="rebateBinding-main">
- <!-- 搜索条件 -->
- <div ref="tableSearch" class="table-page-search-wrapper">
- <a-form-model
- id="rebateBinding-form"
- v-show="!isTeyue"
- ref="ruleForm"
- class="form-model-con"
- layout="inline"
- :model="queryParam"
- @keyup.enter.native="handleSearch">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="品牌">
- <ProductBrand v-model="queryParam.productBrandSn"></ProductBrand>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="产品分类">
- <ProductType placeholder="请选择产品分类" @change="changeProductType" v-model="productType"></ProductType>
- </a-form-model-item>
- </a-col>
- <!-- <a-col :md="6" :sm="24" v-if="!isTeyue">
- <a-form-model-item label="价格级别">
- <v-select code="PRICE_LEVEL" :notIn="['SPECIAL']" v-model="queryParam.priceLevel" allowClear placeholder="请选择价格级别"></v-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24" v-if="!isTeyue">
- <a-form-model-item label="经销商">
- <a-input v-model.trim="queryParam.dealerName" allowClear placeholder="请输入经销商名称"/>
- </a-form-model-item>
- </a-col> -->
- <a-col :md="6" :sm="24" v-show="false">
- <a-form-model-item label="差价归属方">
- <v-select code="REBATE_PARENT_TYPE" ref="rpType" v-model="queryParam.rebateParentType" allowClear placeholder="请选择差价归属方"></v-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
- <a-button type="primary" @click="handleSearch" :disabled="disabled" id="rebateBinding-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="rebateBinding-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form-model>
- </div>
- <!-- 操作按钮 -->
- <div class="table-operator" v-if="showBtns">
- <a-button id="rebateBinding-brand" type="primary" class="button-error" @click="openGlModal">差价设置</a-button>
- </div>
- <!-- 列表 -->
- <categoryList ref="categoryList" @loaded="loadList" @del="delOk" @edit="handleEdit" :maxHeight="tableHeight"></categoryList>
- </a-card>
- </a-spin>
- <!-- 差价设置 -->
- <priceDiffModal ref="priceDiffModal" :openModal="openModal" @ok="resetSearchForm" @close="openModal=false"></pricediffmodal>
- </div>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import { dealerDetailBySn } from '@/api/dealer'
- import ProductType from '@/views/common/productType.js'
- import ProductBrand from '@/views/common/productBrand.js'
- import priceDiffModal from './priceDiffModal.vue'
- import categoryList from './categoryList'
- export default {
- name: 'RebateBinding',
- mixins: [commonMixin],
- components: { STable, VSelect, ProductType, ProductBrand, priceDiffModal, categoryList },
- data () {
- return {
- spinning: false,
- tableHeight: 0,
- disabled: false, // 查询、重置按钮是否可操作
- loading: false, // 表格加载中
- openModal: false,
- detail: null,
- productType: [],
- queryParam: { // 查询条件
- rebateParentType: undefined,
- priceLevel: undefined,
- productBrandSn: undefined,
- productTypeSn1: undefined,
- productTypeSn2: undefined,
- productTypeSn3: undefined,
- dealerName: ''
- },
- showBtns: true
- }
- },
- computed: {
- isTeyue () {
- return this.detail && this.detail.dealerLevel == 'SPECIAL'
- }
- },
- methods: {
- // 返回
- handleBack () {
- this.$router.push({ name: 'merchantInfoManagementList', query: { closeLastOldTab: true } })
- },
- loadList (list) {
- console.log(list.length == 0)
- this.showBtns = this.isTeyue ? list.length == 0 : true
- },
- // 查询
- handleSearch () {
- this.queryParam.dealerSn = this.$route.params.sn
- const params = {}
- for (const k in this.queryParam) {
- if (this.queryParam[k]) {
- params[k] = this.queryParam[k]
- }
- }
- this.$refs.categoryList.pageInit(params)
- },
- // 产品分类 change
- changeProductType (val, opt) {
- this.queryParam.productTypeSn1 = val[0] ? val[0] : undefined
- this.queryParam.productTypeSn2 = val[1] ? val[1] : undefined
- this.queryParam.productTypeSn3 = val[2] ? val[2] : undefined
- },
- // 重置表单
- resetSearchForm () {
- this.queryParam.dealerName = ''
- this.queryParam.rebateParentType = undefined
- this.queryParam.priceLevel = undefined
- this.queryParam.productBrandSn = undefined
- this.queryParam.productTypeSn1 = undefined
- this.queryParam.productTypeSn2 = undefined
- this.queryParam.productTypeSn3 = undefined
- this.productType = []
- this.handleSearch()
- this.openModal = false
- },
- // 打开关联弹框
- openGlModal () {
- this.openModal = true
- const checkedDealerSn = this.$refs.categoryList.checkedDealerSn
- this.$refs.priceDiffModal.setData(this.$refs.rpType.getOptionDatas(), this.$route.params.sn, this.detail, checkedDealerSn)
- },
- // 编辑
- handleEdit (row) {
- this.openModal = true
- this.$refs.priceDiffModal.editData(this.$refs.rpType.getOptionDatas(), this.$route.params.sn, this.detail, row)
- },
- // 删除成功
- delOk () {
- this.handleSearch()
- },
- // 详情
- getDetail () {
- this.spinning = true
- dealerDetailBySn({ sn: this.$route.params.sn }).then(res => {
- if (res.status == 200) {
- this.detail = res.data
- }
- this.spinning = false
- })
- },
- pageInit () {
- const _this = this
- this.getDetail()
- this.handleSearch()
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - (!this.showBtns ? 50 : 205)
- }
- },
- watch: {
- '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
- this.setTableH()
- }
- },
- mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.pageInit()
- }
- },
- activated () {
- // 如果是新页签打开或者进入新的子页(例:存在列表第2条数据编辑页页签时再打开第4条数据的编辑页),则重置当前页面
- if (this.$store.state.app.isNewTab || !this.$store.state.app.isNewSubTab) {
- this.pageInit()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
- <style lang="less" scoped>
- .rebateBinding-wrap{
- .rebateBinding-cont{
- margin-bottom: 6px;
- }
- }
- </style>
|