2024-08-11 02:04:22 +08:00

19 lines
653 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.STATUS, list:[
{text: "过号量: "}, {text: value.expire||"0"},
{text: "完成量: "}, {text: value.finish||"0"},
]},
{view: html.STATUS, list:[{text: "开始时间:"}, {text: value.begin_time}]},
{view: html.STATUS, list:[{text: "结束时间:"}, {text: value.end_time}]},
]
})
},
})