mirror of
https://shylinux.com/x/operation
synced 2025-07-03 14:01:20 +08:00
12 lines
455 B
JavaScript
12 lines
455 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, "case_status")]},
|
|
{view: html.STATUS, list: [
|
|
(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),
|
|
] })
|
|
},
|
|
}) |