<template>
|
<view class="pages-my">
|
<view class="group">
|
<view class="item line" @click="clickRemoteAssistance">
|
<view>远程协助:</view>
|
<view class="right"></view>
|
<a>
|
<uni-icons class="icon" type="right" size="24" color="#888"></uni-icons>
|
</a>
|
</view>
|
<view class="item line" @click="clickUploadLog">
|
<view>日志上传:</view>
|
<view class="right"></view>
|
<a>
|
<uni-icons class="icon" type="right" size="24" color="#888"></uni-icons>
|
</a>
|
</view>
|
<view class="item line" @click="clickViewInstruction">
|
<view>查看说明书:</view>
|
<view class="right"></view>
|
<a>
|
<uni-icons class="icon" type="right" size="24" color="#888"></uni-icons>
|
</a>
|
</view>
|
<view class="item line" @click="clickApiLog">
|
<view>接口日志:</view>
|
<view class="right"></view>
|
<a>
|
<uni-icons class="icon" type="right" size="24" color="#888"></uni-icons>
|
</a>
|
</view>
|
</view>
|
</view>
|
</template>
|
<script>
|
import {
|
session,
|
showToast,
|
showModal
|
} from "@/comm/utils.js"
|
import {
|
Button
|
} from 'antd-mobile-vue-next'
|
export default {
|
name: "PagesMy",
|
components: {
|
'a-button': Button
|
},
|
data() {
|
return {
|
|
}
|
},
|
onLoad() {
|
|
},
|
computed: {
|
|
},
|
methods: {
|
|
clickRemoteAssistance() {
|
showToast("暂未实现")
|
},
|
clickUploadLog() {
|
showToast("暂未实现")
|
},
|
clickViewInstruction() {
|
uni.navigateTo({
|
url: "/pages/my/instruction"
|
})
|
},
|
clickApiLog() {
|
uni.navigateTo({
|
url: "/pages/my/log"
|
})
|
},
|
|
|
|
|
}
|
}
|
</script>
|
|
<style lang="scss">
|
.pages-my {
|
display: flex;
|
width: 750rpx;
|
height: 100vh;
|
flex-direction: column;
|
|
.group {
|
width: calc(100% - 40rpx);
|
border: 2rpx solid #ccc;
|
border-radius: 20rpx;
|
margin: 20rpx;
|
padding: 0 10rpx;
|
display: flex;
|
flex-direction: column;
|
background-color: #fff;
|
|
.item {
|
width: 100%;
|
padding: 20rpx 10rpx;
|
display: flex;
|
flex-direction: row;
|
align-items: center;
|
|
.right {
|
flex: 1;
|
text-align: right;
|
color: #888;
|
}
|
}
|
|
.line {
|
border-bottom: 2rpx solid #ccc;
|
}
|
}
|
|
|
|
|
}
|
</style>
|