6 lines
409 B
Plaintext
6 lines
409 B
Plaintext
# voucher_rule_update.dspy — 规则更新
|
|
r = await update_voucher_rule(request, params_kw)
|
|
if r.get('success'):
|
|
return {"widgettype": "Message", "options": {"title": "Success", "message": r.get('message') or 'ok', "timeout": 3, "cwidth": 16, "cheight": 9}}
|
|
return {"widgettype": "Error", "options": {"title": "Error", "message": r.get('message') or 'failed', "timeout": 3, "cwidth": 16, "cheight": 9}}
|