mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-22 02:58:10 +00:00
23 lines
738 B
PHP
23 lines
738 B
PHP
<?php
|
|
|
|
return [
|
|
'shop_free_shipping' => [
|
|
'key' => 'shop_free_shipping',
|
|
'name' => '包邮', // 权益名称
|
|
'desc' => '商品购买时可享受免邮服务', // 权益说明
|
|
'component' => '/src/addon/shop/views/member/components/benefits-free-shipping.vue',
|
|
"content" => [
|
|
'admin' => function($config) {
|
|
return '下单享受包邮';
|
|
},
|
|
'member_level' => function($config) {
|
|
return [
|
|
'title' => '商品包邮',
|
|
'desc' => '下单免运费',
|
|
'icon' => '/static/resource/images/member/benefits/benefits_pinkage.png'
|
|
];
|
|
}
|
|
]
|
|
]
|
|
];
|