From 9bbbf334ac6ae6f8f3362bb44742aaae7b42581b Mon Sep 17 00:00:00 2001 From: wangfuduo Date: Wed, 8 Jul 2026 18:02:11 +0800 Subject: [PATCH] refactor: response --- app/api/service/button.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/service/button.go b/app/api/service/button.go index b2c5dd3..958db23 100644 --- a/app/api/service/button.go +++ b/app/api/service/button.go @@ -16,7 +16,7 @@ func New(param Params) *Button { func (b *Button) CouponButton() []*response.Button { return []*response.Button{ {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}, } }