Files
FirstUI-vue/pages/component/expand/table/tableData.js
2023-08-17 21:28:49 +08:00

161 lines
3.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 18 6 14 0 72 5 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任。
let itemList = [{
"date": "2022-09-02",
"ranking": 5,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2022-09-01",
"ranking": 3,
"province": "北京",
"city": "北京市",
"address": "北京市朝阳区罗马花园b座903a室"
}, {
"date": "2022-09-03",
"ranking": 4,
"province": "广东",
"city": "深圳市",
"address": "深圳市福田区 街道 皇兴大厦"
}, {
"date": "2022-09-04",
"ranking": 2,
"province": "广东",
"city": "广州市",
"address": "广州市天河南街道体育西路183号"
}, {
"date": "2022-09-05",
"ranking": 1,
"province": "安徽",
"city": "合肥市",
"address": "安徽省合肥市包河区马鞍山路99号"
}, {
"date": "2022-09-06",
"ranking": 6,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2022-09-07",
"ranking": 7,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2022-09-08",
"ranking": 8,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2022-09-09",
"ranking": 11,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2022-09-10",
"ranking": 10,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2022-09-11",
"ranking": 9,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2022-09-12",
"ranking": 12,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2022-09-13",
"ranking": 13,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2022-09-14",
"ranking": 16,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2022-09-15",
"ranking": 15,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2022-09-16",
"ranking": 14,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2022-08-01",
"ranking": 19,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2022-08-02",
"ranking": 18,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1517 弄"
}, {
"date": "2022-08-03",
"ranking":17,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1519 弄"
}, {
"date": "2022-08-04",
"ranking":20,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1516 弄"
}, {
"date": "2022-08-05",
"ranking": 22,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1518 弄"
}, {
"date": "2022-08-06",
"ranking": 21,
"province": "上海",
"city": "普陀区",
"address": "上海市普陀区金沙江路 1517 弄"
}]
let table = [{
"name": "FirstUI 1",
"province": "上海",
"city": "普陀区",
//禁用选择
'is_disabled':true
}, {
"name": "FirstUI 2",
"province": "上海",
"city": "浦东新区",
//默认选中
'is_selected':true
}, {
"name": "FirstUI 3",
"province": "上海",
"city": "静安区"
}, {
"name": "FirstUI 4",
"province": "上海",
"city": "宝山区"
}]
export default {
table,
itemList
}