mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
mp:解决 wx-msg 的 css 问题
This commit is contained in:
parent
2b477a4dfb
commit
cc23ca2dcc
@ -13,16 +13,17 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- 消息列表 -->
|
<!-- 消息列表 -->
|
||||||
<div class="execution" v-for="item in tableData" :key='item.id'>
|
<div class="execution" v-for="item in tableData" :key='item.id'>
|
||||||
<div class="avue-comment" :class="item.sendFrom == '2' ? 'avue-comment--reverse' : ''">
|
<div class="avue-comment" :class="item.sendFrom === 2 ? 'avue-comment--reverse' : ''">
|
||||||
<div class="avatar-div">
|
<div class="avatar-div">
|
||||||
<img :src="item.sendFrom == '1' ? item.headimgUrl : item.appLogo" class="avue-comment__avatar">
|
<img :src="item.sendFrom === 1 ? item.headimgUrl : item.appLogo" class="avue-comment__avatar">
|
||||||
<div class="avue-comment__author">{{item.sendFrom == '1' ? item.nickName : item.appName}}</div>
|
<!-- <div class="avue-comment__author">{{item.sendFrom === 1 ? item.nickName : item.appName}}</div>-->
|
||||||
|
<div class="avue-comment__author">{{item.sendFrom === 1 ? '用户' : '公众号' }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="avue-comment__main">
|
<div class="avue-comment__main">
|
||||||
<div class="avue-comment__header">
|
<div class="avue-comment__header">
|
||||||
<div class="avue-comment__create_time">{{ parseTime(item.createTime) }}</div>
|
<div class="avue-comment__create_time">{{ parseTime(item.createTime) }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="avue-comment__body" :style="item.sendFrom == '2' ? 'background: #6BED72;' : ''">
|
<div class="avue-comment__body" :style="item.sendFrom === 2 ? 'background: #6BED72;' : ''">
|
||||||
<!-- 【事件】区域 -->
|
<!-- 【事件】区域 -->
|
||||||
<div v-if="item.type === 'event' && item.event === 'subscribe'">
|
<div v-if="item.type === 'event' && item.event === 'subscribe'">
|
||||||
<el-tag type="success" size="mini">关注</el-tag>
|
<el-tag type="success" size="mini">关注</el-tag>
|
||||||
@ -96,7 +97,6 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { getMessagePage, addObj } from '@/api/mp/message'
|
|
||||||
import { getMessagePage } from '@/api/mp/message'
|
import { getMessagePage } from '@/api/mp/message'
|
||||||
// import WxReplySelect from '@/components/wx-reply/main.vue'
|
// import WxReplySelect from '@/components/wx-reply/main.vue'
|
||||||
// import WxNews from '@/components/wx-news/main.vue'
|
// import WxNews from '@/components/wx-news/main.vue'
|
||||||
@ -228,46 +228,130 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.msg-main{
|
/* 来自 https://github.com/nmxiaowei/avue/blob/master/styles/src/element-ui/comment.scss */
|
||||||
margin-top: -30px;
|
/* 因为 joolun 实现依赖 avue 组件,该页面使用了 comment.scss */
|
||||||
padding: 10px;
|
.avue-comment{
|
||||||
|
margin-bottom: 30px;
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
&--reverse{
|
||||||
|
flex-direction:row-reverse;
|
||||||
|
.avue-comment__main{
|
||||||
|
&:before,&:after{
|
||||||
|
left: auto;
|
||||||
|
right: -8px;
|
||||||
|
border-width: 8px 0 8px 8px;
|
||||||
|
}
|
||||||
|
&:before{
|
||||||
|
border-left-color: #dedede;
|
||||||
|
}
|
||||||
|
&:after{
|
||||||
|
border-left-color: #f8f8f8;
|
||||||
|
margin-right: 1px;
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.msg-div{
|
&__avatar{
|
||||||
height: 50vh;
|
width: 48px;
|
||||||
overflow: auto;
|
height: 48px;
|
||||||
background-color: #eaeaea;
|
border-radius: 50%;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
box-sizing: border-box;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.msg-send{
|
&__header{
|
||||||
padding: 10px;
|
padding: 5px 15px;
|
||||||
|
background: #f8f8f8;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
.avue-comment__main{
|
&__author{
|
||||||
flex: unset!important;
|
font-weight: 700;
|
||||||
border-radius: 5px!important;
|
font-size: 14px;
|
||||||
margin: 0 8px!important;
|
color: #999;
|
||||||
}
|
}
|
||||||
.avue-comment--reverse {
|
&__main{
|
||||||
-webkit-box-orient: horizontal;
|
flex:1;
|
||||||
-webkit-box-direction: reverse;
|
margin: 0 20px;
|
||||||
-ms-flex-direction: row-reverse;
|
position: relative;
|
||||||
flex-direction: row-reverse;
|
border: 1px solid #dedede;
|
||||||
|
border-radius: 2px;
|
||||||
|
&:before,&:after{
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: -8px;
|
||||||
|
right: 100%;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
display: block;
|
||||||
|
content: " ";
|
||||||
|
border-color: transparent;
|
||||||
|
border-style: solid solid outset;
|
||||||
|
border-width: 8px 8px 8px 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
border-right-color: #dedede;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
&:after{
|
||||||
|
border-right-color: #f8f8f8;
|
||||||
|
margin-left: 1px;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.avue-comment__header{
|
&__body{
|
||||||
border-top-left-radius: 5px;
|
padding: 15px;
|
||||||
border-top-right-radius: 5px;
|
overflow: hidden;
|
||||||
|
background: #fff;
|
||||||
|
font-family: Segoe UI,Lucida Grande,Helvetica,Arial,Microsoft YaHei,FreeSans,Arimo,Droid Sans,wenquanyi micro hei,Hiragino Sans GB,Hiragino Sans GB W3,FontAwesome,sans-serif;color: #333;
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
.avue-comment__body {
|
blockquote{
|
||||||
border-bottom-right-radius: 5px;
|
margin:0;
|
||||||
border-bottom-left-radius: 5px;
|
font-family: Georgia,Times New Roman,Times,Kai,Kaiti SC,KaiTi,BiauKai,FontAwesome,serif;
|
||||||
}
|
padding: 1px 0 1px 15px;
|
||||||
.avatar-div{
|
border-left: 4px solid #ddd;
|
||||||
text-align: center;
|
|
||||||
width: 80px;
|
|
||||||
}
|
|
||||||
.send-but{
|
|
||||||
float: right;
|
|
||||||
margin-top: 8px!important;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.msg-main{
|
||||||
|
margin-top: -30px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
.msg-div{
|
||||||
|
height: 50vh;
|
||||||
|
overflow: auto;
|
||||||
|
background-color: #eaeaea;
|
||||||
|
}
|
||||||
|
.msg-send{
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
.avue-comment__main{
|
||||||
|
flex: unset!important;
|
||||||
|
border-radius: 5px!important;
|
||||||
|
margin: 0 8px!important;
|
||||||
|
}
|
||||||
|
.avue-comment__header{
|
||||||
|
border-top-left-radius: 5px;
|
||||||
|
border-top-right-radius: 5px;
|
||||||
|
}
|
||||||
|
.avue-comment__body {
|
||||||
|
border-bottom-right-radius: 5px;
|
||||||
|
border-bottom-left-radius: 5px;
|
||||||
|
}
|
||||||
|
.avatar-div{
|
||||||
|
text-align: center;
|
||||||
|
width: 80px;
|
||||||
|
}
|
||||||
|
.send-but{
|
||||||
|
float: right;
|
||||||
|
margin-top: 8px!important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user