代码拉取完成,页面将自动刷新
同步操作将从 123yyh123/xiaofanshu_font 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<script>
import {
checkToken,
getTrtcUserSig
} from './apis/auth_apis.js';
import {
getUserInfo
} from './apis/user_service.js';
import {
saveFile
} from './utils/fileUtil.js'
import list from './uni_modules/uview-ui/libs/config/props/list.js';
import genTestUserSig from './debug/GenerateTestUserSig.js'
// 原生插件引入提供如下接口:1V1音视频,群聊音视频。
const TUICallKit = uni.requireNativePlugin('TencentCloud-TUICallKit');
// 监听通话的状态,例如:异常、通话开始、结束等。
const TUICallingEvent = uni.requireNativePlugin('globalEvent');
// 目前仅提供如下接口:结束通话,设置用户视频画面的渲染模式
const TUICallEngine = uni.requireNativePlugin('TencentCloud-TUICallKit-TUICallEngine');
export default {
onLaunch: function() {
console.log('App Launch')
uni.$TUICallKit = TUICallKit;
uni.$TUICallingEvent = TUICallingEvent;
uni.$TUICallEngine = TUICallEngine;
this.$sqliteUtil.init()
// 监听中间按钮点击事件
uni.onTabBarMidButtonTap(() => {
console.log("点击了中间按钮")
uni.showActionSheet({
itemList: ['发布图文', '发布视频'],
success: function(res) {
console.log(res.tapIndex)
if (res.tapIndex == 0) {
uni.chooseImage({
count: 9,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success: function(res) {
// tempFilePath可以作为img标签的src属性显示图片
let tempFilePaths = res.tempFilePaths
let filePaths = []
tempFilePaths.forEach(item => {
uni.saveFile({
tempFilePath: item,
success: function(res) {
filePaths.push(res.savedFilePath)
if (filePaths.length == tempFilePaths.length) {
uni.navigateTo({
url: '/pages/publishNotes/publishNotes?update=0&type=0&tempFilePaths=' +
JSON.stringify(filePaths)
// url: '/pages/publishNotes/publishNotes?update=1&tableId=3'
})
}
}
});
})
}
})
} else if (res.tapIndex == 1) {
uni.chooseVideo({
sourceType: ['album', 'camera'],
maxDuration: 60,
camera: 'back',
success: function(res) {
let tempFilePath = res.tempFilePath
uni.saveFile({
tempFilePath: tempFilePath,
success: function(res) {
uni.navigateTo({
url: '/pages/publishNotes/publishNotes?update=0&type=1&tempFilePaths=' +
JSON.stringify([res.savedFilePath])
})
}
});
}
});
}
},
fail: function(res) {
console.log(res.errMsg)
}
})
})
if (uni.getStorageSync('token') == null || uni.getStorageSync('token') == '') {
this.$ws.completeClose()
uni.reLaunch({
url: '/pages/login/login'
})
return
}
checkToken().then(res => {
if (res.code === 200) {
getUserInfo({
userId: uni.getStorageSync('userInfo').id
}).then(res => {
console.log(res)
if (res.code === 20010) {
uni.setStorageSync('userInfo', res.data)
this.$ws.init();
this.$callUtils.login(res.data.id)
}
})
}
return
})
},
onShow: function() {
console.log('App Show')
this.$ws.setCornerMark()
uni.onNetworkStatusChange(res => {
if (res.isConnected) {
uni.showToast({
title: '网络已恢复',
icon: 'none',
duration: 1000,
mask: true
})
if (this.$ws.socketTask == null && uni.getStorageInfoSync('userInfo') != null) {
this.$ws.init()
}
} else {
uni.showToast({
title: '网络已断开',
icon: 'none',
duration: 1000,
mask: true
})
this.$ws.completeClose()
}
})
},
onHide: function() {
console.log('App Hide')
},
}
</script>
<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "@/uni_modules/uview-ui/index.scss";
</style>>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。