jingganjiaoyu 1e9a95ae42 opt some
2024-08-09 00:04:04 +08:00

12 lines
485 B
JavaScript

Volcanos(chat.ONIMPORT, {
_init: function(can, msg) {
can.onimport.itemcards(can, msg, function(value) {
return [
{view: html.TITLE, list:[{text: value.reception_name}]},
{view: html.STATUS, list:[{text: "放号量: "}, {text: value.amount}, {text: "预约量: "}, {text: value.count||"0"}]},
{view: html.TITLE, list:[{text: "开始时间:"}, {text: value.begin_time}]},
{view: html.TITLE, list:[{text: "结束时间:"}, {text: value.end_time}]},
]
})
},
})