init
This commit is contained in:
47
pages/subpages/services/document/document.js
Normal file
47
pages/subpages/services/document/document.js
Normal file
@@ -0,0 +1,47 @@
|
||||
Page({
|
||||
data: {
|
||||
// 页面数据
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
// 页面加载时的逻辑
|
||||
},
|
||||
|
||||
contactService() {
|
||||
wx.showModal({
|
||||
title: '联系客服',
|
||||
content: '请添加客服微信:XXXXX(替换为实际客服微信号)',
|
||||
showCancel: false,
|
||||
success(res) {
|
||||
if (res.confirm) {
|
||||
// 可以在这里添加复制微信号到剪贴板的功能
|
||||
wx.setClipboardData({
|
||||
data: 'XXXXX',
|
||||
success(res) {
|
||||
wx.showToast({
|
||||
title: '微信号已复制',
|
||||
icon: 'success'
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
onShareAppMessage() {
|
||||
return {
|
||||
title: '文档服务',
|
||||
path: '/pages/subpages/services/document/document',
|
||||
imageUrl: '' // 微信会自动使用页面截图
|
||||
};
|
||||
},
|
||||
|
||||
onShareTimeline() {
|
||||
return {
|
||||
title: '文档服务',
|
||||
query: '',
|
||||
imageUrl: '' // 微信会自动使用页面截图
|
||||
};
|
||||
}
|
||||
});
|
||||
3
pages/subpages/services/document/document.json
Normal file
3
pages/subpages/services/document/document.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
61
pages/subpages/services/document/document.wxml
Normal file
61
pages/subpages/services/document/document.wxml
Normal file
@@ -0,0 +1,61 @@
|
||||
<view class="container">
|
||||
<view class="content">
|
||||
<text class="title">文档服务</text>
|
||||
<text class="description">
|
||||
<text>一、服务内容</text>
|
||||
我们提供专业的项目文档服务,包括论文初稿、开题报告、任务书、答辩PPT等各类文档的编写服务。根据您的具体需求,提供不同查重率要求的文档服务。
|
||||
<text>二、服务项目</text>
|
||||
1. 根据我们的模板编写:
|
||||
1.1 万方查重初稿
|
||||
- 使用我们的文章模板
|
||||
- 字数约1.2万字
|
||||
- 详细介绍项目功能
|
||||
- 万方查重率20%以下
|
||||
- 包含答辩PPT
|
||||
- 价格:200元/篇
|
||||
|
||||
1.2 维普查重初稿
|
||||
- 使用我们的文章模板
|
||||
- 字数约1.2万字
|
||||
- 详细介绍项目功能
|
||||
- 维普查重率25%以下
|
||||
- 包含答辩PPT
|
||||
- 价格:300元/篇
|
||||
|
||||
1.3 其他文档服务
|
||||
- 开题报告
|
||||
- 任务书
|
||||
- 答辩PPT
|
||||
- 价格:100元/份
|
||||
|
||||
2. 根据学生要求的模板编写:
|
||||
- 按照客户提供的论文要求
|
||||
- 保证主流查重率(如维普35%以下)
|
||||
- 不包含答辩PPT
|
||||
- 价格:500元/篇
|
||||
<text>三、服务流程</text>
|
||||
1. 需求沟通:了解您的具体文档需求和查重要求
|
||||
2. 模板确认:确认使用我们的模板还是您的模板
|
||||
3. 文档编写:按照要求编写相应文档
|
||||
4. 查重确认:提供查重报告供您确认
|
||||
5. 文档交付:交付最终文档和相关材料
|
||||
<text>四、服务优势</text>
|
||||
1. 专业团队:拥有多年论文写作经验
|
||||
2. 质量保证:确保文档质量和查重率要求
|
||||
3. 快速交付:一般3-5个工作日完成
|
||||
4. 售后保障:提供修改和答疑服务
|
||||
<text>五、服务承诺</text>
|
||||
我们承诺提供专业、规范的文档服务,确保文档内容符合要求,查重率达标,并按时交付。如有任何问题,我们将及时响应和处理。
|
||||
</text>
|
||||
<text class="note">服务费用:100元 - 500元</text>
|
||||
<text class="node1">购买文档服务请长按二维码添加微信(forfeastcoding),备注小程序</text>
|
||||
<image class="qrcode" src="../../../../static/tabbar/qrcode.jpg" show-menu-by-longpress="true"></image>
|
||||
</view>
|
||||
|
||||
<view class="article-action">
|
||||
<button class="share-btn" size="mini" open-type="share" plain="true">
|
||||
<van-icon name="guide-o" />
|
||||
<text>分享</text>
|
||||
</button>
|
||||
</view>
|
||||
</view>
|
||||
99
pages/subpages/services/document/document.wxss
Normal file
99
pages/subpages/services/document/document.wxss
Normal file
@@ -0,0 +1,99 @@
|
||||
.container {
|
||||
min-height: 100vh;
|
||||
background-color: #fff;
|
||||
padding: 30rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
padding-bottom: 140rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 40rpx;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
display: block;
|
||||
margin-bottom: 40rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
line-height: 2;
|
||||
white-space: pre-wrap;
|
||||
margin-bottom: 30rpx;
|
||||
padding: 0 20rpx;
|
||||
}
|
||||
|
||||
.description text {
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
margin-top: -30rpx;
|
||||
margin-bottom: -30rpx;
|
||||
}
|
||||
|
||||
.article-action {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 100rpx;
|
||||
background: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
padding: 0 30rpx;
|
||||
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.share-btn {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0 30rpx !important;
|
||||
font-size: 17px !important;
|
||||
color: #666 !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.share-btn van-icon {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.share-btn text {
|
||||
margin-left: 4rpx;
|
||||
}
|
||||
|
||||
.note {
|
||||
display: block;
|
||||
font-size: 28rpx;
|
||||
color: rgb(6, 80, 240);
|
||||
margin: 20rpx 0;
|
||||
padding: 20rpx;
|
||||
background: rgba(6, 80, 240, 0.05);
|
||||
border-radius: 12rpx;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.node1 {
|
||||
margin-top: 30rpx;
|
||||
font-size: 26rpx;
|
||||
color: rgb(252, 7, 7);
|
||||
display: block;
|
||||
text-align: center;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.qrcode {
|
||||
margin: 20rpx auto;
|
||||
height: 300rpx;
|
||||
width: 300rpx;
|
||||
display: block;
|
||||
border-radius: 12rpx;
|
||||
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
Reference in New Issue
Block a user