基於uni-app+vue+vuex+uniPop+swiper等技術開發仿微信App聊天室實戰專案,實現了傳送訊息、表情(gif動圖),圖片預覽、地圖位置、紅包、仿微信朋友圈等功能。
專案中用到的自定義頂部導航欄及自定義彈窗:
uni-app自定義Modal彈窗元件|仿ios、微信彈窗效果
uni-app自定義導航欄按鈕|uniapp仿微信頂部導航條
- 編輯器:HBuilder X
- 技術框架:uni-app + vue
- 狀態管理:Vuex
- iconfont圖示:阿里字型圖示庫
- 自定義導航欄 + 底部Tabbar
- 彈窗元件:uniPop(基於uni-app封裝模態彈窗)
- 測試環境:H5端 + 小程式 + App端(三端均相容)
import Vue from 'vue'
import App from './App'
// >>>引入css
import './assets/fonts/iconfont.css'
import './assets/css/reset.css'
import './assets/css/layout.css'
// >>>引入狀態管理
import store from './store'
Vue.prototype.$store = store
// >>>引入公共元件
import headerBar from './components/header/header.vue'
import tabBar from './components/tabbar/tabbar.vue'
import popupWindow from './components/popupWindow.vue'
Vue.component('header-bar', headerBar)
Vue.component('tab-bar', tabBar)
Vue.component('popup-window', popupWindow)
// >>>引入uniPop彈窗元件
import uniPop from './components/uniPop/uniPop.vue'
Vue.component('uni-pop', uniPop)
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
user: uni.getStorageSync('user'),
token: uni.getStorageSync('token'),
},
mutations: {
// 儲存token
SET_TOKEN(state, data) {
state.token = data
uni.setStorageSync('token', data)
},
// 儲存使用者名稱
SET_USER(state, data) {
state.user = data
uni.setStorageSync('user', data)
},
...
},
})
<script>
import { mapState, mapMutations } from 'vuex'
import util from '../../utils/util.js'
export default {
data() {
return {
formObj: {},
}
},
computed: {
...mapState(['user', 'token'])
},
mounted() {
// 判斷是否有登入
if(this.user){
uni.redirectTo({url: '/pages/index/index'})
}
},
methods: {
// 提交表單
handleSubmit(e) {
...
}
}
}
</script>
如何實現類似微信朋友圈頁面向下滾動,頂部導航欄由透明變背景色,可以通過onPageScroll函式實現自定義導航上下滑動自動調整導航欄的透明度。
/**
* @tpl 朋友圈模板
*/
<template>
<view class="flexbox flex_col">
<header-bar :isBack="true" title="朋友圈" :bgColor="{background: headerBarBackground}" transparent>
<text slot="back" class="uni_btnIco iconfont icon-arrL"></text>
<text slot="iconfont" class="uni_btnIco iconfont icon-publish mr_5" @tap="handlePublish"></text>
</header-bar>
<view class="uni__scrollview flex1">
<view class="uni-friendZone">
...
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
headerBarBackground: 'transparent'
}
},
onPageScroll : function(e) {
// console.log("滾動距離為:" + e.scrollTop);
this.headerBarBackground = 'rgba(65,168,99,'+e.scrollTop / 200+')'
},
methods: {
...
}
}
</script>
<style scoped>
</style>
uni-app中將聊天資訊滾動到底部 可以藉助scroll-view元件scroll-into-view屬性,不過只能設定一次,不能動態設定!所以只能通過動態改變scroll-top來實現。
<scroll-view id="scrollview" scroll-y="true" :scroll-top="scrollTop" style="height: 100%;">
<view class="uni-chatMsgCnt" id="msglistview">
<view class="msgitem">xxx</view>
<view class="msgitem">xxx</view>
<view class="msgitem">xxx</view>
...
</view>
</scroll-view>
export default {
data() {
return {
scrollTop: 0,
...
}
},
mounted() {
this.scrollToBottom()
},
updated() {
this.scrollToBottom()
},
methods: {
// 滾動至聊天底部
scrollToBottom(t) {
let that = this
let query = uni.createSelectorQuery()
query.select('#scrollview').boundingClientRect()
query.select('#msglistview').boundingClientRect()
query.exec((res) => {
// console.log(res)
if(res[1].height > res[0].height){
that.scrollTop = res[1].height - res[0].height
}
})
},
...
}
}
以上就是基於uniapp仿微信App聊天室介紹,後續會繼續為大家分享實戰專案~~ ??
最後分享兩個最近實戰聊天專案,一起學習!!!