|
@@ -16,6 +16,8 @@ import {
|
|
|
examineRecord,
|
|
|
} from "../../utils/servers/servers";
|
|
|
import InquiryModal from "../../components/common/inquiryModal";
|
|
|
+import ImagePicker from "../../components/common/imagePicker";
|
|
|
+import { resourceAddress } from "../../utils/config";
|
|
|
import "../mybusiness/index";
|
|
|
|
|
|
class Detail extends Component {
|
|
@@ -25,6 +27,7 @@ class Detail extends Component {
|
|
|
super(props);
|
|
|
this.state = {
|
|
|
opinion: "",
|
|
|
+ attachmentUrl: [],
|
|
|
data: {},
|
|
|
}
|
|
|
this.getReleasetDails = this.getReleasetDails.bind(this);
|
|
@@ -41,8 +44,16 @@ class Detail extends Component {
|
|
|
}).then((v) => {
|
|
|
if (v.code === 200) {
|
|
|
if (v.data) {
|
|
|
+ let list = [];
|
|
|
+ console.log("---", v.data.annexUrl)
|
|
|
+ for (let i of (v.data.annexUrl || '').split(',')) {
|
|
|
+ if (i) {
|
|
|
+ list.push({ 'url': resourceAddress + i })
|
|
|
+ }
|
|
|
+ }
|
|
|
this.setState({
|
|
|
- data: v.data
|
|
|
+ data: v.data,
|
|
|
+ attachmentUrl: list,
|
|
|
})
|
|
|
} else {
|
|
|
setTimeout(() => {
|
|
@@ -96,7 +107,7 @@ class Detail extends Component {
|
|
|
|
|
|
|
|
|
render() {
|
|
|
- const { data } = this.state
|
|
|
+ const { data, attachmentUrl } = this.state
|
|
|
return (
|
|
|
<View className="indexPage">
|
|
|
{Object.keys(data).length === 0 ?
|
|
@@ -132,6 +143,14 @@ class Detail extends Component {
|
|
|
累积工时:{data.duration}
|
|
|
</View>
|
|
|
</View>
|
|
|
+ <View className="userName">
|
|
|
+ {console.log("====", attachmentUrl)}
|
|
|
+ {attachmentUrl && attachmentUrl.length > 0 &&
|
|
|
+ <ImagePicker
|
|
|
+ files={attachmentUrl || []}
|
|
|
+ showAddBtn={false}
|
|
|
+ />}
|
|
|
+ </View>
|
|
|
{data.processStatus == 1 && <View style={{ marginTop: "30px" }}>
|
|
|
<AtTextarea
|
|
|
value={this.state.opinion}
|