shish 1 год назад
Родитель
Сommit
68ce5dc2c1
1 измененных файлов с 14 добавлено и 11 удалено
  1. 14 11
      hdApp/src/admin/ll/eventDetail.vue

+ 14 - 11
hdApp/src/admin/ll/eventDetail.vue

@@ -3,6 +3,9 @@
 		<view class="info-content_box">
 			<view class="title">
 				信息
+				<button class="admin-button-com bule" style="float:right;font-weight:normal;" @click="">添加手机</button>
+				<button class="admin-button-com bule" style="float:right;font-weight:normal;margin-right:8upx;" @click="">添加微信</button>
+				<button class="admin-button-com bule" style="float:right;font-weight:normal;margin-right:8upx;" @click="">添加身份证</button>
 			</view>
 			<view class="bills-info_box content-box">
 				<view class="order-info_box">
@@ -18,16 +21,10 @@
 					<view>{{ eventInfo.no }}</view>
 				</view>
 				<view class="order-info_box">
-					<view>失信次数:</view>
-					<view>{{ eventInfo.breakNum }}</view>
-				</view>
-				<view class="order-info_box">
-					<view>失信金额:</view>
-					<view>{{ eventInfo.breakAmount }}</view>
-				</view>
-				<view class="order-info_box">
-					<view>最近失信:</view>
-					<view>{{ eventInfo.lastDate }}</view>
+					<view>失信证据:</view>
+					<view @click="showImg()">
+						<image :src="item" v-for="(item, index) in eventInfo.proveSmall" mode="widthFix" style="width:60upx;height:60upx;"></image>
+					</view>
 				</view>
 			</view>
 
@@ -41,7 +38,7 @@
 			</view>
 		</view>
 		<div class="app-footer">
-			<button class="admin-button-com bule" @click="share">分享</button>
+			<button class="admin-button-com bule" @click="getUser">失信人员信息</button>
 		</div>
 	</view>
 </template>
@@ -67,6 +64,12 @@ export default {
 		...mapGetters({ loginInfo: "getLoginInfo" }),
 	},
 	methods: {
+		goUser(){
+			this.$util.pageTo({url: '/admin/ll/userDetail?id='+this.eventInfo.userId})
+		},
+		showImg(){
+			uni.previewImage({urls: this.eventInfo.proveBig})
+		},
 		share(){
 			this.$msg('开发中')
 		},