mirror of
https://shylinux.com/x/operation
synced 2025-07-01 13:14:43 +08:00
12 lines
474 B
JavaScript
12 lines
474 B
JavaScript
Volcanos(chat.ONIMPORT, {
|
|
_init: function(can, msg) {
|
|
can.onimport.myViewTabs(can, "case_status", 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),
|
|
] })
|
|
},
|
|
}) |