修改角色界面的价格屏蔽配置

This commit is contained in:
季圣华
2023-05-25 22:00:18 +08:00
parent 0f042d9562
commit c79880f123
2 changed files with 9 additions and 6 deletions

View File

@@ -74,7 +74,7 @@
</span> </span>
<span slot="priceLimitTitle"> <span slot="priceLimitTitle">
价格屏蔽 价格屏蔽
<a-tooltip title="价格屏蔽支持多选主要用于控制首页界面和物料的价格屏蔽"> <a-tooltip title="价格屏蔽支持多选主要用于控制首页和单据的价格屏蔽">
<a-icon type="question-circle" /> <a-icon type="question-circle" />
</a-tooltip> </a-tooltip>
</span> </span>
@@ -146,7 +146,7 @@
title: '操作', title: '操作',
dataIndex: 'action', dataIndex: 'action',
align:"center", align:"center",
width: 150, width: 180,
scopedSlots: { customRender: 'action' }, scopedSlots: { customRender: 'action' },
}, },
{ {
@@ -157,7 +157,7 @@
slots: { title: 'typeTitle' } slots: { title: 'typeTitle' }
}, },
{ {
align:"left", dataIndex: 'priceLimitStr', width: 100, align:"left", dataIndex: 'priceLimitStr', width: 300,
slots: { title: 'priceLimitTitle' } slots: { title: 'priceLimitTitle' }
}, },
{ {

View File

@@ -80,9 +80,12 @@
}, },
priceLimitList: { priceLimitList: {
options: [ options: [
{ 'value': '1', 'text': '屏蔽采购价'}, { 'value': '1', 'text': '屏蔽首页采购价'},
{ 'value': '2', 'text': '屏蔽零售价'}, { 'value': '2', 'text': '屏蔽首页零售价'},
{ 'value': '3', 'text': '屏蔽销售价'} { 'value': '3', 'text': '屏蔽首页销售价'},
{ 'value': '4', 'text': '屏蔽单据采购价'},
{ 'value': '5', 'text': '屏蔽单据零售价'},
{ 'value': '6', 'text': '屏蔽单据销售价'}
], ],
value: '' value: ''
}, },