refactor: response

This commit is contained in:
wangfuduo 2026-07-08 18:02:11 +08:00
parent 5b36a0e24d
commit 9bbbf334ac
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ func New(param Params) *Button {
func (b *Button) CouponButton() []*response.Button { func (b *Button) CouponButton() []*response.Button {
return []*response.Button{ return []*response.Button{
{Url: b.param.Str(config.ServiceVipExpireUrl), Type: config.ButtonInput}, {Url: b.param.Str(config.ServiceVipExpireUrl), Type: config.ButtonInput},
{Text: "提交", Type: config.ButtonClick}, {Text: b.param.Str(config.ServiceCouponSubmitButton), Type: config.ButtonClick},
{Text: b.param.Str(config.ButtonTxtContractCustomer), Type: config.ButtonClick}, {Text: b.param.Str(config.ButtonTxtContractCustomer), Type: config.ButtonClick},
} }
} }