2020-11-20 16:36:03 +08:00
|
|
|
|
Tea.context(function () {
|
|
|
|
|
|
this.$delay(function () {
|
|
|
|
|
|
teaweb.datepicker("day-from-picker")
|
|
|
|
|
|
teaweb.datepicker("day-to-picker")
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
this.logs.forEach(function (v) {
|
|
|
|
|
|
v.moreVisible = false
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
this.showMore = function (log) {
|
|
|
|
|
|
log.moreVisible = !log.moreVisible
|
|
|
|
|
|
}
|
2020-11-20 17:08:10 +08:00
|
|
|
|
|
|
|
|
|
|
this.exportExcel = function () {
|
|
|
|
|
|
let that = this
|
|
|
|
|
|
teaweb.confirm("确定要将当前列表导出到Excel吗?", function () {
|
2020-12-23 10:42:41 +08:00
|
|
|
|
window.location = "/log/exportExcel?dayFrom=" + that.dayFrom + "&dayTo=" + that.dayTo + "&keyword=" + that.keyword + "&userType=" + that.userType
|
2020-11-20 17:08:10 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2020-12-02 20:31:42 +08:00
|
|
|
|
|
|
|
|
|
|
this.deleteLog = function (logId) {
|
|
|
|
|
|
let that = this
|
|
|
|
|
|
teaweb.confirm("确定要删除此日志吗?", function () {
|
|
|
|
|
|
that.$post(".delete")
|
|
|
|
|
|
.params({
|
|
|
|
|
|
logId: logId
|
|
|
|
|
|
})
|
|
|
|
|
|
.refresh()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2020-11-20 16:36:03 +08:00
|
|
|
|
})
|