mirror of
https://shylinux.com/x/community
synced 2025-04-25 17:48:06 +08:00
12 lines
485 B
JavaScript
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}]},
|
|
]
|
|
})
|
|
},
|
|
}) |