调整目录结构

This commit is contained in:
2022-02-24 09:25:35 +08:00
parent ef785ab05f
commit 358372cdba
27 changed files with 238 additions and 217 deletions

24
pages/im/mixins/imBase.js Normal file
View File

@@ -0,0 +1,24 @@
import utils from '@/utils/index.js'
const imBase = {
onLoad() {
console.log('IM BASE MININX');
},
data() {
return {
}
},
computed: {
contact() {
return function(targetId) {
return this.$store.getters.contactInfo(targetId)
}
},
avatarSize() {
return utils.rpx2px(84)
}
}
}
export default imBase