更新时间:2019-12-11 21:41:46
var timeList = [{ name: '第一次', time: '2019-11-01', value: 123456 }, { name: '第二次', time: '2019-11-02', value: 121 } ]; //参数列表 var param = { data: timeList, // 数据 id: 'cxTime', //dom节点ID index: 0, // 选中时间节点 sort: 'just', // 正序just,反序back, 其他表示不排序 sortKey: 'time', //排序的参数key // activeColor: '#26a69a', // 选中颜色 props: ['name', 'time', 'value'], //展示的key then: function(data) { console.log(data); }, //点击事件回调方法 // format: function (key, val) { // console.log(key, val); // return val // }, //数据格式化处理 }