智慧教务系统 PHP-NiuCloud框架开发
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
746 B

<?php
return [
'discount' => [
'key' => 'discount',
'name' => '下单折扣', // 权益名称
'desc' => '商品购买享受折扣优惠', // 权益说明
'component' => '/src/app/views/member/components/benefits-discount.vue',
"content" => [
'admin' => function($config) {
return "下单享受{$config['discount']}折折扣";
},
'member_level' => function($config) {
return [
'title' => "可享{$config['discount']}",
'desc' => '购物折扣',
'icon' => '/static/resource/images/member/benefits/benefits_discount.png'
];
}
]
]
];