123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732 |
- <template>
- <view class="content" id="content">
- <!-- #ifdef MP-WEIXIN -->
- <u-navbar title=" " :background="{ background: '#F6F7F8' }" :border-bottom="false">
- <view class="slot-wrap" slot="right"><u-icon name="camera-fill" size="34" @click="linkToRelease"></u-icon></view>
- </u-navbar>
- <!-- #endif -->
- <view class="content-imgbox">
- <image class="bgimg" :src="`${$url}/circleBanner.jpg`" mode="scaleToFill"></image>
- <image class="headimg" :src="userData.user.avatar" @tap="linkToBusinessCard(userData.user.operId)"></image>
- <text class="nickname">{{ userData.user.realname }}</text>
- <view class="water">
- <view class="water-c">
- <view class="water-1"> </view>
- <view class="water-2"> </view>
- </view>
- </view>
- </view>
- <view class="signature">
- <view class="">{{ userData.user.description }}</view>
- </view>
- <!-- 朋友圈列表 -->
- <view class="content-circle">
- <view class="content-circle-box" v-for="(item , index) in circleData" :key="index">
- <view class="headimg"><image class="img" :src="item.avatar" @tap="linkToBusinessCard(item.userId)"></image></view>
- <view class="content">
- <view class="content-name" @tap="linkToBusinessCard(item.id)">{{ item.nickName }}</view>
- <view class="content-desc">{{ item.context }}</view>
- <view class="content-img" v-if="item.urls">
- <!-- //只有一张图时候 -->
- <view v-if="item.urls.split(',').length == 1"><image class="img-1" :src="`${$url}/${item.urls.split(',')[0]}`" mode="widthFix" @tap="previewImg(0, item.urls.split(','))"></image></view>
- <!-- 有多张图的时候 -->
- <view v-else-if="item.urls.split(',').length > 1">
- <view class="content-img-more">
- <image
- class="img-more"
- v-for="(src, index) in item.urls.split(',')"
- :key="index"
- :class="index % 3 == 0 && 'img-3'"
- :src="`${$url}/${src}`"
- mode="aspectFill"
- @tap="previewImg(index, item.urls.split(','))"
- ></image>
- </view>
- </view>
- </view>
- <!-- 相对时间 点赞按钮等 -->
- <view class="relavivetime" :id="`comment-${'null'}-${index}`">
- <view class="time">{{ item.operTime | format }}</view>
- <view class="icon-box">
- <!-- <view @tap="clickThumb(item)">
- <image class="img icon-box-item thumb" :src="isFabulous(item) ? require('@/static/like-fill.png') : require('@/static/like.png')" mode=""></image>
- </view>
- <view @tap="handleComment(index)">
- <image class="img icon-box-item" :src="require('@/static/comment.png')" mode=""></image>
- </view> -->
- <view>
- <text style='font-size:20px;' @tap="clickThumb(item)" :class="isFabulous(item) ? 'cuIcon-appreciatefill text-blue' : 'cuIcon-appreciate text-gray'"></text>
- <text style='font-size:20px;' @tap="handleComment(index)" class="cuIcon-messagefill text-gray margin-left-sm"></text>
- </view>
- </view>
- </view>
- <!-- 点赞人 评论 -->
- <view class="msg-box">
- <view class="thumbinfo" v-if="item.fabulousList.length">
- <!-- <image class="thumbinfo-icon" :src="require('@/static/like.png')"></image> -->
- <text class="cuIcon-appreciatefill text-blue"></text>
- <text class="thumbinfo-name" v-for="(userInfo, fabulousIndex) in item.fabulousList" :key="userInfo.id" @tap="linkToBusinessCard(userInfo.id)">
- {{ userInfo.nickName }}{{ fabulousIndex != item.fabulousList.length - 1 ? ',' : '' }}
- </text>
- </view>
- <view class="comment" v-if="item.commentList.length">
- <view
- class="comment-box"
- v-for="(comment, commenIndex) in item.commentList"
- :key="commenIndex"
- hover-class="comment-hover-class"
- :id="`comment-${item.circleMegId}-${commenIndex}`"
- >
- <text class="comment-box-name">{{ comment.nickName }}:{{ comment.comment }}</text>
- <text class="cuIcon-delete text-gray " @tap="deleteComment(index, commenIndex)" style="position: absolute;right: 50rpx;padding-top: 9rpx;" v-if="comment.userId == userData.user.operId"></text>
- <!-- <u-icon name="trash-fill" color="#9a9a9a" style="position: absolute;right: 50rpx;padding-top: 9rpx;" size="35" ></u-icon> -->
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- #ifdef H5 -->
- <view :style="{ height: showInput ? '100rpx' : 0 }"></view>
- <!-- #endif -->
- <!-- #ifdef APP-PLUS -->
- <view v-show="showInput" :style="{ height: viewOffsetBottom + 'px' }"></view>
- <!-- #endif -->
- </view>
-
- <u-divider style="margin-top: 50rpx;margin-bottom: 50rpx;" color="#c8c7c8" v-show="showNoMore">我是有底线的</u-divider>
-
- <!-- 底部聊天输入框 其实可以封装成组件的...-->
- <!-- #ifdef MP-WEIXIN -->
- <view class="input-box" v-if="showInput" id="input-box" :style="{ bottom: inputOffsetBottom > 0 ? inputOffsetBottom + 'px' : '0' }">
- <!-- #endif -->
- <!-- #ifndef MP-WEIXIN -->
- <view class="input-box" v-show="showInput" id="input-box" :style="{ bottom: inputOffsetBottom > 0 ? inputOffsetBottom + 'px' : '0' }">
- <!-- #endif -->
- <view class="input-box-flex">
- <view class="input-box-flex-grow">
- <input
- type="text"
- class="content"
- id="input"
- v-model="content"
- :adjust-position="false"
- :confirm-type="'send'"
- :confirm-hold="true"
- placeholder-style="color:#DDD;"
- :cursor-spacing="6"
- :placeholder="placeholder"
- :focus="showInput"
- @blur="blurInput"
- @confirm="sendMsg"
- />
- </view>
- <u-button class="btn" type="primary" size="mini" @click="sendMsg">发送</u-button>
- </view>
- </view>
- <u-action-sheet :list="list" v-model="show" border-radius="25" safe-area-inset-bottom @click="clickAction"></u-action-sheet>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex';
- export default {
- name: 'firendCircle',
- data() {
- return {
- showNoMore: false,
- show: false, //u-action-sheet show
- list: [{ text: '更换相册封面', fontSize: '28' }],
- content: '',
- placeholder: '',
- showInput: false,
- focus: false,
- circleMegId: '', //某一条朋友圈id
- commentInfo: {},
- inputOffsetBottom: 0, //键盘的高度
- viewOffsetBottom: 0, //视窗距离页面的距离
- sel: '' ,//选中的节点
- pageNum: 1,
- postList:[],
- postIndex:0,
- $url:'',
- };
- },
- filters: {
- format: function (e) {
- // 获取js 时间戳
- let time = new Date().getTime();
- // 去掉 js 时间戳后三位
- time = parseInt((time - e) / 1000);
- // 存储转换值
- let s;
- if (time < 60 * 10) {
- // 十分钟内
- return '刚刚';
- } else if (time < 60 * 60 && time >= 60 * 10) {
- // 超过十分钟少于1小时
- s = Math.floor(time / 60);
- return s + '分钟前';
- } else if (time < 60 * 60 * 24 && time >= 60 * 60) {
- // 超过1小时少于24小时
- s = Math.floor(time / 60 / 60);
- return s + '小时前';
- } else if (time < 60 * 60 * 24 * 3 && time >= 60 * 60 * 24) {
- // 超过1天少于3天内
- s = Math.floor(time / 60 / 60 / 24);
- return s + '天前';
- } else {
- // 超过3天
- var date = new Date(e);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
- var Y = date.getFullYear() + '-';
- var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
- var D = date.getDate()>10?date.getDate(): '0'+date.getDate() + ' ';
- var h = date.getHours() + ':';
- var m = date.getMinutes()>10?date.getMinutes():'0'+ date.getMinutes() + ':';
- var ss = date.getSeconds();
- return Y+M+D+h+m+ss;
- }
- }
- },
- watch: {
- inputOffsetBottom: {
- handler(val) {
- if (val != 0) {
- this.$nextTick(() => {
- //暂时不支持h5的滚动方式 因为h5不支持键盘的高度监听
- //微信小程序会把input的焦点和placeholder顶起,正在寻找解决方案
- // #ifndef MP-WEIXIN || H5
- this.bindScroll(this.sel, 100);
- // #endif
- });
- }
- }
- }
- },
- onReady() {
- //兼容h5在pages.json中设置 autoBackButton:false无效 其实只是想修改下默认返回按钮的样式,发现不生效...
- // #ifdef H5
- const icon = document.getElementsByClassName('uni-page-head-btn')[0];
- icon.style.display = 'none';
- // #endif
-
- //设置input输入框距离键盘的高度 --也就是键盘的高度
- //设置view距离键盘和输入框的高度
- //h5暂不支持键盘的高度监听
- uni.onKeyboardHeightChange(res => {
- this.inputOffsetBottom = res.height;
- this.viewOffsetBottom = res.height + uni.upx2px(100);
- if (res.height == 0) {
- // #ifndef MP-WEIXIN
- this.showInput = false;
- // #endif
- }
- });
- },
- onShow() {
- console.log(11111111)
- this.getData(false)
- },
- methods: {
- isFabulous(item){
- console.log(item)
- let fabulous = item.fabulousList.filter(l=>l.userId==this.userData.user.operId)[0];
- return fabulous?true:false
- },
- //自定义标题栏按钮
- onNavigationBarButtonTap({ index }) {
- if (index == 0) {
- //发布朋友圈
- this.$u.route('pageD/releaseFirendCircle/releaseFirendCircle');
- } else if (index == 1) {
- //返回按钮
- this.$u.route({ type: 'back' });
- }
- },
- //打开底部更换相册封面弹窗
- showSheet() {
- this.show = true;
- },
- //点赞
- clickThumb(item) {
- console.log(item)
- let fabulous = item.fabulousList.filter(l=>l.userId==this.userData.user.operId)[0];
- this.$socket.toFabulousRes(fabulous?fabulous.id:'',this.userData.user.operId, item.id, res => {
- if (res.response.success) {
- // jiazai
- if(res.response.data){
- item.fabulousList.push({
- id: res.response.data,
- nickName: this.userData.user.realname,
- userId: this.userData.user.operId
- })
- }else{
- let index = item.fabulousList.findIndex((m)=>m.userId==this.userData.user.operId);
- item.fabulousList.splice(index, 1)
- }
- }
- });
- },
- //跳转到名片
- linkToBusinessCard(userId) {
- console.log(userId)
- this.$u.route({
- url: 'pageC/businessCard/businessCard',
- // params: { userId },
- params:{ id: userId, source: 1}
- });
- },
- //点击评论 唤出输入框和键盘
- handleComment(postIndex) {
- this.postIndex = postIndex;
- this.content = '';
- this.showInput = true;
- this.placeholder = '评论:';
- },
- deleteComment(postIndex, commentIndex){
- let _this = this
- uni.showActionSheet({
- itemList: ['确认'],
- success: function (res) {
- if(res.tapIndex==0){
- _this.$socket.toCommentReqPacket(this.circleData[postIndex].commentList[commentIndex].id,this.userData.user.operId, this.circleData[postIndex].id, '', res => {
- if (res.response.success) {
- this.circleData[postIndex].commentList.splice(commentIndex, 1)
- }
- });
- }
- },
- fail: function (res) {
- }
- });
-
- },
- //发送消息
- sendMsg() {
- if (!this.content) {
- return;
- }
- const post = this.circleData[this.postIndex];
- this.$socket.toCommentReqPacket('',this.userData.user.operId, post.id, this.content, res => {
- if (res.response.success) {
- const commentId = res.response.data;
- if(res.response.data){
- post.commentList.push({
- id: commentId,
- nickName: this.userData.user.realname,
- userId: this.userData.user.operId,
- comment: this.content
- })
- this.closeInputModel();
- }
- }
- });
- },
- //滑块
- bindScroll(sel, duration = 0) {
- uni.createSelectorQuery()
- .select('#content')
- .boundingClientRect(data => {
- //最外层盒子节点
- uni.createSelectorQuery()
- .select(sel)
- .boundingClientRect(res => {
- if (!res) return;
- //选中的节点
- let windowHeight = 0;
- uni.getSystemInfo({
- success: system => {
- windowHeight = system.windowHeight;
- }
- });
- const inputKeyBoardHeight = uni.upx2px(100) + this.inputOffsetBottom; //input输入框和键盘的高度
- const contentHeight = windowHeight - inputKeyBoardHeight; //可视内容的高度(除去input输入框和键盘)
- let scrollTop = 0;
- scrollTop = res.top - data.top - contentHeight + res.height; //滚动到实际距离是元素距离顶部的距离减去最外层盒子的滚动距离再减去可视内容的高度然后再加上此元素的高度
- uni.pageScrollTo({ duration, scrollTop });
- })
- .exec();
- })
- .exec();
- },
- //查看大图
- previewImg(current, imgList) {
- for(let index in imgList){
- if(!imgList[index]){
- imgList.splice(index, 1)
- }else{
- imgList[index] = this.$url + imgList[index]
- }
- }
- uni.previewImage({
- current,
- urls: imgList,
- // #ifndef MP-WEIXIN
- indicator: 'number'
- // #endif
- });
- },
- //关闭键盘 关闭输入框
- closeInputModel() {
- this.postId = ''
- this.postIndex = ''
- this.showInput = false;
- this.content = '';
- // this.circleMegId = '';
- // this.commentInfo = {};
- uni.hideKeyboard();
- },
- msgInput(e){
- console.log("msgInput",e)
- this.content = e.comment
- },
- //失去焦点触发
- blurInput() {
- // this.closeInputModel();
- },
- keyboardheightchange(res) {
- },
- //模拟数据 可通过接口获取
- getData(freshFlag) {
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- var pageNumber = 1;
- // this.$socket.queryPostsReq(this.userData.user.operId, this.pageNum, res => {
- if(freshFlag){
- pageNumber = this.pageNum
- }
- this.$socket.queryPostsReq('', pageNumber, res => {
- uni.hideLoading()
- if (res.response.success) {
- if(freshFlag){
- const circleData3 = this.circleData;
- console.log('res.response.data',res.response.data)
- const circleData2 = JSON.parse(JSON.stringify(res.response.data));
- for(var i in circleData2){
- let id = circleData2[i].id;
- if (!circleData3.map(v => v.id).includes(id)) {
- circleData3.push(circleData2[i]);
- }
- }
- circleData3.sort((a,b)=>{return b.id-a.id});
- this.$u.vuex('circleData', circleData3);
- // console.log('this.circleData',this.circleData)
- //我是有底线的
- if (res.response.data.length==0){
- this.showNoMore = true
- }
- this.pageNum++;
- uni.stopPullDownRefresh();
- }
- else{
- this.$u.vuex('circleData', res.response.data);
- }
-
- }
-
- });
- },
- //点击相册封面弹窗选择项
- clickAction(index) {
- if (index == 0) {
- this.$u.route('pageD/chooseBgImg/chooseBgImg');
- }
- },
- //点击自定义组件相机按钮
- linkToRelease() {
- this.$u.route('pageD/releaseFirendCircle/releaseFirendCircle');
- }
- },
-
- //下拉刷新
- async onPullDownRefresh() {
- await this.getData(false);
- uni.stopPullDownRefresh();
- },
- async onReachBottom(){
- await this.getData(true);
- }
- };
- </script>
- <style lang="scss">
- /*组件背景颜色*/
- .water {
- position: absolute;
- left: 0;
- bottom: -10px;
- height: 30px;
- width: 100%;
- z-index: 1
- }
- .water-c {
- position: relative
- }
- .water-1 {
- background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjYwMHB4IiBoZWlnaHQ9IjYwcHgiIHZpZXdCb3g9IjAgMCA2MDAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCAzLjQgKDE1NTc1KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT53YXRlci0xPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IuaIkSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc2tldGNoOnR5cGU9Ik1TUGFnZSI+CiAgICAgICAgPGcgaWQ9Ii0iIHNrZXRjaDp0eXBlPSJNU0FydGJvYXJkR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMjEuMDAwMDAwLCAtMTMzLjAwMDAwMCkiIGZpbGwtb3BhY2l0eT0iMC4zIiBmaWxsPSIjRkZGRkZGIj4KICAgICAgICAgICAgPGcgaWQ9IndhdGVyLTEiIHNrZXRjaDp0eXBlPSJNU0xheWVyR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyMS4wMDAwMDAsIDEzMy4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0wLDcuNjk4NTczOTUgTDQuNjcwNzE5NjJlLTE1LDYwIEw2MDAsNjAgTDYwMCw3LjM1MjMwNDYxIEM2MDAsNy4zNTIzMDQ2MSA0MzIuNzIxMDUyLDI0LjEwNjUxMzggMjkwLjQ4NDA0LDcuMzU2NzQxODcgQzE0OC4yNDcwMjcsLTkuMzkzMDMwMDggMCw3LjY5ODU3Mzk1IDAsNy42OTg1NzM5NSBaIiBpZD0iUGF0aC0xIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==") repeat-x;
- background-size: 600rpx;
- -webkit-animation: wave-animation-1 3.5s infinite linear;
- animation: wave-animation-1 3.5s infinite linear
- }
- .water-2 {
- top: 5px;
- background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjYwMHB4IiBoZWlnaHQ9IjYwcHgiIHZpZXdCb3g9IjAgMCA2MDAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCAzLjQgKDE1NTc1KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT53YXRlci0yPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IuaIkSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc2tldGNoOnR5cGU9Ik1TUGFnZSI+CiAgICAgICAgPGcgaWQ9Ii0iIHNrZXRjaDp0eXBlPSJNU0FydGJvYXJkR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMjEuMDAwMDAwLCAtMjQ2LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICA8ZyBpZD0id2F0ZXItMiIgc2tldGNoOnR5cGU9Ik1TTGF5ZXJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIxLjAwMDAwMCwgMjQ2LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTAsNy42OTg1NzM5NSBMNC42NzA3MTk2MmUtMTUsNjAgTDYwMCw2MCBMNjAwLDcuMzUyMzA0NjEgQzYwMCw3LjM1MjMwNDYxIDQzMi43MjEwNTIsMjQuMTA2NTEzOCAyOTAuNDg0MDQsNy4zNTY3NDE4NyBDMTQ4LjI0NzAyNywtOS4zOTMwMzAwOCAwLDcuNjk4NTczOTUgMCw3LjY5ODU3Mzk1IFoiIGlkPSJQYXRoLTIiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMwMC4wMDAwMDAsIDMwLjAwMDAwMCkgc2NhbGUoLTEsIDEpIHRyYW5zbGF0ZSgtMzAwLjAwMDAwMCwgLTMwLjAwMDAwMCkgIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==") repeat-x;
- background-size: 600rpx;
- -webkit-animation: wave-animation-2 6s infinite linear;
- animation: wave-animation-2 6s infinite linear
- }
- .water-1,
- .water-2 {
- position: absolute;
- width: 100%;
- height: 60rpx
- }
- .back-white {
- background: #fff
- }
- @keyframes wave-animation-1 {
- 0% {
- background-position: 0 top
- }
- 100% {
- background-position: 600rpx top
- }
- }
- @keyframes wave-animation-2 {
- 0% {
- background-position: 0 top
- }
- 100% {
- background-position: 600rpx top
- }
- }
-
- page {
- background-color: #ffffff;
- }
- .comment-hover-class {
- background-color: #f3dada;
- }
- image {
- will-change: transform;
- }
- .content {
- &-imgbox {
- position: relative;
- .bgimg {
- width: 100%;
- height: 560rpx;
- }
- .headimg {
- width: 110rpx;
- height: 110rpx;
- border-radius: 6rpx;
- position: absolute;
- z-index: 99;
- right: 30rpx;
- bottom: -20rpx;
- }
- .nickname {
- color: #ffffff;
- position: absolute;
- right: 170rpx;
- bottom: 20rpx;
- z-index: 99;
- font-size: 30rpx;
- font-weight: bold;
- }
- }
- &-circle {
- &-box {
- padding: 18rpx 30rpx;
- border-bottom: 1rpx solid #f2eeee;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- .headimg {
- width: 80rpx;
- height: 80rpx;
- .img {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- }
- .content {
- flex: 1;
- padding-left: 18rpx;
- font-size: 30rpx;
- &-name {
- color: #36648b;
- }
- &-desc {
- color: $u-main-color;
- padding-top: 6rpx;
- line-height: 34rpx;
- }
- &-img {
- margin-top: 10rpx;
- .img-1 {
- will-change: transform;
- width: 280rpx;
- height: auto;
- max-height: 400rpx;
- }
- &-more {
- display: flex;
- flex-wrap: wrap;
- .img-more {
- display: block;
- width: 160rpx;
- height: 160rpx;
- margin: 4rpx;
- }
- .img-3 {
- margin: 4rpx 4rpx 4rpx 0;
- }
- }
- }
- .msg-box {
- width: 100%;
- background-color: #f5f5f5;
- margin-top: 15rpx;
- border-radius: 4rpx;
- .thumbinfo {
- // border-bottom: 1rpx solid gray;
- padding: 6rpx;
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- &-icon {
- width: 28rpx;
- height: 28rpx;
- line-height: 28rpx;
- margin-right: 15rpx;
- text-align: center;
- vertical-align: middle;
- padding-left: 10rpx;
- }
- &-name {
- font-size: 28rpx;
- color: #36648b;
- }
- }
- .comment {
- padding: 6rpx 8rpx;
- color: $uni-text-color;
- font-size: 28rpx;
- &-box {
- padding: 4rpx 0;
- &-name {
- color: #36648b;
- .callback {
- color: $uni-text-color;
- }
- }
- &-content {
- word-break: break-all;
- }
- }
- }
- }
- }
- .relavivetime {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 26rpx;
- .time {
- color: $uni-text-color-grey;
- }
- .icon-box {
- display: flex;
- align-items: center;
- &-item {
- background-color: #f5f5f5;
- padding: 4rpx 12rpx;
- border-radius: 6rpx;
- &.thumb {
- margin-right: 10rpx;
- }
- }
- .img {
- width: 34rpx;
- height: 34rpx;
- }
- }
- }
- }
- }
- .input-box {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- box-sizing: content-box;
- z-index: 999;
- background-color: #F6F7F8;
- /* #ifdef MP-WEIXIN */
- padding-bottom: 0rpx;
- /* #endif */
- /* #ifndef MP-WEIXIN */
- margin-bottom: 0rpx;
- margin-bottom: constant(safe-area-inset-bottom);
- margin-bottom: env(safe-area-inset-bottom);
- /* #endif */
- &-flex {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: nowrap;
- flex-direction: row;
- padding: 0 20rpx;
- height: 100rpx;
- &-grow {
- flex-grow: 1;
- .content {
- background-color: #fff;
- height: 60rpx;
- padding: 0 20rpx;
- border-radius: 12rpx;
- font-size: 28rpx;
- caret-color: $uni-color-success;
- }
- }
- .btn {
- margin-left: 20rpx;
- background-color: $u-type-success;
- border: none;
- }
- }
- }
- .signature {
- display: flex;
- justify-content: flex-end;
- font-size: 24rpx;
- color: gray;
- padding: 35rpx 30rpx 35rpx 100rpx;
- text-align: right;
- }
- .slot-wrap {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- }
- }
- </style>
|