mirror of
https://shylinux.com/x/operation
synced 2025-07-01 13:14:43 +08:00
13 lines
493 B
JavaScript
13 lines
493 B
JavaScript
Volcanos(chat.ONIMPORT, {
|
|
_init: function(can, msg) {
|
|
can.onimport.myView(can, msg, function(value) { return [
|
|
{view: html.TITLE, list: [value.title, can.onimport.textView(can, value, "status")]},
|
|
{view: html.STATUS, list: [
|
|
// can.onimport.beginTime(can, value),
|
|
(value.process_time||value.begin_time).split(" ")[0],
|
|
can.onimport.unitView(can, value, "plan_title"),
|
|
]},
|
|
{view: html.OUTPUT, list: [value.content]}, can.onimport.titleAction(can, value),
|
|
] })
|
|
},
|
|
}) |