- json: id加入exclouded和editexclouded(不显示不输入) - 新增 api/promo_code_qr.dspy:为选中促销码生成二维码 - 修改 promote/index.dspy:支持code参数,未登录引导登录/注册 - toolbar添加'生成二维码'按钮,选中行后弹窗显示二维码
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"tblname": "discount_promo_code",
|
|
"alias": "discount_promo_code_list",
|
|
"title": "促销码",
|
|
"params": {
|
|
"browserfields": {
|
|
"exclouded": ["id"],
|
|
"marketing_id": {
|
|
"title": "营销方案",
|
|
"width": 150
|
|
},
|
|
"code_type": {
|
|
"title": "类型",
|
|
"width": 80
|
|
},
|
|
"status": {
|
|
"title": "状态",
|
|
"width": 80
|
|
},
|
|
"created_at": {
|
|
"title": "生成时间",
|
|
"width": 160
|
|
}
|
|
},
|
|
"editexclouded": [
|
|
"id",
|
|
"resellerid",
|
|
"sale_id",
|
|
"created_at"
|
|
],
|
|
"toolbar": {
|
|
"tools": [
|
|
{
|
|
"name": "generate_qr",
|
|
"label": "生成二维码",
|
|
"selected_row": true
|
|
}
|
|
]
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "generate_qr",
|
|
"actiontype": "urlwidget",
|
|
"target": "PopupWindow",
|
|
"popup_options": {
|
|
"title": "促销码二维码",
|
|
"cwidth": 18,
|
|
"cheight": 22
|
|
},
|
|
"options": {
|
|
"url": "{{entire_url('../api/promo_code_qr.dspy')}}?id=${id}$"
|
|
}
|
|
}
|
|
],
|
|
"editable": {
|
|
"new_data_url": "{{entire_url('../api/promo_code_create.dspy')}}",
|
|
"update_data_url": "{{entire_url('../api/promo_code_update.dspy')}}",
|
|
"delete_data_url": "{{entire_url('../api/promo_code_delete.dspy')}}"
|
|
},
|
|
"logined_userorgid": "resellerid"
|
|
}
|
|
}
|