This commit is contained in:
Gdpao
2020-08-11 10:00:06 +08:00
parent e6f73f01cd
commit aad2bca5c6
13 changed files with 137 additions and 35 deletions

View File

@@ -152,16 +152,9 @@
// type: 'success',
// url: '/pageA/topick/topick'
// })
} else if(res.errCode == 2){
this.$refs.uToast.show({
title: res.message,
type: 'primary',
url: '/pageA/login/login'
})
} else {
this.$refs.uToast.show({
title: res.message,
type: 'primary'
})
}
})

30
pageA/start/start.nvue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<view>
<video :src="src" class="" controls></video>
</view>
</template>
<script>
export default {
data() {
return {
src: "",
}
},
onLoad() {
},
methods: {
// 获取
getVideoInfo() {
}
// 获取手机信息
getPhoneInfo() {}
}
}
</script>
<style>
</style>