product-detail-header.js
979 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
38
39
40
41
42
43
44
// page/subPackage/pages/zeroSell/components/product-detail-header.js
import { formatTimeByDefined } from '../../../../utils/util';
Component({
properties: {
product: {
type: Object,
observer(product) {
const { end_time: endTime, start_time: startTime, status } = product;
let nextActivityTime = '';
if (status === 1 || status >=3 ) {
nextActivityTime = `${formatTimeByDefined(
startTime,
'Y.M.D h:m',
)}-${formatTimeByDefined(endTime, 'h:m')}`;
}
this.setData({
nextActivityTime,
});
},
},
avatars: {
type: Array,
},
shareFlag: {
type: Boolean,
value: false,
observer(value) {
this.setData({ show: value });
},
},
formatTimeList: {
type: Array,
value: [],
},
},
data: {
show: false,
isEnd: false,
nextActivityTime: '',
},
ready() {},
methods: {},
});