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

满减折扣隐藏货币单位

parent 495d123c
...@@ -362,12 +362,18 @@ export default { ...@@ -362,12 +362,18 @@ export default {
// 满减组合单位列表 // 满减组合单位列表
combUnitList(){ combUnitList(){
let arr = [] let arr = []
this.currencyList.forEach(item => {
arr.push({ // 满减和折扣暂时不需要货币单位
label: this.$l(item, 'title'), if(this.form.type != 2 && this.form.type != 4){
value: 'fullCurrencyId_' + item.id this.currencyList.forEach(item => {
}) arr.push({
}) label: this.$l(item, 'title'),
value: 'fullCurrencyId_' + item.id
})
})
}
this.unitList.forEach(item => { this.unitList.forEach(item => {
arr.push({ arr.push({
label: this.$l(item, 'title'), 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