调整业绩账户,新增微信支付渠道

This commit is contained in:
唐明明
2023-03-07 14:48:29 +08:00
parent df747b9f0a
commit c40a262154
7 changed files with 165 additions and 55 deletions

48
pages/im/chat.vue Normal file
View File

@@ -0,0 +1,48 @@
<template>
<view class="chat">
<scroll-view class="chat-soll" scroll-y>
<view v-for="(item, index) in 50" :key="index">{{item}}滚动的聊天记录</view>
</scroll-view>
<view class="chat-footer">
<view class="chat-inputs">
<view class="">常用语</view>
<input type="text" placeholder="输入框" confirm-type="send">
<view class="">表情</view>
<view class=""></view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.chat{
background: #ddd;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
.chat-soll{
height: 50vh;
}
.chat-footer{
background: white;
padding: 30rpx 30rpx 60rpx 30rpx;
.chat-inputs{
display: flex;
background: #f6f7f9;
height: 80rpx;
border-radius: 40rpx;
}
}
}
</style>