mirror of
https://shylinux.com/x/enterprise
synced 2025-04-25 17:18:06 +08:00
9 lines
424 B
JavaScript
9 lines
424 B
JavaScript
Volcanos(chat.ONIMPORT, {
|
|
_init: function(can, msg) {
|
|
can.onimport.itemcards(can, msg, function(value) { return [
|
|
{view: html.TITLE, list: [value.name, can.onimport.textView(can, value, "product_type", mdb.TYPE)]},
|
|
{view: html.STATUS, list: ["单价:", value.price, "元", "库存:", value.stock, value.unit, value.shop_name||"", value.warehouse_name||""]},
|
|
{view: html.OUTPUT, list: [value.info]},
|
|
] })
|
|
},
|
|
}) |