priceCell.js
674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* priceCell.js
*@author dennis
*@createtime 2018/10/26
*@description 价格构成展示
*/
Component({
properties: {//属性值可以在组件使用时指定
promotionFormulaList: {
type: Array,
value:[]
},
damagesDesc: {
type: String,
value:''
},
isStore:{
type:Boolean,
value:false
}
},
data: {//组件内部数据
productPriceLabel:'商品金额:',
transportPriceLabel: '运费:',
allPriceLabel: '实付金额:',
},
ready() {
},
methods: {
//一个自定义方法
customMethod: function () {
}
}
})