修改添加微信判断方式

This commit is contained in:
al 2024-11-14 18:56:24 +08:00
parent 25f5b280d2
commit 3c604eb72a
3 changed files with 4 additions and 6 deletions

View File

@ -224,7 +224,7 @@ export default function EditHome() {
});
return;
}
if (values.wechatAddWay === "0" && !values.wechat) {
if (values.wechatAddWay === 0 && values.wechat.trim() === "") {
Toast.show({
icon: "fail",
content: "请填写微信号",
@ -624,6 +624,7 @@ export default function EditHome() {
<OwnInput
id="addWeChatPrice"
type="number"
fontSize="22"
value={formData.wechatPrice}
onChange={(value) =>
setFormData((old) => ({ ...old, wechatPrice: value }))
@ -650,7 +651,6 @@ export default function EditHome() {
</div>
<div className="mt-2 px-4 py-3 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center">
<TextArea
style={{ "--font-size": `16px` }}
value={formData.info}
placeholder="点此输入,文案将在“主页”展示"
onChange={(value) =>
@ -669,7 +669,6 @@ export default function EditHome() {
</div>
<div className="mt-2 px-4 py-3 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center">
<TextArea
style={{ "--font-size": `16px` }}
value={formData.autoResponse}
placeholder="文案将自动发送给点开私信的用户"
onChange={(value) =>

View File

@ -361,7 +361,7 @@ export default function CompleteStreamerInformation() {
});
return;
}
if (wechatAddWay === 0 && !wechat) {
if (wechatAddWay === 0 && wechat.trim() == "") {
Toast.show({
icon: "fail",
content: "请填写微信号",

View File

@ -27,8 +27,7 @@ export default function OwnInput({
maxLength={11}
onChange={(e) => onChange(e.target?.value)}
value={value}
className={`w-full placeholder:text-[#FFFFFF80] ${inputClassName}`}
style={{ fontSize: `16px!important` }}
className={`w-full placeholder:text-[#FFFFFF80] text-[16px] focus:text-[16px] ${inputClassName}`}
/>
{clearable && value != "" && (
<div className="w-4 h-4 absolute right-2 top-[2px] flex justify-center items-center bg-[#ffffff33] p-1 rounded-full">