This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-06-23 21:49:14 +08:00
parent 1e699df15a
commit 5b5ed077f6
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,4 @@
$output table.content.detail td:first-child { display:none; }
$output table.content.detail tr.title td:last-child { font-size:18px; }
$output table.content.detail tr.action td:last-child { text-align:right !important; }
$input tr.content div.item.content textarea { height:320px; }

View File

@ -0,0 +1,8 @@
Volcanos(chat.ONIMPORT, {
_init: function(can, msg) {
can.onimport.myView(can, msg, function(value) { return [
{view: html.TITLE, list: [value.title, can.onimport.titleAction(can, value)]}, can.onimport.metaView(can, value),
{view: html.OUTPUT, list: [value.content]},
] })
},
})