114 lines
1.9 KiB
Vue
114 lines
1.9 KiB
Vue
<template>
|
|
<view v-if="isShow" class="comment ">
|
|
<view class="mask" @click="clickCancle()"></view>
|
|
<view class="comment-bottom">
|
|
<textarea class="bottom-textarea" :cursor-spacing="setHight()" v-model="content" focus placeholder-style="color:#666666" :placeholder="placeholder" />
|
|
<view class="bottom-view" id="bottomView"><cover-view class="send-btn" @click="clickSend">发送</cover-view></view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
placeholder: {
|
|
type: String,
|
|
default: '请输入评论内容…'
|
|
}
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
isShow: false,
|
|
content: ''
|
|
};
|
|
},
|
|
watch: {},
|
|
mounted() {
|
|
|
|
},
|
|
methods: {
|
|
setHight() {
|
|
return uni.upx2px(80);
|
|
},
|
|
clickSend(event) {
|
|
event.stopPropagation();
|
|
this.$emit('sendComment', this.content);
|
|
//发送后清空数据
|
|
this.content = '';
|
|
this.isShow = false;
|
|
},
|
|
open() {
|
|
this.isShow = true;
|
|
},
|
|
clickCancle() {
|
|
this.isShow = false;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.comment {
|
|
z-index: 1000;
|
|
width: 750upx;
|
|
height: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.mask {
|
|
width: 750upx;
|
|
height: 1624upx;
|
|
position: fixed;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
|
|
}
|
|
.mask-hidden {
|
|
display: none;
|
|
}
|
|
.comment-bottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 750upx;
|
|
background-color: white;
|
|
position: fixed;
|
|
z-index:1000;
|
|
bottom: 0;
|
|
border-bottom-style: solid ;
|
|
border-bottom-width: 1px;
|
|
border-bottom-color: #f2f2f2;
|
|
|
|
}
|
|
|
|
.bottom-textarea {
|
|
margin: 0 auto;
|
|
width: 690upx;
|
|
margin-top: 20rpx;
|
|
height: 210rpx;
|
|
border-bottom-style: solid ;
|
|
border-bottom-width: 1px;
|
|
border-bottom-color: #FFFFFF;
|
|
}
|
|
.bottom-view {
|
|
margin: 0rpx 30rpx;
|
|
display: flex;
|
|
height: 80rpx;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.send-btn {
|
|
width: 100rpx;
|
|
text-align: end;
|
|
font-size: 30rpx;
|
|
align-items: center;
|
|
color: #d81e07;
|
|
}
|
|
</style>
|