Merge pull request '修复密码输入问题' (#5) from version_1.1 into main

Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/tiefen_space_h5/pulls/5
This commit is contained in:
yezian 2024-11-14 20:05:55 +08:00
commit 695360d593
4 changed files with 10 additions and 3 deletions

View File

@ -416,6 +416,7 @@ function Login({ handleLogin }) {
placeholder="请输入密码"
name="password"
type="password"
maxLength={15}
onChange={(value) => {
setLoginInfo({ ...loginInfo, password: value });
}}

View File

@ -169,7 +169,6 @@ export default function SpaceRefund() {
placeholder="请输入联系方式"
onChange={(value) => setContact(value)}
value={contact}
maxLength={20}
className="bg-[#FFFFFF1A] text-white rounded-2xl mt-2 p-2"
style={{
"--placeholder-color": "#FFFFFF80",

View File

@ -15,6 +15,7 @@ export default function OwnInput({
className,
inputClassName = "",
id,
maxLength = 999,
}) {
return (
<div className={`flex flex-1 relative ${className}`}>
@ -24,7 +25,7 @@ export default function OwnInput({
disabled={disabled}
name={name}
type={type}
maxLength={11}
maxLength={maxLength}
onChange={(e) => onChange(e.target?.value)}
value={value}
className={`w-full placeholder:text-[#FFFFFF80] text-[16px] focus:text-[16px] ${inputClassName}`}

View File

@ -1,3 +1,4 @@
import { Toast } from "antd-mobile";
//格式化时间戳
export function formatDeadline(timestamp) {
const date = new Date(timestamp * 1000); // 时间戳以秒为单位需要乘以1000转换成毫秒
@ -144,7 +145,12 @@ export function getVideoBase64(url) {
// 监听视频事件,在发生错误时 Promise 会 reject
video.addEventListener("error", function () {
reject(new Error("视频加载错误"));
// reject(new Error("视频加载错误"));
Toast.show({
icon: "fail",
content: "请更换浏览器IOS用户建议使用Safari。",
position: "top",
});
// 清除内存
canvas.remove();
video.remove();