1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 08:48:06 +08:00
volcanos/pane/Footer.js
2020-12-18 20:12:54 +08:00

41 lines
1.5 KiB
JavaScript

Volcanos("onimport", {help: "导入数据", list: [], _init: function(can, msg, list, cb, target) {
can.onmotion.clear(can)
can.onimport._title(can, msg, target)
can.onimport._state(can, msg, target)
typeof cb == "function" && cb(msg)
},
_title: function(can, msg, target) {
can.user.isMobile || can.core.List(msg.result, function(title) {
can.page.Append(can, target, [{view: ["title", "div", title]}])
})
},
_state: function(can, msg, target) {
can.core.List(can.Conf("state"), function(item) {
can.page.Append(can, target, [{view: ["state "+item, "div", can.Conf(item)],
list: [{text: item}, {text: ": "}, {text: [can.Conf(item)||"", "span", item]}],
}])
})
},
keys: function(can, msg, list, cb, target) {
can.page.Select(can, target, "span.keys", function(item) {
item.innerHTML = list[0]||""
})
typeof cb == "function" && cb(msg)
},
ncmd: function(can, msg, list, cb, target) {
can.page.Select(can, target, "span.ncmd", function(item) {
item.innerHTML = can.Conf("ncmd", parseInt(can.Conf("ncmd")||"0")+1+"")+""
})
typeof cb == "function" && cb(msg)
},
})
Volcanos("onaction", {help: "交互数据", list: [], _init: function(can, msg, list, cb, target) {
can.run({}, [], function(msg) {
can.onimport._init(can, msg, list, cb, can._output)
})
},
})
Volcanos("onexport", {help: "导出数据", list: []})