mirror of
https://shylinux.com/x/enterprise
synced 2025-04-25 17:18:06 +08:00
11 lines
591 B
JavaScript
11 lines
591 B
JavaScript
Volcanos(chat.ONIMPORT, {
|
|
_init: function(can, msg) {
|
|
can.onimport.shareTitle(can, msg, "uid", "amount")
|
|
can.onimport.itemcards(can, msg, function(value) { return [
|
|
{view: html.TITLE, list: [value.user_name, can.onimport.textView(can, value, "refund_status", mdb.STATUS)]},
|
|
{view: html.STATUS, list: [value.uid.slice(0, 6), can.base.TimeTrim(value.created_at)]},
|
|
{view: html.STATUS, list: [value.company_name, ": ", value.open_id]},
|
|
{view: html.STATUS, list: ["订单:", value.order_uid.slice(0, 6), "金额:", value.amount||"0", "数量:", value.total||"0"]},
|
|
] })
|
|
},
|
|
}) |