|
|
@ -207,7 +207,15 @@ |
|
|
|
// } |
|
|
|
|
|
|
|
// return time; |
|
|
|
var time;
time=this.$index.formatyymmddhhmmss(parseInt(time * 1000))
if (this.type === '1mon' ) {
time = time.split(' ')[0];
time=time.substring(time.indexOf('/')+1,time.length)
} else if (this.type === '1day' || this.type === '1week') {
time = time.split(' ')[0];
}
return time; |
|
|
|
var time; |
|
|
|
time = this.$index.formatyymmddhhmmss(parseInt(time * 1000)) |
|
|
|
if (this.type === '1mon') { |
|
|
|
time = time.split(' ')[0]; |
|
|
|
time = time.substring(time.indexOf('/') + 1, time.length) |
|
|
|
} else if (this.type === '1day' || this.type === '1week') { |
|
|
|
time = time.split(' ')[0]; |
|
|
|
} |
|
|
|
return time; |
|
|
|
}, |
|
|
|
getBboList() { |
|
|
|
const bboList = this.$api.bboList({ |
|
|
@ -852,6 +860,7 @@ |
|
|
|
flex: 1; |
|
|
|
overflow: hidden; |
|
|
|
height: 450rpx; |
|
|
|
margin-bottom: 132rpx; |
|
|
|
|
|
|
|
.title { |
|
|
|
display: flex; |
|
|
@ -932,7 +941,11 @@ |
|
|
|
|
|
|
|
.btn { |
|
|
|
display: flex; |
|
|
|
margin: 96rpx 32rpx; |
|
|
|
z-index: 999; |
|
|
|
position: fixed; |
|
|
|
bottom: 16rpx; |
|
|
|
left: 2%; |
|
|
|
width: 96%; |
|
|
|
|
|
|
|
.button { |
|
|
|
flex: 1; |
|
|
|