From ee217f391519b476d991390385fa256de6ab74d8 Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Wed, 21 Feb 2024 13:52:41 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AA=20optimize:=20=E5=95=86=E6=88=B7?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=20=E5=81=8F=E7=A7=BB=E9=87=8F=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E6=9B=B4=E6=94=B9=E4=B8=BASM4=E7=A7=98=E9=92=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/distributor/merchant/index.jsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/distributor/merchant/index.jsx b/src/pages/distributor/merchant/index.jsx index b9d63df6..121e4edd 100644 --- a/src/pages/distributor/merchant/index.jsx +++ b/src/pages/distributor/merchant/index.jsx @@ -31,7 +31,7 @@ export default function Merchant() { app_id: [{ type: "required", message: "请输入应用ID" }], pos_id: [{ type: "required", message: "请输入平台ID" }], store_id: [{ type: "required", message: "请输入店铺ID" }], - secret_key: [{ type: "required", message: "请输入偏移量" }], + secret_key: [{ type: "required", message: "请输入SM4秘钥" }], merchant_public_key: [{ type: "required", message: "请输入商户公钥" }], notify_url: [ { type: "required", message: "请输入商户回调通知网关地址" }, @@ -147,15 +147,14 @@ export default function Merchant() { ) : null} {state.api_mode === 2 ? ( - + setState({ ...state, secret_key: value })} onClearItem={() => setState({ ...state, secret_key: "" })} countShow={false} value={state.secret_key} - placeholder={"请输入偏移量"} + placeholder={"请输入SM4秘钥"} labelWidth={"0px"} - maxLength={20} height={"36px"} width={"520px"} alignment={"left"}