Browse Source

bug修复

ming 3 years ago
parent
commit
b38cb0ead4

+ 6 - 6
pages/index/index.vue

@@ -193,15 +193,15 @@
 
 		onLoad: function(option) {
 		
-			if (option.op) {
-				this.getData();
+			// if (option.op) {
+			// 	this.getData();
 			
-			} else {
-				this.init()
-			}
+			// } else {
+			// 	this.init()
+			// }
 			
 			
-			// this.getData();
+			this.getData();
 
 			this.hackReset = false;
 			this.$nextTick(() => {

+ 1 - 1
pages/processList/processList.vue

@@ -111,7 +111,7 @@
 									<text class="icon iconfont margin-left-xs margin-right-xs">&#xe629;</text>
 								</view>
 								<view style="color:#4274E7" v-if="item.handling_status==3"
-									@tap="goProcessedDetail(item)">自动
+									@tap="goProcessedDetail(item)">自动
 									<text class="icon iconfont margin-left-xs margin-right-xs">&#xe629;</text>
 								</view>
 								<view style="color:#999999" v-if="item.handling_status==4"

+ 7 - 1
pages/siteArchive/archiveDetail/archiveDetail.vue

@@ -61,14 +61,20 @@
 				</view>
 
 				<view class="form-item  flex justify-between" v-for="(item,index) in problem_two">
-					<view class="title" style="width:70%">{{item.name}}:</view>
+					<view class="title" style="width:60%">{{item.name}}:</view>
 					<view class="margin-right flex align-center">
 						<label class="" v-if="item.where==0">
 							<radio disabled="true" value="否" checked /><text>否</text>
 						</label>
+						
 						<label class="" v-if="item.where==2">
 							<radio disabled="true" value="其他" checked /><text>其他</text>
+							
 						</label>
+						<view  v-if="item.where==2&&item.describe" style="width:90rpx;margin-left:10rpx;color:#8d8080;font-size:28rpx;line-height:32rpx"> 
+						{{  item.describe}}
+						</view>
+						
 					</view>
 				</view>