mirror of
https://shylinux.com/x/education
synced 2025-04-25 10:08:05 +08:00
10 lines
367 B
JavaScript
10 lines
367 B
JavaScript
Volcanos(chat.ONIMPORT, {
|
|
_init: function(can, msg) {
|
|
can.onimport.myView(can, msg, function(value) { return [
|
|
{view: html.TITLE, list: [value.title||value.name||value.user_name]},
|
|
{view: html.STATUS, list: [value.uid.slice(0, 6), can.onimport.timeView(can, value), value.user_name]},
|
|
{view: html.OUTPUT, list: [value.content||value.info]},
|
|
] })
|
|
},
|
|
})
|