1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view>
- <button type="primary" @click="goDevice">设备管理</button>
- <button type="primary" @click="goWebview('product/manual')">产品手册</button>
- <button type="primary" @click="goWebview('help')">帮助与反馈</button>
- <button type="primary" @click="goWebview('about')">关于</button>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- goWebview(path){
- uni.navigateTo({
- url:`../webview/webview?path=${path}`
- })
- },
- goDevice(){
- uni.navigateTo({
- url:'device/deviceManager/deviceManager'
- })
- }
- }
- }
- </script>
- <style>
- </style>
|