You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
<template>
|
|
<view>
|
|
<view class="bureau">
|
|
<view class="boxx">
|
|
<view class="text">
|
|
1. PC网址:https://keyitest.cn/
|
|
</view>
|
|
<view class="text">
|
|
2. 登陆后,找到右上角【工作台】
|
|
</view>
|
|
<image src="http://image.bjkeyware.com/static/index/renliwb/usePC1.png" mode=""></image>
|
|
<view class="text">
|
|
3. 找到工作台-工具管理-我的工具
|
|
</view>
|
|
<image src="http://image.bjkeyware.com/static/index/renliwb/usePC2.png" mode=""></image>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.bureau {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #f5f7fa;
|
|
padding: 25rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.boxx {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
border-radius: 10rpx;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.text {
|
|
font-weight: 500;
|
|
font-size: 26rpx;
|
|
color: #333333;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
image {
|
|
height: 300rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
</style>
|
|
|