|
@@ -37,17 +37,9 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</template>
|
|
|
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
|
|
|
+ <a-col :md="6" :sm="24" style="margin-bottom: 0;text-align: center;">
|
|
|
<a-button type="primary" @click="searchForm" :disabled="disabled" id="productPricingList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="productPricingList-reset">重置</a-button>
|
|
|
- <a-button
|
|
|
- style="margin-left: 5px"
|
|
|
- type="primary"
|
|
|
- class="button-warning"
|
|
|
- @click="handleExport"
|
|
|
- :disabled="disabled"
|
|
|
- v-if="$hasPermissions('B_ProductPriceExoprt')"
|
|
|
- id="productPricingList-export">导出</a-button>
|
|
|
<a @click="advanced=!advanced" style="margin-left: 5px">
|
|
|
{{ advanced ? '收起' : '展开' }}
|
|
|
<a-icon :type="advanced ? 'up' : 'down'"/>
|
|
@@ -57,17 +49,10 @@
|
|
|
</a-form>
|
|
|
</div>
|
|
|
</a-card>
|
|
|
- <a-card size="small" :bordered="false">
|
|
|
+ <a-card size="small" :bordered="false" style="margin-top: 10px;">
|
|
|
<a-spin :spinning="spinning" tip="Loading...">
|
|
|
<!-- 操作按钮 -->
|
|
|
<div class="table-operator">
|
|
|
- <a-button
|
|
|
- style="margin: 0 10px 0 0;"
|
|
|
- v-if="$hasPermissions('B_productPriceImport')"
|
|
|
- id="productPricingList-add"
|
|
|
- @click="openGuideModal=true"
|
|
|
- type="primary"
|
|
|
- >定价导入</a-button>
|
|
|
<a-button
|
|
|
id="productPricingList-batchAudit"
|
|
|
type="primary"
|
|
@@ -80,33 +65,60 @@
|
|
|
</div>
|
|
|
<!-- 列表 -->
|
|
|
<s-table
|
|
|
- class="sTable fixPagination"
|
|
|
+ style="margin-top: 10px;"
|
|
|
+ class="sTable"
|
|
|
ref="table"
|
|
|
- :style="{ height: tableHeight+70+'px' }"
|
|
|
size="small"
|
|
|
:row-selection="$hasPermissions('B_productPricing_audit') ? { columnWidth: '4%', getCheckboxProps: record => ({ props: { disabled: record.pricingState!='WAIT_PRICING_AUDIT' } })}: null"
|
|
|
@rowSelection="rowSelectionFun"
|
|
|
:rowKey="(record) => record.id"
|
|
|
:columns="columns"
|
|
|
:data="loadData"
|
|
|
- :scroll="{y: tableHeight }"
|
|
|
:defaultLoadData="false"
|
|
|
- bordered>
|
|
|
- <!-- 产品分类 -->
|
|
|
- <template slot="productType" slot-scope="text, record">
|
|
|
- <span v-if="record.productTypeName2 || record.productTypeName3">{{ record.productTypeName2 }} {{ record.productTypeName3 ? '>' : '' }} {{ record.productTypeName3 }}</span>
|
|
|
- <span v-else>--</span>
|
|
|
- </template>
|
|
|
- <!-- 成本价 -->
|
|
|
- <template slot="sterminaldsdPrice" slot-scope="text, record">
|
|
|
- <div v-if="record.supplierProductList">
|
|
|
- <p v-for="(item, index) in record.supplierProductList" :key="index" style="margin: 0;">
|
|
|
- <span>{{ (item.cost || item.cost==0) ? item.cost.toFixed(2):'--' }}</span>元 -
|
|
|
- <span>{{ (item.supplierName||'') }}</span>;
|
|
|
- </p>
|
|
|
+ >
|
|
|
+ <template slot="productInfo" slot-scope="text, record">
|
|
|
+ <div class="tr-row">
|
|
|
+ <div class="tr-title">{{ record.name }}</div>
|
|
|
+ <div>创建时间':<span>{{ record.createDate ||'--' }}</span></div>
|
|
|
+ <div>产品编码:<span class="code">{{ record.code }}</span></div>
|
|
|
+ <div>原厂编码:<span>{{ record.origCode ||'--' }}</span></div>
|
|
|
+ <div>品牌:<span>{{ record.productBrandName ||'--' }}</span></div>
|
|
|
+ <div>产品分类:
|
|
|
+ <span v-if="record.productTypeName2 || record.productTypeName3">{{ record.productTypeName2 }} {{ record.productTypeName3 ? '>' : '' }} {{ record.productTypeName3 }}</span>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </div>
|
|
|
+ <div>产品状态:<span style="margin-right: 10px;">{{ record.stateDictValue ||'--' }}</span> 定价状态:<span>{{ record.pricingStateDictValue ||'--' }}</span></div>
|
|
|
+ <div>定价时间:<span>{{ record.pricingTime ||'--' }}</span></div>
|
|
|
+ <div style="display: flex;">
|
|
|
+ 成本价:
|
|
|
+ <div style="width:80%" v-if="record.supplierProductList">
|
|
|
+ <p v-for="(item, index) in record.supplierProductList" :key="index" style="margin: 0;">
|
|
|
+ <span class="red">{{ (item.cost || item.cost==0) ? item.cost.toFixed(2):'--' }}</span> 元
|
|
|
+ ({{ (item.supplierName||'') }});
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </div>
|
|
|
+ <div style="display: flex;flex-wrap: wrap;">
|
|
|
+ <div style="margin-right: 10px;">
|
|
|
+ 省级价:<span class="red">{{ toThousands(record.provincePrice) }}</span>
|
|
|
+ </div>
|
|
|
+ <div style="margin-right: 10px;">
|
|
|
+ 市级价:<span class="red">{{ toThousands(record.cityPrice) }}</span>
|
|
|
+ </div>
|
|
|
+ <div style="margin-right: 10px;">
|
|
|
+ 特约价:<span class="red">{{ toThousands(record.specialPrice) }}</span>
|
|
|
+ </div>
|
|
|
+ <div style="margin-right: 10px;">
|
|
|
+ 终端价:<span class="red">{{ toThousands(record.terminalPrice) }}</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ 车主价:<span class="red">{{ toThousands(record.carOwnersPrice) }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <span v-else>--</span>
|
|
|
</template>
|
|
|
+
|
|
|
<!-- 操作 -->
|
|
|
<template slot="action" slot-scope="text, record">
|
|
|
<a-button
|
|
@@ -118,6 +130,7 @@
|
|
|
:id="'productPricingList-audit-btn'+record.id">审核</a-button>
|
|
|
<a-button
|
|
|
size="small"
|
|
|
+ style="margin-top: 15px;"
|
|
|
type="link"
|
|
|
v-if="$hasPermissions('B_productPricing_edit')"
|
|
|
class="button-info"
|
|
@@ -131,8 +144,6 @@
|
|
|
<product-pricing-edit-modal v-drag :openModal="openModal" :itemSn="itemSn" @close="closeModal" @ok="$refs.table.refresh()" />
|
|
|
<!-- 审核价格 -->
|
|
|
<product-pricing-audit-modal v-drag :openModal="openPriceAuditModal" :itemSn="itemSn" @close="closeAuditModal" @ok="auditSuccess" />
|
|
|
- <!-- 导入产品 -->
|
|
|
- <importGuideModal :openModal="openGuideModal" @close="openGuideModal=false" @ok="hanldeOk" />
|
|
|
<!-- 审核弹窗 -->
|
|
|
<a-modal
|
|
|
closable
|
|
@@ -168,7 +179,6 @@
|
|
|
|
|
|
<script>
|
|
|
import { commonMixin } from '@/utils/mixin'
|
|
|
-import { exportExcel } from '@/libs/JGPrint.js'
|
|
|
// 组件
|
|
|
import rangeDate from '@/views/common/rangeDate.vue'
|
|
|
import { STable, VSelect } from '@/components'
|
|
@@ -176,19 +186,17 @@ import productPricingEditModal from './editModal.vue'
|
|
|
import productPricingAuditModal from './auditModal.vue'
|
|
|
import ProductType from '@/views/common/productType.js'
|
|
|
import ProductBrand from '@/views/common/productBrand.js'
|
|
|
-import ImportGuideModal from './importGuideModal.vue'
|
|
|
// 接口
|
|
|
-import { productPricingList, productExportPricing, batchAuditPrice, productPriceInsertImport } from '@/api/product'
|
|
|
+import { productPricingList, batchAuditPrice } from '@/api/product'
|
|
|
export default {
|
|
|
name: 'ProductPricingList',
|
|
|
mixins: [commonMixin],
|
|
|
- components: { STable, VSelect, rangeDate, productPricingEditModal, productPricingAuditModal, ProductBrand, ProductType, ImportGuideModal },
|
|
|
+ components: { STable, VSelect, rangeDate, productPricingEditModal, productPricingAuditModal, ProductBrand, ProductType },
|
|
|
data () {
|
|
|
return {
|
|
|
spinning: false,
|
|
|
- advanced: true, // 高级搜索 展开/关闭
|
|
|
+ advanced: false, // 高级搜索 展开/关闭
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
|
- openGuideModal: false, // 打开定价导入弹窗
|
|
|
tableHeight: 0, // 表格高度
|
|
|
time: [], // 定价时间
|
|
|
// 查询条件
|
|
@@ -239,24 +247,9 @@ export default {
|
|
|
return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys ? this.rowSelectionInfo.selectedRowKeys.length : 0
|
|
|
},
|
|
|
columns () {
|
|
|
- const _this = this
|
|
|
const arr = [
|
|
|
- { title: '序号', dataIndex: 'no', width: '3%', align: 'center' },
|
|
|
- { title: '创建时间', dataIndex: 'createDate', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '产品名称', dataIndex: 'name', align: 'left', width: '13%', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '产品编码', dataIndex: 'code', width: '6%', align: 'left', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '原厂编码', dataIndex: 'origCode', width: '6%', align: 'left', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '品牌', dataIndex: 'productBrandName', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '产品分类', scopedSlots: { customRender: 'productType' }, width: '11%', align: 'left' },
|
|
|
- { title: '产品状态', dataIndex: 'stateDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '定价状态', dataIndex: 'pricingStateDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '定价时间', dataIndex: 'pricingTime', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '成本价', scopedSlots: { customRender: 'sterminaldsdPrice' }, width: '7%', align: 'center' },
|
|
|
- { title: '省级价', dataIndex: 'provincePrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
- { title: '市级价', dataIndex: 'cityPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
- { title: '特约价', dataIndex: 'specialPrice', width: '5%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
- { title: '终端价', dataIndex: 'terminalPrice', width: '5%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
- { title: '车主价', dataIndex: 'carOwnersPrice', width: '5%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
+ { title: '序号', dataIndex: 'no', width: '40px', align: 'center' },
|
|
|
+ { title: '产品信息', scopedSlots: { customRender: 'productInfo' }, width: '82%', align: 'center' },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
|
|
|
]
|
|
|
return arr
|
|
@@ -314,23 +307,6 @@ export default {
|
|
|
}
|
|
|
_this.openAuditModal = true
|
|
|
},
|
|
|
- // 导入产品
|
|
|
- hanldeOk (obj) {
|
|
|
- productPriceInsertImport(obj).then(res => {
|
|
|
- if (res.status == 200) {
|
|
|
- this.resetSearchForm()
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
- // 导出
|
|
|
- handleExport () {
|
|
|
- const _this = this
|
|
|
- const params = this.queryParam
|
|
|
- this.spinning = true
|
|
|
- exportExcel(productExportPricing, params, '产品价格导出', function () {
|
|
|
- _this.spinning = false
|
|
|
- })
|
|
|
- },
|
|
|
// 编辑
|
|
|
handleEdit (row) {
|
|
|
this.itemSn = row.productSn
|
|
@@ -424,3 +400,30 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+<style lang="less">
|
|
|
+ .tr-row{
|
|
|
+ text-align: left;
|
|
|
+ .tr-title{
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ > div{
|
|
|
+ padding: 2px 0;
|
|
|
+ color: #666;
|
|
|
+ span{
|
|
|
+ color: #222;
|
|
|
+ }
|
|
|
+ .green{
|
|
|
+ color: #19be6b;
|
|
|
+ }
|
|
|
+ .red{
|
|
|
+ color: #ed1c24;
|
|
|
+ }
|
|
|
+ .code{
|
|
|
+ color: #00aaff;
|
|
|
+ }
|
|
|
+ .nums{
|
|
|
+ color: #ff0000;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|