限制主播微信价格为大于一的整数
This commit is contained in:
parent
c4f184b90c
commit
88816ce53e
2
app.json
2
app.json
|
@ -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": {
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue