Commit f5af7e5b authored by dragondean@qq.com's avatar dragondean@qq.com

满减折扣隐藏货币单位

parent 495d123c
......@@ -362,12 +362,18 @@ export default {
// 满减组合单位列表
combUnitList(){
let arr = []
this.currencyList.forEach(item => {
arr.push({
label: this.$l(item, 'title'),
value: 'fullCurrencyId_' + item.id
})
})
// 满减和折扣暂时不需要货币单位
if(this.form.type != 2 && this.form.type != 4){
this.currencyList.forEach(item => {
arr.push({
label: this.$l(item, 'title'),
value: 'fullCurrencyId_' + item.id
})
})
}
this.unitList.forEach(item => {
arr.push({
label: this.$l(item, 'title'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment