添加价格审核,解决视频自动播放
This commit is contained in:
parent
79892672ce
commit
3db34b9ad2
|
@ -498,6 +498,7 @@ export default function CompleteStreamerInformation() {
|
||||||
const url = URL.createObjectURL(file);
|
const url = URL.createObjectURL(file);
|
||||||
videoD.src = url;
|
videoD.src = url;
|
||||||
videoD.addEventListener("loadeddata", function () {
|
videoD.addEventListener("loadeddata", function () {
|
||||||
|
videoD.pause();
|
||||||
videoD.currentTime = 1;
|
videoD.currentTime = 1;
|
||||||
});
|
});
|
||||||
videoD.addEventListener("seeked", function () {
|
videoD.addEventListener("seeked", function () {
|
||||||
|
|
|
@ -56,6 +56,44 @@ export default function CreateImagePost() {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
//保存付费设置
|
||||||
|
const handleSavePaymentSetting = ({ price, imageVisibleRange }) => {
|
||||||
|
const intPrice = parseFloat(price);
|
||||||
|
if (intPrice < 0) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的价格",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (intPrice > 0 && intPrice * 100 < 100) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的价格",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (intPrice * 100 > 300000) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的价格",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (imageVisibleRange < 0 || imageVisibleRange > 3) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的可预览图片张数",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setPriceEdit(false);
|
||||||
|
setFormData((old) => ({ ...old, ...priceEditData }));
|
||||||
|
};
|
||||||
//发布内容
|
//发布内容
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
if (formData.content == "") {
|
if (formData.content == "") {
|
||||||
|
@ -387,8 +425,7 @@ export default function CreateImagePost() {
|
||||||
<p
|
<p
|
||||||
className="pt-4 text-center border-t border-[#ffffff40]"
|
className="pt-4 text-center border-t border-[#ffffff40]"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setPriceEdit(false);
|
handleSavePaymentSetting(priceEditData);
|
||||||
setFormData((old) => ({ ...old, ...priceEditData }));
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
保存
|
保存
|
||||||
|
|
|
@ -55,6 +55,36 @@ export default function CreateVideoPost() {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
//保存付费设置
|
||||||
|
const handleSavePaymentSetting = ({ price }) => {
|
||||||
|
const intPrice = parseFloat(price);
|
||||||
|
if (intPrice < 0) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的价格",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (intPrice > 0 && intPrice * 100 < 100) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的价格",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (intPrice * 100 > 300000) {
|
||||||
|
Toast.show({
|
||||||
|
icon: "fail",
|
||||||
|
content: "请输入正确区间的价格",
|
||||||
|
position: "top",
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setPriceEdit(false);
|
||||||
|
setFormData((old) => ({ ...old, ...priceEditData }));
|
||||||
|
};
|
||||||
//发布内容
|
//发布内容
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
if (formData.content == "") {
|
if (formData.content == "") {
|
||||||
|
@ -350,8 +380,7 @@ export default function CreateVideoPost() {
|
||||||
<p
|
<p
|
||||||
className="pt-4 text-center border-t border-[#ffffff40]"
|
className="pt-4 text-center border-t border-[#ffffff40]"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setPriceEdit(false);
|
handleSavePaymentSetting(priceEditData);
|
||||||
setFormData((old) => ({ ...old, ...priceEditData }));
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
保存
|
保存
|
||||||
|
|
|
@ -195,6 +195,7 @@ export default function EditStreamerMedia() {
|
||||||
const url = URL.createObjectURL(file);
|
const url = URL.createObjectURL(file);
|
||||||
videoD.src = url;
|
videoD.src = url;
|
||||||
videoD.addEventListener("loadeddata", function () {
|
videoD.addEventListener("loadeddata", function () {
|
||||||
|
videoD.pause();
|
||||||
videoD.currentTime = 1;
|
videoD.currentTime = 1;
|
||||||
});
|
});
|
||||||
videoD.addEventListener("seeked", function () {
|
videoD.addEventListener("seeked", function () {
|
||||||
|
|
|
@ -104,6 +104,7 @@ export default function UploadImgs({
|
||||||
const url = URL.createObjectURL(file);
|
const url = URL.createObjectURL(file);
|
||||||
videoD.src = url;
|
videoD.src = url;
|
||||||
videoD.addEventListener("loadeddata", function () {
|
videoD.addEventListener("loadeddata", function () {
|
||||||
|
videoD.pause();
|
||||||
videoD.currentTime = 1;
|
videoD.currentTime = 1;
|
||||||
});
|
});
|
||||||
videoD.addEventListener("seeked", function () {
|
videoD.addEventListener("seeked", function () {
|
||||||
|
|
Loading…
Reference in New Issue