限制主播微信价格为大于一的整数

This commit is contained in:
yezian 2023-12-31 20:17:43 +08:00
parent c4f184b90c
commit 88816ce53e
3 changed files with 19 additions and 1 deletions

View File

@ -2,7 +2,7 @@
"expo": { "expo": {
"name": "铁粉空间", "name": "铁粉空间",
"slug": "ironfans", "slug": "ironfans",
"version": "1.1.0", "version": "1.1.1",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/icon.png", "icon": "./assets/icon.png",
"splash": { "splash": {

View File

@ -336,6 +336,15 @@ export default function EditStreamerProfile({ navigation, route }) {
}); });
return; return;
} }
const price = parseInt(values.price, 10);
if (isNaN(price) || price < 1) {
Toast.show({
type: "error",
text1: "请输入有效的微信价格大于等于1的整数",
topOffset: 60,
});
return;
}
if (values.wechat_add_way === "0" && !values.wechat) { if (values.wechat_add_way === "0" && !values.wechat) {
Toast.show({ Toast.show({
type: "error", type: "error",

View File

@ -255,6 +255,15 @@ export default function StreamerVerificationForm({ navigation, route }) {
}); });
return; return;
} }
const price = parseInt(values.price, 10);
if (isNaN(price) || price < 1) {
Toast.show({
type: "error",
text1: "请输入有效的微信价格大于等于1的整数",
topOffset: 60,
});
return;
}
if (values.wechat_add_way === "0" && !values.wechat) { if (values.wechat_add_way === "0" && !values.wechat) {
Toast.show({ Toast.show({
type: "error", type: "error",