Vue.component('follow-bottom', {
template: '
\
签到信息
\
\
\
签到方式: 定位签到
\
签到时间: 2019-01-01 10:10:10
\
\
签到位置: 福建省厦门市思明区软件园望海路
\
\
\
',
props: ['followupid'],
data: function () {
return {
followUpList: [],
curPage: 1,
followUpData: {},
imgSrc: '../../images/d-male.png'
}
},
watch: {
followUpData: function (val) {
this.followUpList = this.followUpData;
}
},
mounted: function () {
this.getData()
},
methods: {
getData: function () {
var vm = this
fangshiAPI.findByFollowupId({ followupId: this.followupid || '1' }).then(function (res) {
if (res.status == 200) {
var data = res.data
if (data != null) {
vm.followUpData = data
}
// vm.imgSrc=data.img?data.img:''
} else {
top.toastr.error(res.msg);
}
})
}
},
})