|
@@ -56,6 +56,7 @@ class PublicContent extends Component {
|
|
|
}
|
|
|
|
|
|
componentDidMount() {
|
|
|
+ console.log("-------", this.props.dtails);
|
|
|
let arr = [];
|
|
|
for (let i of this.props.dtails.annexUrl) {
|
|
|
arr.push(i.url.split(resourceAddress).join(""));
|
|
@@ -75,8 +76,8 @@ class PublicContent extends Component {
|
|
|
rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format(
|
|
|
"YYYY-MM-DD HH:mm:ss"
|
|
|
),
|
|
|
- plan: this.props.dtails.plan,
|
|
|
- expectedEffect: this.props.dtails.expectedEffect,
|
|
|
+ plan: this.props.dtails.plan || "",
|
|
|
+ expectedEffect: this.props.dtails.expectedEffect || "",
|
|
|
});
|
|
|
this.getWorkingHoursList();
|
|
|
}
|
|
@@ -153,11 +154,11 @@ class PublicContent extends Component {
|
|
|
Taro.showToast({ title: "请输入公出目标", icon: "none" });
|
|
|
return;
|
|
|
}
|
|
|
- if (!this.state.plan) {
|
|
|
+ if (!this.state.plan && this.props.dtails.type != 2) {
|
|
|
Taro.showToast({ title: "请输入公出计划", icon: "none" });
|
|
|
return;
|
|
|
}
|
|
|
- if (!this.state.expectedEffect) {
|
|
|
+ if (!this.state.expectedEffect && this.props.dtails.type != 2) {
|
|
|
Taro.showToast({ title: "请输入预计效果", icon: "none" });
|
|
|
return;
|
|
|
}
|
|
@@ -171,7 +172,7 @@ class PublicContent extends Component {
|
|
|
let datas;
|
|
|
if (this.props.dtails.type == 0) {
|
|
|
datas = {
|
|
|
- id: this.props.dtails.id,
|
|
|
+ id: this.props.id,
|
|
|
uid: this.props.dtails.uid,
|
|
|
releaseStarts: this.state.rangeStartMinuteVal,
|
|
|
releaseEnds: this.state.rangeEndMinuteVal,
|
|
@@ -184,8 +185,8 @@ class PublicContent extends Component {
|
|
|
annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
|
|
|
duration: this.state.totalDuration,
|
|
|
validDate: JSON.stringify(this.state.validDates),
|
|
|
- // type: this.props.dtails.type,
|
|
|
- type: this.props.type,
|
|
|
+ type: this.props.dtails.type,
|
|
|
+ // type: this.props.type,
|
|
|
};
|
|
|
} else if (this.props.dtails.type == 2) {
|
|
|
datas = {
|
|
@@ -202,8 +203,8 @@ class PublicContent extends Component {
|
|
|
annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
|
|
|
duration: this.state.totalDuration,
|
|
|
validDate: JSON.stringify(this.state.validDates),
|
|
|
- // type: this.props.dtails.type,
|
|
|
- type: this.props.type,
|
|
|
+ type: this.props.dtails.type,
|
|
|
+ //type: this.props.type,
|
|
|
orderNo: this.props.dtails.orderNo,
|
|
|
};
|
|
|
} else {
|
|
@@ -221,8 +222,8 @@ class PublicContent extends Component {
|
|
|
annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
|
|
|
duration: this.state.totalDuration,
|
|
|
validDate: JSON.stringify(this.state.validDates),
|
|
|
- // type: this.props.dtails.type,
|
|
|
- type: this.props.type,
|
|
|
+ type: this.props.dtails.type,
|
|
|
+ //type: this.props.type,
|
|
|
orderNo: this.props.dtails.orderNo,
|
|
|
};
|
|
|
}
|
|
@@ -329,22 +330,20 @@ class PublicContent extends Component {
|
|
|
return (
|
|
|
<View className="publicContent">
|
|
|
<View className="formItem">
|
|
|
- <View className="formName">
|
|
|
- 公出企业:
|
|
|
- </View>
|
|
|
+ <View className="formName">公出企业:</View>
|
|
|
<View className="formValue">{dtails.nickname}</View>
|
|
|
</View>
|
|
|
<View className="formItem">
|
|
|
<View className="formName">公出类型:</View>
|
|
|
<View className="formValue">
|
|
|
- {type == 0
|
|
|
+ {dtails.type == 0
|
|
|
? "业务公出"
|
|
|
- : type == 1
|
|
|
+ : dtails.type == 1
|
|
|
? "技术公出"
|
|
|
- : type == 2 && "行政公出"}
|
|
|
+ : dtails.type == 2 && "行政公出"}
|
|
|
</View>
|
|
|
</View>
|
|
|
- {dtails.contractNo ? (
|
|
|
+ {dtails.contractNo && dtails.type == 1 ? (
|
|
|
<View className="formItem">
|
|
|
<View className="formName">合同编号:</View>
|
|
|
<View className="formValue">{dtails.contractNo}</View>
|
|
@@ -555,12 +554,16 @@ class PublicContent extends Component {
|
|
|
});
|
|
|
}}
|
|
|
maxLength={200}
|
|
|
- placeholder="本次公出目标,谈的思路与步骤?"
|
|
|
+ placeholder={
|
|
|
+ dtails.type == 2
|
|
|
+ ? "详细说明本次公出的内容,预计完成的内容"
|
|
|
+ : "本次公出目标,谈的思路与步骤?"
|
|
|
+ }
|
|
|
/>
|
|
|
</View>
|
|
|
</View>
|
|
|
{/* 公出计划 */}
|
|
|
- {type != 2 && (
|
|
|
+ {dtails.type != 2 && (
|
|
|
<View className="formName">
|
|
|
<Text style={{ color: "red" }}>*公出计划:</Text>
|
|
|
<View
|
|
@@ -582,7 +585,7 @@ class PublicContent extends Component {
|
|
|
</View>
|
|
|
)}
|
|
|
{/* 预计效果 */}
|
|
|
- {type != 2 && (
|
|
|
+ {dtails.type != 2 && (
|
|
|
<View className="formName">
|
|
|
<Text style={{ color: "red" }}>*预计效果:</Text>
|
|
|
<View
|
|
@@ -624,6 +627,16 @@ class PublicContent extends Component {
|
|
|
<View className="operation">
|
|
|
<AtButton
|
|
|
disabled={this.state.loading}
|
|
|
+ type="primary"
|
|
|
+ circle
|
|
|
+ onClick={() => {
|
|
|
+ this.props.onBack();
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ 上一步
|
|
|
+ </AtButton>
|
|
|
+ <AtButton
|
|
|
+ disabled={this.state.loading}
|
|
|
type="secondary"
|
|
|
circle
|
|
|
onClick={() => {
|