dev01 hai 1 ano
pai
achega
aef888b93d

+ 0 - 1
src/components/common/imagePicker/index.jsx

@@ -72,7 +72,6 @@ class ImagePicker extends Component {
             }
           },
           fail: function (err) {
-            //console.log(err);
             Taro.showToast({ title: '系统错误,请稍后重试', icon: 'none' });
           },
           complete: function (v) {

+ 21 - 2
src/pages/detail/index.jsx

@@ -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}

+ 3 - 3
src/pages/mybusiness/myList.jsx

@@ -60,9 +60,9 @@ class MyList extends Component {
                   <View className="releaseStarts">
                     <View
                       className="punchClock"
-                      onClick={(e) => {
-                        e.stopPropagation();
-                      }}
+                      // onClick={(e) => {
+                      //   e.stopPropagation();
+                      // }}
                     >
                       去审核
                     </View>

+ 1 - 1
src/utils/config.js

@@ -1,5 +1,5 @@
 // 本地
-export const resourceAddress = 'http://172.16.0.255:3000/upload;'
+export const resourceAddress = '172.16.1.187/dev-api'
 // 生产
 // export const resourceAddress = 'https://s.jishutao.com/upload';
 // 测试