Commit 6645612b authored by Mac's avatar Mac

1

parent 867c4449
...@@ -147,7 +147,7 @@ ...@@ -147,7 +147,7 @@
left: 0; left: 0;
bottom: 0; bottom: 0;
background: #FFF; background: #FFF;
z-index: 9; z-index: 999999999;
} }
.friendcircle .comment-pl{ .friendcircle .comment-pl{
width: 56px; width: 56px;
...@@ -225,7 +225,7 @@ ...@@ -225,7 +225,7 @@
</style> </style>
<template> <template>
<div class='friendcircle'> <div class='friendcircle'>
<view class="mynews-top" v-if="Messagecount>0"> <view class="mynews-top" >
<view class="top-box" @click="gomymessage()"> <view class="top-box" @click="gomymessage()">
<image src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/wodehufong.png" mode="widthFix" style="width: 16px;height: auto;"></image> <image src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/wodehufong.png" mode="widthFix" style="width: 16px;height: auto;"></image>
<text style="margin-left: 6px;">我的互动消息</text> <text style="margin-left: 6px;">我的互动消息</text>
...@@ -472,7 +472,7 @@ ...@@ -472,7 +472,7 @@
init() { init() {
this.loading = true; this.loading = true;
this.request2({ this.request2({
url: '/api/AppletSchool/DynamicList', url: '/api/AppletSchool/GetDynamicList',
data: this.msg data: this.msg
}, },
res => { res => {
...@@ -577,10 +577,10 @@ ...@@ -577,10 +577,10 @@
let url = ''; let url = '';
if (x.hasLike == false) { if (x.hasLike == false) {
url = '/api/AppletEducation/DynamicLike' url = '/api/AppletEducation/GetDynamicLike'
} else { } else {
url = '/api/AppletEducation/DynamicCancelLike' url = '/api/AppletEducation/GetDynamicCancelLike'
} }
this.request2({ this.request2({
...@@ -671,7 +671,7 @@ ...@@ -671,7 +671,7 @@
}, },
mydelete(){//删除自己的回复 mydelete(){//删除自己的回复
this.request2({ this.request2({
url: '/api/AppletEducation/DynamicDeleteComment', url: '/api/AppletEducation/GetDynamicDeleteComment',
data: {commentId:this.user.item.commentId} data: {commentId:this.user.item.commentId}
}, },
res => { res => {
...@@ -697,7 +697,7 @@ ...@@ -697,7 +697,7 @@
return return
} }
this.request2({ this.request2({
url: '/api/AppletEducation/DynamicComment', url: '/api/AppletEducation/GetDynamicComment',
data: this.commentMsg data: this.commentMsg
}, },
res => { res => {
...@@ -714,7 +714,7 @@ ...@@ -714,7 +714,7 @@
init2(type) { //根据id去查询当前的数据 只更新当前数据 init2(type) { //根据id去查询当前的数据 只更新当前数据
this.request2({ this.request2({
url: '/api/AppletSchool/DynamicList', url: '/api/AppletSchool/GetDynamicList',
data: { data: {
pageIndex: 1, pageIndex: 1,
pageSize: 1, pageSize: 1,
......
...@@ -80,7 +80,9 @@ ...@@ -80,7 +80,9 @@
<view style="font-size: 11px;color: #B0B0B0;">{{x.createTime}}</view> <view style="font-size: 11px;color: #B0B0B0;">{{x.createTime}}</view>
</view> </view>
<view class="ftBox-right"> <view class="ftBox-right">
<view class="ftBox-right-text" style="padding: 6px;overflow: hidden; <view class="ftBox-right-text" style="padding: 6px;overflow: hidden;width: 68px;height: 68px;text-overflow: ellipsis;display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
" v-if="x.fileType==0"> " v-if="x.fileType==0">
{{x.content}} {{x.content}}
</view> </view>
...@@ -174,7 +176,7 @@ ...@@ -174,7 +176,7 @@
init() { init() {
this.loading = true; this.loading = true;
this.request2({ this.request2({
url: '/api/AppletEducation/AboutMeDynamicList', url: '/api/AppletEducation/GetAboutMeDynamicList',
data: this.msg data: this.msg
}, },
res => { res => {
......
...@@ -322,7 +322,7 @@ ...@@ -322,7 +322,7 @@
init() { init() {
this.loading = true; this.loading = true;
this.request2({ this.request2({
url: '/api/AppletEducation/MyDynamicList', url: '/api/AppletEducation/GetMyDynamicList',
data: this.msg data: this.msg
}, },
res => { res => {
......
...@@ -379,7 +379,7 @@ ...@@ -379,7 +379,7 @@
} }
this.request2({ this.request2({
url: '/api/AppletEducation/DynamicDetial', url: '/api/AppletEducation/GetDynamicDetial',
data: {articleId:this.articleId} data: {articleId:this.articleId}
}, },
res => { res => {
...@@ -426,9 +426,9 @@ ...@@ -426,9 +426,9 @@
this.choiceId = x.id; this.choiceId = x.id;
let url = ''; let url = '';
if (x.hasLike == false) { if (x.hasLike == false) {
url = '/api/AppletEducation/DynamicLike' url = '/api/AppletEducation/GetDynamicLike'
} else { } else {
url = '/api/AppletEducation/DynamicCancelLike' url = '/api/AppletEducation/GetDynamicCancelLike'
} }
this.request2({ this.request2({
url: url, url: url,
...@@ -518,7 +518,7 @@ ...@@ -518,7 +518,7 @@
return return
} }
this.request2({ this.request2({
url: '/api/AppletEducation/DynamicComment', url: '/api/AppletEducation/GetDynamicComment',
data: this.commentMsg data: this.commentMsg
}, },
res => { res => {
...@@ -540,7 +540,7 @@ ...@@ -540,7 +540,7 @@
}, },
mydelete(){//删除自己的回复 mydelete(){//删除自己的回复
this.request2({ this.request2({
url: '/api/AppletEducation/DynamicDeleteComment', url: '/api/AppletEducation/GetDynamicDeleteComment',
data: {commentId:this.user.item.commentId} data: {commentId:this.user.item.commentId}
}, },
res => { res => {
...@@ -563,7 +563,7 @@ ...@@ -563,7 +563,7 @@
}, },
deletepyq(){//删除朋友圈 deletepyq(){//删除朋友圈
this.request2({ this.request2({
url: '/api/AppletEducation/DeleteDynamic', url: '/api/AppletEducation/GetDeleteDynamic',
data: {articleId:this.articleId} data: {articleId:this.articleId}
}, },
res => { res => {
......
...@@ -377,7 +377,7 @@ ...@@ -377,7 +377,7 @@
}) })
console.log(this.addMsg) console.log(this.addMsg)
this.request2({ this.request2({
url: '/api/AppletEducation/PublishDynamic', url: '/api/AppletEducation/GetPublishDynamic',
data: this.addMsg data: this.addMsg
}, },
res => { res => {
......
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