Commit a53cc049 by yanju

0207

parent 53a203aa
......@@ -212,6 +212,7 @@ export default {
listenDateChange:'listenDateChange',
listenCropperPic:'listenCropperPic',
listenPopupValue:'listenpopupvalue',
listenCardConMore:'listenCardConMore',
},
default_data: {
......
......@@ -5,9 +5,13 @@
let month = newDate.getMonth()+1;
let day = newDate.getDate();
let hour = newDate.getHours();
hour=hour>9?hour:'0'+hour;
let min = newDate.getMinutes();
min=min>9?min:'0'+min;
let sec = newDate.getSeconds();
return `${year}-${month}-${day} ${hour}:${min}:${sec}`
sec=sec>9?sec:'0'+sec;
return `${year}-${month}-${day} ${hour}:${min}:${sec}`
......
<template>
<div class="card-container__warp" :style="{width: width, height: height}">
<div class="card-container__warp" :style="{width: width, height: height}" v-show="show">
<div class="card-container__header">
<div class="header-left">
<div class="header-left__label"></div>
......@@ -9,12 +9,13 @@
</div>
<slot></slot>
<div class="card-container__footer" v-if="more">
<span>{{more}}</span>
<span @click="clickToGetMore">{{more}}</span>
</div>
</div>
</template>
<script>
import config from '../../action/config'
export default {
name: "cardContainer",
props: {
......@@ -22,8 +23,18 @@ export default {
label: String,
more: String,
width: String,
height: String
}
height: String,
show:{
type:Boolean,
default:true,
},
},
methods:{
clickToGetMore(){
this.$emit(config.event.listenCardConMore)
},
},
}
</script>
......
......@@ -85,7 +85,7 @@
<transition name="fade">
<ul class="abs-box abs-box2" v-if="showHideBox2" @mouseover="changeStateShowBox(2)" @mouseleave="changeStateHideBox(2)">
<li>
<nuxt-link tag="span" to="/personal-center/home">我的主页</nuxt-link>
<nuxt-link tag="span" to="/personal-center/home/project">我的主页</nuxt-link>
</li>
<li>
<nuxt-link tag="span" to="/personal-center/like/support">我的喜欢</nuxt-link>
......
<template>
<div class="pagination-container__wrap">
<div class="pagination-container__wrap" v-show= "show">
<div class="pagination-container">
<p class="left-arrow" @click="clickToGetPrevPage" v-if="currentPage>1">
<yun-icon name="left_arrow" size="12px"></yun-icon>
......@@ -31,6 +31,10 @@
// pages:13,
currentPage:1,
centerFirstPage:1,
show:{
type:Boolean,
default:true,
}
}
},
......@@ -118,7 +122,11 @@
//点击页数改变页数
clickToChangePage(currentPage){
let {pages} = this;
if(currentPage>=pages - 5){
if(pages<7){
this.centerFirstPage = 1;
this.currentPage = currentPage;
}
else if(currentPage>=pages - 5){
this.centerFirstPage = pages - 5;
this.currentPage = currentPage;
}
......
<template>
<div class="topic-card__wrap">
<div class="topic-card">
<div class="topic-card__wrap" v-if="cardId">
<div class="topic-card" @click="changeRoute('/topic/detail/'+cardId)">
<div class="topic-card-left">
<div class="square1" v-if="!isPhoto"></div>
<div class="square2" v-if="!isPhoto"></div>
......@@ -38,7 +38,13 @@
isPhoto: true,
src: 'http://i1.sinaimg.cn/ent/d/2008-06-04/U105P28T3D2048907F326DT20080604225106.jpg',
focus: '+关注',
fontColor: '#55B946'
fontColor: '#55B946',
cardName:'',
cardIntro:'',
cardId:'',
cardTags:[],
cardTime:'',
cardNum1:''
}
},
......@@ -69,7 +75,21 @@
this.cardNum1 = info.referenceCount;
}
},
}
changeRoute(r){
let path = this.$route.path;
let index = path.lastIndexOf('/');
let id = path.substring(index+1);
if(id!==this.cardId){
this.$router.push(r);
}
}
},
watch:{
info(val){
this.dateGet2Info();
}
}
}
</script>
......
......@@ -9,70 +9,46 @@
<div class="bottom-container">
<div class="bottom-left">
<user-card :userId="this.$store.state.userProfile.userId"></user-card>
<card-container style="margin-top: 16px" title="项目草稿箱">
</card-container>
<card-container style="margin-top: 16px" title="提问草稿箱">
</card-container>
<card-container style="margin-top: 16px" title="Ta的提问">
</card-container>
<card-container style="margin-top: 16px" title="博客草稿箱">
</card-container>
<card-container style="margin-top: 16px" title="博文归档">
</card-container>
<card-container style="margin-top: 16px" title="我创建的话题">
</card-container>
<card-container style="margin-top: 16px" title="我参与的话题">
</card-container>
<card-container style="margin-top: 16px" title="访问统计">
</card-container>
<nuxt-child show="left"></nuxt-child>
</div>
<div class="bottom-right">
<div class="bottom-right__tab">
<div class="tab__left">
<div class="left__item">
<nuxt-link tag="div" class="left__item" to="/personal-center/home/project">
<p class="abs"></p>
<p class="word">全部</p>
<p class="line" v-if="selected==='全部'"></p>
</div>
<div class="left__item">
<p class="word">项目</p>
<p class="line" v-if="selected==='project'"></p>
</nuxt-link>
<nuxt-link tag="div" class="left__item" to="/personal-center/home/blog">
<p class="abs"></p>
<p class="word">评论</p>
<p class="line" v-if="selected==='评论'"></p>
</div>
<div class="left__item">
<p class="word">博客</p>
<p class="line" v-if="selected==='blog'"></p>
</nuxt-link>
<nuxt-link tag="div" class="left__item" to="/personal-center/home/answer?type=1">
<p class="abs"></p>
<p class="word">喜欢</p>
<p class="line" v-if="selected==='评论'"></p>
</div>
<div class="left__item">
<p class="word">问答</p>
<p class="line" v-if="selected==='answer'"></p>
</nuxt-link>
<nuxt-link tag="div" class="left__item" to="/personal-center/home/dynamic">
<p class="abs"></p>
<p class="word">粉丝</p>
<p class="line" v-if="selected==='评论'"></p>
</div>
<div class="left__item">
<p class="word">动态</p>
<p class="line" v-if="selected==='dynamic'"></p>
</nuxt-link>
<nuxt-link tag="div" class="left__item" to="/personal-center/home/topic?type=1">
<p class="abs"></p>
<p class="word">公告</p>
<p class="line" v-if="selected==='评论'"></p>
</div>
<p class="word">话题</p>
<p class="line" v-if="selected==='topic'"></p>
</nuxt-link>
<nuxt-link tag="div" class="left__item" to="/personal-center/home/info">
<p class="abs"></p>
<p class="word">资料</p>
<p class="line" v-if="selected==='info'"></p>
</nuxt-link>
</div>
<p class="tab__right">
</p>
</div>
<card-container style="margin-top: 16px" title="项目" label="换一换">
<project-card></project-card>
<project-card></project-card>
<project-card></project-card>
<project-card></project-card>
<project-card></project-card>
<project-card></project-card>
</card-container>
<nuxt-child show="right"></nuxt-child>
</div>
</div>
......@@ -88,10 +64,10 @@
<script>
import UserCard from '../../../components/pc/userCard';
import ProjectCard from '../../../components/pc/projectCard';
import CardContainer from '../../../components/pc/cardContainer';
import PageFooter from '../../../components/pc/pageFooter';
import UserCard from '../../components/pc/userCard';
import ProjectCard from '../../components/pc/projectCard';
import CardContainer from '../../components/pc/cardContainer';
import PageFooter from '../../components/pc/pageFooter';
export default {
......@@ -99,17 +75,25 @@
data(){
return{
labelList: ['我的消息','私信'],
selected:'项目'
selected:'none'
}
},
components:{
UserCard,ProjectCard,CardContainer,PageFooter
},
watch:{
// $route(val){
// let path = this.$route.path;
// console.log(this.$route);
// let index = path.lastIndexOf('/');
// console.log(path.substring(index+1))
//
// this.selected = path.substring(index+1);
// console.log(this.selected);
// }
// },
methods:{
showAlert(){
......@@ -130,17 +114,11 @@
mounted(){
// this.$popupbox();
// message 使用方法
// this.$message({
// message:'hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello',
// type:'info'
// })
}
}
</script>
<style lang="scss" scoped>
......
<template>
<div>
<div v-show="show==='right'">
<card-container key="container3" style="margin-top: 16px" :title="rightConTitle" label="换一换">
<answer-card v-for="(val,index) in rightList" :key="val.questionId" :info="val"></answer-card>
</card-container>
<pagination key="container5" style="margin:20px auto;" :pages="pages" v-on:listenPageChange="changePage"></pagination>
</div>
</div>
</template>
<script>
import ProjectCard from '../../../components/pc/projectCard';
import AnswerCard from '../../../components/pc/answerCard';
import CardContainer from '../../../components/pc/cardContainer';
import config from '../../../action/config';
import Pagination from "../../../components/pc/pagination";
export default {
name:'answer',
props:{
show:String
},
data(){
return{
rightConType:1,
leftList:[],
rightList:[],
pages:1,
}
},
computed:{
rightConTitle(){ return this.rightConType===1?'我创建的问题':'我参与的问题'},
},
components:{
ProjectCard,CardContainer,AnswerCard,Pagination
},
created(){
this.rightConType = this.$route.query.type==="1"?1:2;
this.changePage();
},
methods:{
dataGetMyAnswer(currentPage){
this.$axios.$get(config.api.get.Question.myCreated,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
if(this.rightConType===1){
this.rightList = response.data.dataList;
this.pages = response.data.totalPage;
}else{
this.leftList = response.data.dataList;
}
})
},
dataGetNoticeAnswer(currentPage){
this.$axios.$get(config.api.get.Question.myParticipated,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
if(this.rightConType===2){
this.rightList = response.data.dataList;
this.pages = response.data.totalPage;
}else{
this.leftList = response.data.dataList;
}
})
},
changePage(currentPage){
//返回页数 请求新的数据
if(this.rightConType===1){
this.dataGetMyAnswer(currentPage);
}
if(this.rightConType===2){
this.dataGetNoticeAnswer(currentPage);
}
}
},
}
</script>
<style lang="scss">
</style>
<template>
<div>
<div v-show="show==='right'">
<card-container key="container3" style="margin-top: 16px" :title="rightConTitle" label="换一换">
<blog-card v-for="(val,index) in rightList" :key="val.blogId" :info="val"></blog-card>
</card-container>
<pagination key="container5" style="margin:20px auto;" :pages="pages" v-on:listenPageChange="changePage"></pagination>
</div>
</div>
</template>
<script>
import BlogCard from '../../../components/pc/projectCard';
import CardContainer from '../../../components/pc/cardContainer';
import config from '../../../action/config';
import Pagination from "../../../components/pc/pagination";
export default {
name:'blog',
props:{
show:String
},
data(){
return{
rightConType:1,
leftList:[],
rightList:[],
pages:1,
}
},
computed:{
rightConTitle(){ return this.rightConType===1?'我的博客':'我关注的话题'},
},
components:{
BlogCard,CardContainer,Pagination
},
methods:{
dataGetBlog(currentPage){
this.$axios.$get(config.api.get.Blog.myList,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
this.rightList = response.data.dataList;
this.pages = response.data.totalPage;
})
},
changePage(currentPage){
//返回页数 请求新的数据
this.dataGetBlog(currentPage);
}
},
}
</script>
<style lang="scss">
</style>
<template>
<div>
<div v-show="show==='right'">
<release-card style="margin-top: 16px"></release-card>
<social-card v-for="(val,index) in rightList" :key="val.blogId" :info="val"></social-card>
<pagination key="container5" style="margin:20px auto;" :pages="pages" v-on:listenPageChange="changePage"></pagination>
</div>
</div>
</template>
<script>
import SocialCard from '../../../components/pc/socialContactCard';
import ReleaseCard from '../../../components/pc/releaseCard';
import CardContainer from '../../../components/pc/cardContainer';
import config from '../../../action/config';
import Pagination from "../../../components/pc/pagination";
export default {
name:'dynamic',
props:{
show:String
},
data(){
return{
rightConType:1,
leftList:[],
rightList:[],
pages:1,
}
},
computed:{
rightConTitle(){ return this.rightConType===1?'我的动态':'我关注的话题'},
},
components:{
SocialCard,CardContainer,Pagination,ReleaseCard
},
methods:{
dataGetDynamic(currentPage){
this.$axios.$get(config.api.get.Post.myList,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
this.rightList = response.data.dataList;
this.pages = response.data.totalPage;
})
},
changePage(currentPage){
//返回页数 请求新的数据
this.dataGetDynamic(currentPage);
}
},
}
</script>
<style lang="scss">
</style>
<template>
<div>
<div v-show="show==='right'">
<card-container key="container3" style="margin-top: 16px" :title="rightConTitle" label="换一换">
<project-card v-for="(val,index) in rightList" :key="val.projectId" :info="val"></project-card>
</card-container>
<pagination key="container5" style="margin:20px auto;" :pages="pages" v-on:listenPageChange="changePage"></pagination>
</div>
</div>
</template>
<script>
import ProjectCard from '../../../components/pc/projectCard';
import CardContainer from '../../../components/pc/cardContainer';
import config from '../../../action/config';
import Pagination from "../../../components/pc/pagination";
export default {
name:'project',
props:{
show:String
},
data(){
return{
rightConType:1,
leftList:[],
rightList:[],
pages:1,
}
},
computed:{
rightConTitle(){ return this.rightConType===1?'我参与的项目':'我关注的话题'},
},
components:{
ProjectCard,CardContainer,Pagination
},
methods:{
dataGetProject(currentPage){
this.$axios.$get(config.api.get.Project.myList,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
this.rightList = response.data.dataList;
this.pages = response.data.totalPage;
})
},
changePage(currentPage){
//返回页数 请求新的数据
this.dataGetProject(currentPage);
}
},
}
</script>
<style lang="scss">
</style>
<template>
<div>
<div v-show="show==='right'">
<card-container key="container3" style="margin-top: 16px" :title="rightConTitle" label="换一换">
<topic-card v-for="(val,index) in rightList" :key="val.topicId" :info="val"></topic-card>
</card-container>
<pagination key="container5" style="margin:20px auto;" :pages="pages" v-on:listenPageChange="changePage"></pagination>
</div>
</div>
</template>
<script>
import ProjectCard from '../../../components/pc/projectCard';
import TopicCard from '../../../components/pc/topicCard';
import CardContainer from '../../../components/pc/cardContainer';
import config from '../../../action/config';
import Pagination from "../../../components/pc/pagination";
export default {
name:'topic',
props:{
show:String
},
data(){
return{
rightConType:1,
leftList:[],
rightList:[],
pages:1,
}
},
computed:{
rightConTitle(){ return this.rightConType===1?'我创建的话题':'我关注的话题'},
},
components:{
ProjectCard,CardContainer,TopicCard,Pagination
},
created(){
this.rightConType = this.$route.query.type==="1"?1:2;
this.changePage();
},
methods:{
dataGetMyTopic(currentPage){
this.$axios.$get(config.api.get.Topic.myList,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
if(this.rightConType===1){
this.rightList = this.myTopicList = response.data.dataList;
this.pages = this.pages1 = response.data.totalPage;
}else{
this.leftList=this.myTopicList = response.data.dataList;
this.pages1 = response.data.totalPage;
}
})
},
dataGetNoticeTopic(currentPage){
this.$axios.$get(config.api.get.Topic.myfollowedList,{
params:{
page:currentPage,
size:10
}
}).then((response)=>{
console.log(response.data);
if(this.rightConType===2){
console.log(1)
this.rightList =this.noticeTopicList = response.data.records;
this.pages = this.pages2 = response.data.pages;
console.log(this.rightList)
console.log(this.pages)
}else{
console.log(2)
this.leftList=this.noticeTopicList = response.data.records;
this.pages2 = response.data.pages;
}
})
},
changePage(currentPage){
//返回页数 请求新的数据
if(this.rightConType===1){
this.dataGetMyTopic(currentPage);
}
if(this.rightConType===2){
this.dataGetNoticeTopic(currentPage);
}
}
},
}
</script>
<style lang="scss">
</style>
<template>
<div class="topic-container">
<div class="topic-container__main">
<div class="topic-container__left">
<nav-wrap
width="106px"
:list="list"
></nav-wrap>
</div>
<div class="topic-container__center">
<card-container
width="816px"
height="1070px"
:title="labelTitle"
>
<topic-card></topic-card>
</card-container>
<div class="pagination">
<pagination style="margin: 0 auto;"></pagination>
</div>
</div>
<div class="topic-container__right">
<card-container
title="话题热搜榜"
label="实时更新"
more="更多"
width="302px"
height="430px"
></card-container>
</div>
</div>
</div>
</template>
<script>
import NavWrap from "../../components/pc/nav/navWrap";
import CardContainer from "../../components/pc/cardContainer";
import ProjectCard from "../../components/pc/projectCard";
import Pagination from "../../components/pc/pagination";
import TopicCard from "../../components/pc/topicCard";
export default {
components: {TopicCard, Pagination, ProjectCard, CardContainer, NavWrap},
data(){
return{
list: [
{
label: '推荐',
address: '/topic',
id: '推荐'
},
{
label: '热门',
address: '/topic',
id: '热门'
},
{
label: '关注',
address: '/topic',
id: '关注'
},
{
label: '最新',
address: '/topic',
id: '最新'
}
]
}
},
created() {
this.$router.replace({
path: '/topic',
query: {
id: '推荐'
}
});
},
computed: {
labelTitle: function () {
return this.$route.query.id + '话题'
}
}
}
</script>
<style lang="scss" scoped>
.topic-container{
> .topic-container__main{
width: $pageWidth;
margin: 0 auto;
padding-top: 16*$length;
padding-bottom: 32*$length;
@extend %flex-row-spb;
align-items: start;
.topic-container__left{}
.topic-container__center{
.pagination{
margin: 32*$length;
}
}
.topic-container__right{
.right__write-topic{
width: 302*$length;
background-color: #fff;
@include fontStyle(14,56,500,#00AAE6,center);
@include border-radius(4*$length);
@extend %animate-transition;
&:hover {
color: #fff;
background-color: #00AAE6;
}
}
}
}
}
</style>
<template>
<div class="topic-detail-container">
<div class="topic-detail-container__search">
<div class="search-box">
<input type="text" />
<div class="icon-box">
<yun-icon name="search"></yun-icon>
</div>
</div>
</div>
<div class="topic-detail-container__main">
<div class="main__part1">
<topic-card :info="topicCardInfo" style="border-radius: 4px;overflow: hidden"></topic-card>
<div class="part1__bottom">
<div class="__left">
<nav-wrap
width="106px"
:list="list"
></nav-wrap>
</div>
<div class="__right">
<release-card></release-card>
<social-contact-card></social-contact-card>
<social-contact-card></social-contact-card>
<social-contact-card></social-contact-card>
<social-contact-card></social-contact-card>
<social-contact-card></social-contact-card>
</div>
</div>
</div>
<div class="main-part2">
<card-container
title="话题发起人"
more="更多"
width="302px"
></card-container>
<card-container
title="活跃用户"
label="换一换"
more="更多"
width="302px"
style="margin-top: 16px"
></card-container>
</div>
</div>
</div>
</template>
<script>
import NavWrap from "../../../components/pc/nav/navWrap";
import CardContainer from "../../../components/pc/cardContainer";
import Pagination from "../../../components/pc/pagination";
import TopicCard from "../../../components/pc/topicCard";
import ReleaseCard from '../../../components/pc/releaseCard';
import SocialContactCard from '../../../components/pc/socialContactCard';
import config from '../../../action/config'
export default {
components: {TopicCard, Pagination, CardContainer, NavWrap,ReleaseCard,SocialContactCard},
data(){
return{
list: [
{
label: '推荐',
address: '/topic/detail',
id: '推荐'
},
{
label: '热门',
address: '/topic/detail',
id: '热门'
},
{
label: '关注',
address: '/topic/detail',
id: '关注'
},
{
label: '我的',
address: '/topic/detail',
id: '我的'
},
{
label: '文字',
address: '/topic/detail',
id: '文字'
},
{
label: '视频',
address: '/topic/detail',
id: '视频'
},
{
label: '图片',
address: '/topic/detail',
id: '图片'
},
{
label: '项目',
address: '/topic/detail',
id: '项目'
},
{
label: '代码',
address: '/topic/detail',
id: '代码'
},
],
topicCardInfo:{},
}
},
created() {
let path = this.$route.path;
let index = path.lastIndexOf('/');
let id = path.substring(index+1);
this.dataGetTopicInfo(id);
this.$router.replace({
path: path,
query: {
id: '推荐'
}
});
},
computed: {
labelTitle: function () {
return this.$route.query.id + '话题'
}
},
methods:{
dataGetTopicInfo(id){
if(id!=='detail'){
this.$axios.$get(config.api.get.Topic.detail+id).then((response)=>{
console.log(response.data);
this.topicCardInfo = response.data;
})
}
}
},
}
</script>
<style lang="scss" scoped>
.topic-detail-container{
> .topic-detail-container__search{
width: 100%;
height:160*$length;
background-image: url("../../../assets/img/search_bg.png");
background-position: 50% 50%;
background-size: 100% 100%;
background-repeat: repeat;
@extend %flex-row-center;
.search-box{
width:408*$length;
height:40*$length;
@extend %flex-row-spb;
border-radius: 4*$length;
overflow: hidden;
input{
width: 318*$length;
height:40*$length;
padding:12*$length 16*$length;
@include fontStyle(12,40,500,#333,left);
}
.icon-box{
width:90*$length;
height:40*$length;
@extend %flex-row-center;
background-color: #00AAE6;
@include fontStyle(12,40,500,#333,left);
@extend %cursorPointer;
i{
color:#fff;
font-size: 12*$font-size;
}
}
}
}
> .topic-detail-container__main{
width: $pageWidth;
margin: 0 auto;
padding-bottom: 32*$length;
@extend %flex-row-spb;
align-items: start;
margin-top: 24*$length;
.main__part1{
width:938*$length;
.part1__bottom{
@extend %flex-row-spb;
align-items: flex-start;
margin-top: 16*$length;
.__left{
width:106*$length;
}
.__right{
width:816*$length;
}
}
}
.main__part2{
width:302*$length;
}
}
}
</style>
......@@ -35,13 +35,12 @@
<script>
import NavWrap from "../../components/pc/nav/navWrap";
import CardContainer from "../../components/pc/cardContainer";
import ProjectCard from "../../components/pc/projectCard";
import Pagination from "../../components/pc/pagination";
import TopicCard from "../../components/pc/topicCard";
import config from '../../action/config';
export default {
components: {TopicCard, Pagination, ProjectCard, CardContainer, NavWrap},
components: {TopicCard, Pagination, CardContainer, NavWrap},
data(){
return{
list: [
......
......@@ -3,7 +3,7 @@ Frame Function Args
00180232080 0018005D44E (0018021D639, 0018021DC39, 0018022E2F0, 000FFFFB720)
00180232080 00180046609 (C0C0C000008080, FF000000808080, FFFF000000FF00, FF00FF000000FF)
00180232080 00180046642 (0018021D616, 000000001E7, 0018022E2F0, 80808000C0C0C0)
00180232080 001800433C3 (00000000000, 00180232080, 7FFDD001888E, 001800004EC)
00180232080 001800433C3 (00000000000, 00180232080, 7FFF4409888E, 001800004EC)
00180232080 0018006B581 (C0C0C000008080, FF000000808080, FFFF000000FF00, FF00FF000000FF)
00180232080 0018006C3CC (00000000000, 0010065D4A8, 00000000000, 00000000000)
00180232080 0018006E4E6 (00000000000, 00000000008, 0006C57D890, 00000000000)
......@@ -13,7 +13,7 @@ Frame Function Args
00000000001 0010057F413 (00000000008, 001006642E0, 00000000000, 00000000000)
00000000001 001005747F6 (00000000000, 0005A6D26A9, 0001772867C, 00000010000)
00000000001 001005D381B (00000000001, 0006B7E1F10, 00180053BD3, 00100666620)
00600049080 001005E0BAA (00000000020, 001802DA8E0, 00180047B96, 00180046BA0)
00600049090 001005E0BAA (00000000020, 001802DA8E0, 00180047B96, 00180046BA0)
000FFFFCCB0 00180047C07 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00180045873 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace (more stack frames may be present)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment