priceCell.js
607 Bytes
/**
* priceCell.js
*@author dennis
*@createtime 2018/10/26
*@description 价格构成展示
*/
Component({
properties: {//属性值可以在组件使用时指定
promotionFormulaList: {
type: Array,
value:[]
},
damagesDesc: {
type: String,
value:''
}
},
data: {//组件内部数据
productPriceLabel:'商品金额:',
transportPriceLabel: '运费:',
allPriceLabel: '实付金额:',
},
ready() {
},
methods: {
//一个自定义方法
customMethod: function () {
}
}
})