Răsfoiți Sursa

失信人员

shish 1 an în urmă
părinte
comite
57501a10a7

+ 2 - 2
hdApp/src/admin/ll/components/event.vue

@@ -1,5 +1,5 @@
 <template>
 <template>
-    <view  @click="pageTo({url:'/admin/ll/detail?id='+item.id})">
+    <view  @click="pageTo({url:'/admin/ll/eventDetail?id='+item.id})">
         <view class="order-top_box" style="position:relative;">
         <view class="order-top_box" style="position:relative;">
           <image style="width:130upx;position:absolute;top:110upx;right:25upx;border-radius:10upx;" mode="widthFix" :src="item.cover"></image>
           <image style="width:130upx;position:absolute;top:110upx;right:25upx;border-radius:10upx;" mode="widthFix" :src="item.cover"></image>
           <view class="tit">{{ item.name }}</view>
           <view class="tit">{{ item.name }}</view>
@@ -32,7 +32,7 @@
 </template>
 </template>
 <script>
 <script>
 export default {
 export default {
-	name: "workItem",
+	name: "eventDetail",
 	components: {
 	components: {
 	},
 	},
 	props: {
 	props: {

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

@@ -2,40 +2,40 @@
 	<view class="app-content">
 	<view class="app-content">
 		<view class="info-content_box">
 		<view class="info-content_box">
 			<view class="title">
 			<view class="title">
-				失信人员信息
+				信息
 			</view>
 			</view>
 			<view class="bills-info_box content-box">
 			<view class="bills-info_box content-box">
 				<view class="order-info_box">
 				<view class="order-info_box">
 					<view>手机号码:</view>
 					<view>手机号码:</view>
-					<view>{{ userInfo.mobile }}</view>
+					<view>{{ eventInfo.mobile }}</view>
 				</view>
 				</view>
 				<view class="order-info_box">
 				<view class="order-info_box">
 					<view>微信号码:</view>
 					<view>微信号码:</view>
-					<view>{{ userInfo.wx }}</view>
+					<view>{{ eventInfo.wx }}</view>
 				</view>
 				</view>
-				<view class="order-info_box" v-if="userInfo.status==1">
+				<view class="order-info_box" v-if="eventInfo.status==1">
 					<view>身份证号:</view>
 					<view>身份证号:</view>
-					<view>{{ userInfo.no }}</view>
+					<view>{{ eventInfo.no }}</view>
 				</view>
 				</view>
 				<view class="order-info_box">
 				<view class="order-info_box">
 					<view>失信次数:</view>
 					<view>失信次数:</view>
-					<view>{{ userInfo.breakNum }}</view>
+					<view>{{ eventInfo.breakNum }}</view>
 				</view>
 				</view>
 				<view class="order-info_box">
 				<view class="order-info_box">
 					<view>失信金额:</view>
 					<view>失信金额:</view>
-					<view>{{ userInfo.breakAmount }}</view>
+					<view>{{ eventInfo.breakAmount }}</view>
 				</view>
 				</view>
 				<view class="order-info_box">
 				<view class="order-info_box">
 					<view>最近失信:</view>
 					<view>最近失信:</view>
-					<view>{{ userInfo.lastDate }}</view>
+					<view>{{ eventInfo.lastDate }}</view>
 				</view>
 				</view>
 			</view>
 			</view>
 
 
-			<view v-if="userInfo.remark!=''" class="content-box price-detail">
+			<view v-if="eventInfo.remark!=''" class="content-box price-detail">
 				<div class="module-com input-line-wrap">
 				<div class="module-com input-line-wrap">
 					<tui-list-cell class="line-cell" :hover="false">
 					<tui-list-cell class="line-cell" :hover="false">
 						<div class="tui-title">备注</div>
 						<div class="tui-title">备注</div>
-						<div>{{ userInfo.remark }}</div>
+						<div>{{ eventInfo.remark }}</div>
 					</tui-list-cell>
 					</tui-list-cell>
 				</div>
 				</div>
 			</view>
 			</view>
@@ -48,14 +48,14 @@
 <script>
 <script>
 import { mapGetters } from "vuex";
 import { mapGetters } from "vuex";
 import TuiListCell from "@/components/plugin/list-cell";
 import TuiListCell from "@/components/plugin/list-cell";
-import { getUserDetail } from "@/api/ll";
+import { getEventDetail } from "@/api/ll";
 export default {
 export default {
 	name: "detail",
 	name: "detail",
 	components: { TuiListCell },
 	components: { TuiListCell },
 	mixins: [],
 	mixins: [],
 	data() {
 	data() {
 		return {
 		return {
-			userInfo:{}
+			eventInfo:{}
 		};
 		};
 	},
 	},
 	onPullDownRefresh() {
 	onPullDownRefresh() {
@@ -71,8 +71,8 @@ export default {
 			this.$msg('开发中')
 			this.$msg('开发中')
 		},
 		},
 		async init() {
 		async init() {
-			const res = await getUserDetail({ id: this.option.id })
-			this.userInfo = res.data.user ? res.data.user : {}
+			const res = await getEventDetail({ id: this.option.id })
+			this.eventInfo = res.data.event ? res.data.event : {}
 		}
 		}
 	}
 	}
 };
 };

+ 4 - 0
hdApp/src/api/ll/index.js

@@ -14,4 +14,8 @@ export const addEvent = data => {
 
 
 export const getUserDetail = data => {
 export const getUserDetail = data => {
 	return https.get('/ll-user/detail', data)
 	return https.get('/ll-user/detail', data)
+};
+
+export const getEventDetail = data => {
+	return https.get('/ll-event/detail', data)
 };
 };