|
@@ -134,7 +134,7 @@ class PublicContent extends Component {
|
|
|
),
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
onSubmit() {
|
|
|
const { isVerify = false } = this.props;
|
|
|
if (!this.state.rangeStartMinuteVal) {
|
|
@@ -164,7 +164,10 @@ class PublicContent extends Component {
|
|
|
return;
|
|
|
}
|
|
|
if (this.state.totalDuration === 0) {
|
|
|
- Taro.showToast({ title: "请选择公出时间,目前设置公出时间不足0.5小时", icon: "none" });
|
|
|
+ Taro.showToast({
|
|
|
+ title: "请选择公出时间,目前设置公出时间不足0.5小时",
|
|
|
+ icon: "none",
|
|
|
+ });
|
|
|
return;
|
|
|
}
|
|
|
this.setState({
|
|
@@ -173,7 +176,7 @@ class PublicContent extends Component {
|
|
|
let datas;
|
|
|
if (this.props.dtails.type == 0) {
|
|
|
datas = {
|
|
|
- id: this.props.id,
|
|
|
+ id: this.props.dtails.id,
|
|
|
uid: this.props.dtails.uid,
|
|
|
releaseStarts: this.state.rangeStartMinuteVal,
|
|
|
releaseEnds: this.state.rangeEndMinuteVal,
|
|
@@ -225,7 +228,7 @@ class PublicContent extends Component {
|
|
|
orderNo: this.props.dtails.orderNo,
|
|
|
};
|
|
|
}
|
|
|
- if(isVerify){
|
|
|
+ if (isVerify) {
|
|
|
datas = { ...datas, ...{ reason: this.props.reason } };
|
|
|
}
|
|
|
updatePublicRelease(datas)
|