|
|
@@ -2,40 +2,40 @@
|
|
|
<view class="app-content">
|
|
|
<view class="info-content_box">
|
|
|
<view class="title">
|
|
|
- 失信人员信息
|
|
|
+ 信息
|
|
|
</view>
|
|
|
<view class="bills-info_box content-box">
|
|
|
<view class="order-info_box">
|
|
|
<view>手机号码:</view>
|
|
|
- <view>{{ userInfo.mobile }}</view>
|
|
|
+ <view>{{ eventInfo.mobile }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>微信号码:</view>
|
|
|
- <view>{{ userInfo.wx }}</view>
|
|
|
+ <view>{{ eventInfo.wx }}</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>{{ userInfo.no }}</view>
|
|
|
+ <view>{{ eventInfo.no }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>失信次数:</view>
|
|
|
- <view>{{ userInfo.breakNum }}</view>
|
|
|
+ <view>{{ eventInfo.breakNum }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>失信金额:</view>
|
|
|
- <view>{{ userInfo.breakAmount }}</view>
|
|
|
+ <view>{{ eventInfo.breakAmount }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>最近失信:</view>
|
|
|
- <view>{{ userInfo.lastDate }}</view>
|
|
|
+ <view>{{ eventInfo.lastDate }}</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">
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">备注</div>
|
|
|
- <div>{{ userInfo.remark }}</div>
|
|
|
+ <div>{{ eventInfo.remark }}</div>
|
|
|
</tui-list-cell>
|
|
|
</div>
|
|
|
</view>
|
|
|
@@ -48,14 +48,14 @@
|
|
|
<script>
|
|
|
import { mapGetters } from "vuex";
|
|
|
import TuiListCell from "@/components/plugin/list-cell";
|
|
|
-import { getUserDetail } from "@/api/ll";
|
|
|
+import { getEventDetail } from "@/api/ll";
|
|
|
export default {
|
|
|
name: "detail",
|
|
|
components: { TuiListCell },
|
|
|
mixins: [],
|
|
|
data() {
|
|
|
return {
|
|
|
- userInfo:{}
|
|
|
+ eventInfo:{}
|
|
|
};
|
|
|
},
|
|
|
onPullDownRefresh() {
|
|
|
@@ -71,8 +71,8 @@ export default {
|
|
|
this.$msg('开发中')
|
|
|
},
|
|
|
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 : {}
|
|
|
}
|
|
|
}
|
|
|
};
|