123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418 |
- <template>
- <a-card size="small" :bordered="false" class="productPricingList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div ref="tableSearch" class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchForm">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="产品名称">
- <a-input id="productPricingList-name" v-model.trim="queryParam.name" allowClear placeholder="请输入产品名称"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="产品编码/原厂编码">
- <a-input id="productPricingList-queryWord" v-model.trim="queryParam.queryWord" allowClear placeholder="请输入产品编码/原厂编码"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="品牌">
- <ProductBrand id="productPricingList-productBrandSn" v-model="queryParam.productBrandSn"></ProductBrand>
- </a-select>
- </a-form-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-item label="产品分类">
- <a-cascader
- @change="changeProductType"
- expand-trigger="hover"
- change-on-select
- :options="productTypeList"
- :fieldNames="{ label: 'productTypeName', value: 'productTypeSn', children: 'children' }"
- id="productPricingList-productType"
- placeholder="请选择产品分类"
- allowClear
- v-model="productType" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="定价状态">
- <v-select code="PRICING_STATUS" id="productPricingList-pricingState" v-model="queryParam.pricingState" allowClear placeholder="请选择定价状态"></v-select>
- </a-form-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
- <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="productInfoList-export">导出</a-button>
- <a @click="advanced=!advanced" style="margin-left: 5px">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'"/>
- </a>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮 -->
- <div class="table-operator">
- <a-button
- style="margin: 0 15px 0 0;"
- v-if="$hasPermissions('B_productPriceImport')"
- id="productPricingList-add"
- @click="openGuideModal=true"
- type="primary"
- class="button-error">定价导入</a-button>
- <a-button
- id="productPricingList-batchAudit"
- type="primary"
- class="button-warning"
- :loading="spinning"
- @click="handleBatchAudit"
- v-if="$hasPermissions('B_productPricing_audit')"
- style="margin: 0 15px 0 0;">批量审核</a-button>
- <span v-if="$hasPermissions('B_productPricing_audit')&&selTotal">已选{{ selTotal }}项</span>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+84.5+'px' }"
- size="small"
- :row-selection="$hasPermissions('B_productPricing_audit') ? { columnWidth: 40, 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>
- </div>
- <span v-else>--</span>
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- v-if="record.pricingState=='WAIT_PRICING_AUDIT' && $hasPermissions('B_productPricing_audit')"
- class="button-warning"
- @click="handleAudit(record)"
- id="productPricingList-audit-btn">审核</a-button>
- <a-button
- size="small"
- type="link"
- v-if="$hasPermissions('B_productPricing_edit')"
- class="button-info"
- @click="handleEdit(record)"
- id="productPricingList-edit-btn">编辑</a-button>
- <span v-if="!(record.pricingState=='WAIT_PRICING_AUDIT' && $hasPermissions('B_productPricing_audit')) && !$hasPermissions('B_productPricing_edit')">--</span>
- </template>
- </s-table>
- </a-spin>
- <!-- 编辑价格 -->
- <product-pricing-edit-modal :openModal="openModal" :itemSn="itemSn" @close="closeModal" @ok="$refs.table.refresh()" />
- <!-- 审核价格 -->
- <product-pricing-audit-modal :openModal="openAuditModal" :itemSn="itemSn" @close="closeAuditModal" @ok="auditSuccess" />
- <!-- 导入产品 -->
- <importGuideModal :openModal="openGuideModal" @close="openGuideModal=false" @ok="hanldeOk" />
- </a-card>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import { exportExcel } from '@/libs/JGPrint.js'
- import productPricingEditModal from './editModal.vue'
- import productPricingAuditModal from './auditModal.vue'
- import { productBrandQuery } from '@/api/productBrand'
- import { productTypeQuery } from '@/api/productType'
- import { productPricingList, productExportPricing, batchAuditPrice, productPriceInsertImport } from '@/api/product'
- import ProductBrand from '@/views/common/productBrand.js'
- import ImportGuideModal from './importGuideModal.vue'
- export default {
- name: 'ProductPricingList',
- mixins: [commonMixin],
- components: { STable, VSelect, productPricingEditModal, productPricingAuditModal, ProductBrand, ImportGuideModal },
- data () {
- return {
- spinning: false,
- advanced: true, // 高级搜索 展开/关闭
- openGuideModal: false,
- tableHeight: 0,
- queryParam: { // 查询条件
- name: '', // 产品名称
- queryWord: '', // 产品编码/原厂编码
- productBrandSn: undefined, // 产品品牌
- productTypeSn1: '', // 产品一级分类
- productTypeSn2: '', // 产品二级分类
- productTypeSn3: '', // 产品三级分类
- pricingState: undefined // 定价状态
- },
- productType: [],
- disabled: false, // 查询、重置按钮是否可操作
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- return productPricingList(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.total = data.count || 0
- this.disabled = false
- }
- this.spinning = false
- return data
- })
- },
- total: 0, // 合计
- openModal: false, // 编辑 弹框
- openAuditModal: false, // 审核 弹框
- itemSn: '', // 当前产品sn
- productBrandList: [], // 品牌下拉数据
- productTypeList: [], // 分类下拉数据
- rowSelectionInfo: null
- }
- },
- computed: {
- selTotal () {
- return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys ? this.rowSelectionInfo.selectedRowKeys.length : 0
- },
- columns () {
- const arr = [
- { title: '序号', dataIndex: 'no', width: '3%', align: 'center' },
- { title: '创建时间', dataIndex: 'createDate', width: '8%', 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: 'center', customRender: function (text) { return text || '--' } },
- { title: '原厂编码', dataIndex: 'origCode', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '品牌', dataIndex: 'productBrandName', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品分类', scopedSlots: { customRender: 'productType' }, width: '7%', align: 'center' },
- { 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: '成本价', scopedSlots: { customRender: 'sterminaldsdPrice' }, width: '7%', align: 'center' },
- // { title: '省级价', dataIndex: 'provincePrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- // { title: '市级价', dataIndex: 'cityPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '特约价', dataIndex: 'specialPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '终端价', dataIndex: 'terminalPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '车主价', dataIndex: 'carOwnersPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
- ]
- if (this.$hasPermissions('B_isShowCost')) {
- arr.splice(9, 0, { title: '成本价', scopedSlots: { customRender: 'sterminaldsdPrice' }, width: '7%', align: 'center' })
- if (this.$hasPermissions('B_isShowProvincePrice')) {
- arr.splice(10, 0, { title: '省级价', dataIndex: 'provincePrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
- if (this.$hasPermissions('B_isShowCityPrice')) {
- arr.splice(11, 0, { title: '市级价', dataIndex: 'cityPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
- }
- } else {
- if (this.$hasPermissions('B_isShowCityPrice')) {
- arr.splice(10, 0, { title: '市级价', dataIndex: 'cityPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
- }
- }
- } else {
- if (this.$hasPermissions('B_isShowProvincePrice')) {
- arr.splice(9, 0, { title: '省级价', dataIndex: 'provincePrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
- if (this.$hasPermissions('B_isShowCityPrice')) {
- arr.splice(10, 0, { title: '市级价', dataIndex: 'cityPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
- }
- } else {
- if (this.$hasPermissions('B_isShowCityPrice')) {
- arr.splice(9, 0, { title: '市级价', dataIndex: 'cityPrice', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
- }
- }
- }
- return arr
- }
- },
- methods: {
- // 表格选中项
- rowSelectionFun (obj) {
- this.rowSelectionInfo = obj || null
- },
- // 重置
- resetSearchForm () {
- this.queryParam.name = ''
- this.queryParam.queryWord = ''
- this.queryParam.productBrandSn = undefined
- this.queryParam.productTypeSn1 = ''
- this.queryParam.productTypeSn2 = ''
- this.queryParam.productTypeSn3 = ''
- this.queryParam.pricingState = undefined
- this.productType = []
- this.$refs.table.clearSelected() // 清空表格选中项
- this.$refs.table.refresh(true)
- },
- searchForm () {
- this.$refs.table.clearSelected() // 清空表格选中项
- this.$refs.table.refresh(true)
- },
- // 审核
- handleAudit (row) {
- this.itemSn = row.productSn
- this.openAuditModal = true
- },
- auditSuccess () {
- this.$refs.table.clearSelected() // 清空表格选中项
- this.$refs.table.refresh()
- },
- // 批量审核
- handleBatchAudit () {
- const _this = this
- if (!_this.rowSelectionInfo || (_this.rowSelectionInfo && _this.rowSelectionInfo.selectedRowKeys.length < 1)) {
- _this.$message.warning('请先选择产品!')
- return
- }
- const obj = []
- _this.rowSelectionInfo && _this.rowSelectionInfo.selectedRows.map(item => {
- obj.push(item.productSn)
- })
- this.$confirm({
- title: '提示',
- content: '确认要审核通过吗?',
- centered: true,
- onOk () {
- _this.spinning = true
- batchAuditPrice(obj).then(res => {
- if (res.status == 200) {
- _this.$refs.table.clearSelected() // 清空表格选中项
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 导入产品
- 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
- this.openModal = true
- },
- // 关闭弹框
- closeModal () {
- this.itemSn = ''
- this.openModal = false
- },
- // 关闭审核弹框
- closeAuditModal () {
- this.itemSn = ''
- this.openAuditModal = false
- },
- // 产品分类 change
- changeProductType (val, opt) {
- this.queryParam.productTypeSn1 = val[0] ? val[0] : ''
- this.queryParam.productTypeSn2 = val[1] ? val[1] : ''
- this.queryParam.productTypeSn3 = val[2] ? val[2] : ''
- },
- // 产品品牌 列表
- getProductBrand () {
- productBrandQuery({}).then(res => {
- if (res.status == 200) {
- this.productBrandList = res.data
- } else {
- this.productBrandList = []
- }
- })
- },
- // 产品分类 列表
- getProductType () {
- productTypeQuery({}).then(res => {
- if (res.status == 200) {
- this.productTypeList = res.data
- } else {
- this.productTypeList = []
- }
- })
- },
- pageInit () {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- this.getProductBrand()
- this.getProductType()
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 235
- }
- },
- watch: {
- advanced (newValue, oldValue) {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- '$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>
|