| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="content">
- <scroll-view class="chat-body" scroll-y scroll-with-animation>
- </scroll-view>
- </view>
- </template>
- <script>
- var app;
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- app = this;
- uni.setNavigationBarTitle({
- title:"与xxx对话"
- })
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .content{
- position: fixed;
- z-index: 1;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background-color: #ededed;
- display: flex;
- flex-direction: column;
- }
- .chat-body{
- height: 0;
- flex: 1;
- }
- </style>
|