Files
dvcp_v2_wxcp_app/library/project/saas/AppHome/HelpDocs.vue
2024-10-31 14:34:57 +08:00

89 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="HelpDocs">
<div class="bg-fff title">
<p>系统初始化</p>
<p>进入应用-网格管理模块添加网格信息</p>
<p>进入应用-网格管理模块添加网格员相关信息</p>
<p>进入首页-居民档案添加居民档案</p>
<p>进入应用-网格管理-选中网格员添加责任家庭</p>
</div>
<div class="bg-fff">
<div class="flex">
<span>如有相关问题请联系客服</span>
<div @click="callPhone('18186229224')">18186229224<img src="./img/my/phone-icon.png" /></div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "HelpDocs",
data() {
return {
}
},
methods: {
copy() {
uni.setClipboardData({
data: 'https://saasweb.icunwei.com/login', // e是你要保存的内容
success: () => {
uni.showToast({
title:'复制成功',
icon:'none'
})
}
})
},
callPhone(phoneNumber) {
uni.makePhoneCall({phoneNumber})
}
},
}
</script>
<style lang="scss" scoped>
.HelpDocs {
width: 100%;
height: 100%;
background-color: #F5F6F7;
.bg-fff {
background-color: #fff;
}
.title {
padding: 30px;
margin-bottom: 20px;
p {
width: 100%;
font-size: 28px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #333;
line-height: 40px;
}
}
.flex {
display: flex;
// justify-content: space-between;
padding: 0 30px;
line-height: 100px;
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #030303;
div {
color: #3975C6;
margin-left: 32px;
}
.copy {
margin-left: 24px;
}
img {
width: 48px;
height: 48px;
margin-left: 16px;
vertical-align: middle;
}
}
}
</style>