wang_xy 9 月之前
父節點
當前提交
2bb4af5ca5
共有 3 個文件被更改,包括 5 次插入5 次删除
  1. 2 2
      pages/statistics/historyDetails.vue
  2. 2 2
      pages/statistics/statistics.vue
  3. 1 1
      utils/request.js

+ 2 - 2
pages/statistics/historyDetails.vue

@@ -141,12 +141,12 @@
 							style="position: relative;">
 							<view
 								v-if="item.substring(item.length - 3) == 'png' || item.substring(item.length - 3) == 'jpg'||item.substring(item.length-4)=='jpeg' ">
-								<image :src="item" mode="" style="width: 100rpx; height: 100rpx; margin: 0 12rpx;"
+								<image :src="item" mode="" style="width: 200rpx; height: 200rpx; margin: 0 12rpx;"
 									@click="showPhoto(index,value.zEngiineeringPhotoBoList)">
 								</image>
 							</view>
 							<view v-else>
-								<video :src="item" style="width: 100rpx; height: 100rpx; margin: 0 12rpx;"></video>
+								<video :src="item" style="width: 200rpx; height: 200rpx; margin: 0 12rpx;"></video>
 							</view>
 							<view @click="remove(index,key)"
 								style="position: absolute; top: 0; right: 14rpx; border-radius: 50%;">

+ 2 - 2
pages/statistics/statistics.vue

@@ -934,8 +934,8 @@
 							</view>
 							<view class="font-twenty-eight gray" v-for="(state,stateIndex) in item.nodeReViewStateList"
 								:key="stateIndex" v-if="state.Type!='开栓'">
-								{{state.Type}}-{{state.state == 1 ? '审核通过': (state.content == '暂未审核' ? '暂未审核':'审核未通过')}}
-								<view v-if="state.content != '暂未审核'">原因:{{state.content}}</view>
+								{{state.Type}}-{{state.state == 1 ? '审核通过': state.state == 0 ? '审核未通过': state.state == 3 ? '前后照片不一致' : '暂未审核'}}
+								<view v-if="state.state != 1">原因:{{state.content}}</view>
 							</view>
 						</view>
 						<view v-if="EngineeringValue=='开栓'">

+ 1 - 1
utils/request.js

@@ -4,7 +4,7 @@ import { getToken } from '@/utils/auth'
 import errorCode from '@/utils/errorCode'
 import { toast, showConfirm, tansParams } from '@/utils/common'
 
-let timeout = 10000
+let timeout = 60000
 const baseUrl = config.baseUrl
 
 const request = config => {