|
@@ -3,6 +3,7 @@
|
|
centered
|
|
centered
|
|
:footer="null"
|
|
:footer="null"
|
|
:maskClosable="false"
|
|
:maskClosable="false"
|
|
|
|
+ :closable="false"
|
|
class="sales-print-type-modal"
|
|
class="sales-print-type-modal"
|
|
v-model="isShow"
|
|
v-model="isShow"
|
|
@cancel="isShow=false"
|
|
@cancel="isShow=false"
|
|
@@ -22,6 +23,11 @@
|
|
:scroll="{ y: 300 }"
|
|
:scroll="{ y: 300 }"
|
|
:pagination="false"
|
|
:pagination="false"
|
|
bordered>
|
|
bordered>
|
|
|
|
+ <!-- 产品编码 -->
|
|
|
|
+ <template slot="productCode" slot-scope="text, record">
|
|
|
|
+ <span>{{ record.productCode||'--' }}</span>
|
|
|
|
+ <a-badge count="促" v-if="record.promotionFlag==='GIFT'" :number-style="{ backgroundColor: '#52c41a', zoom:'80%' }"></a-badge>
|
|
|
|
+ </template>
|
|
<!-- 初始价 省 市 特约-->
|
|
<!-- 初始价 省 市 特约-->
|
|
<template slot="provincePriceOrig" slot-scope="text, record">
|
|
<template slot="provincePriceOrig" slot-scope="text, record">
|
|
<span v-if="record.provincePriceOrig||record.provincePriceOrig==0">
|
|
<span v-if="record.provincePriceOrig||record.provincePriceOrig==0">
|
|
@@ -102,7 +108,7 @@ export default {
|
|
sourceData: [],
|
|
sourceData: [],
|
|
priceVal: undefined,
|
|
priceVal: undefined,
|
|
columns: [
|
|
columns: [
|
|
- { title: '产品编码', dataIndex: 'productCode', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
|
|
+ { title: '产品编码', dataIndex: 'productCode', scopedSlots: { customRender: 'productCode' }, width: '20%', align: 'center' },
|
|
{ title: '价格级别', dataIndex: 'priceLevelDictValue', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '价格级别', dataIndex: 'priceLevelDictValue', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '价格变更前',
|
|
{ title: '价格变更前',
|
|
children: [
|
|
children: [
|