You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
857 B

3 years ago
// index.js
// 获取应用实例
const app = getApp()
Page({
data: {
3 years ago
condition: ['二十四小时','最近七天','最近三十天','自定义'],
toplist: [
{
url: '',
title: '入库数据总量',
num: '0'
}, {
url: '',
title: '微博数据',
num: '0'
}, {
url: '',
title: '其他数据',
num: '0'
},
{
url: '',
title: '短视频数据',
num: '0'
},
{
url: '',
title: '微信数据',
num: '0'
},
{
url: '',
title: 'APP数据',
num: '0'
},
{
url: '',
title: '论坛数据',
num: '0'
},
{
url: '',
title: '新闻数据',
num: '0'
},
],
3 years ago
},
3 years ago
3 years ago
onLoad() {
},
})