限制主播微信价格为大于一的整数
This commit is contained in:
parent
c4f184b90c
commit
88816ce53e
2
app.json
2
app.json
|
@ -2,7 +2,7 @@
|
|||
"expo": {
|
||||
"name": "铁粉空间",
|
||||
"slug": "ironfans",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"orientation": "portrait",
|
||||
"icon": "./assets/icon.png",
|
||||
"splash": {
|
||||
|
|
|
@ -336,6 +336,15 @@ export default function EditStreamerProfile({ navigation, route }) {
|
|||
});
|
||||
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) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
|
|
|
@ -255,6 +255,15 @@ export default function StreamerVerificationForm({ navigation, route }) {
|
|||
});
|
||||
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) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
|
|
Loading…
Reference in New Issue