ming před 6 měsíci
rodič
revize
9a8f7d4f52

+ 2 - 2
src/pages/business/common/projectMange/list/index.vue

@@ -83,12 +83,12 @@
           </view>
           <view class="content-area-row_wrap menu-item">
             <view class="content-area-row_wrap-view"> 负责人: {{ proxy.$common.mapping("nickName", "userId", base.projectHead, userDate) }} </view>
-            <view class="content-area-row_wrap-view">
+            <!-- <view class="content-area-row_wrap-view">
               状态:
               <span :style="{ color: proxy.$common.mapping('elTagClass', 'value', base.projectStatus, project_status) }">{{
                 proxy.$common.mapping("label", "value", base.projectStatus, project_status)
               }}</span>
-            </view>
+            </view> -->
             <view class="content-area-row_wrap-view">
               类型:
               {{ proxy.$common.mapping("label", "value", base.projectStatus, project_type) }}

+ 2 - 2
src/pages/business/common/projectMange/record/details.vue

@@ -62,7 +62,7 @@
         </view>
         <view class="content-area-center mb10">
           <view class="content-area-center-top">图片</view>
-          <view class="imageBox" v-if="JSON.parse(item.reportImage).length>0">
+          <view class="imageBox" v-if="JSON.parse(item.reportImage)&&JSON.parse(item.reportImage).length>0">
             <image class="image m5" style="width: 50px" mode="widthFix" v-for="(a, index) in JSON.parse(item.reportImage)" :key="index" :src="a.url" @click="previewImage(index)" />
           </view>
           <view class="imageBox" v-else>无</view>
@@ -70,7 +70,7 @@
 
         <view class="content-area-center mb10">
           <view class="content-area-center-top">附件 </view>
-          <view v-if="JSON.parse(item.reportFile).length>0">
+          <view v-if="JSON.parse(item.reportFile)&&JSON.parse(item.reportFile).length>0">
             <uni-link v-for="(file, index) in JSON.parse(item.reportFile)" :key="index" :href="file.url" text="file.url" style="color: rgba(0, 0, 0, 0.7)">{{ file.name }}</uni-link>
           </view>
           <view v-else>无</view>