init
This commit is contained in:
18
pages/subpages/services/develop/develop.js
Normal file
18
pages/subpages/services/develop/develop.js
Normal file
@@ -0,0 +1,18 @@
|
||||
Page({
|
||||
data: {
|
||||
title: '二次开发服务'
|
||||
},
|
||||
|
||||
onShareAppMessage: function () {
|
||||
return {
|
||||
title: this.data.title,
|
||||
path: '/pages/subpages/services/develop/develop'
|
||||
}
|
||||
},
|
||||
|
||||
onShareTimeline: function () {
|
||||
return {
|
||||
title: this.data.title
|
||||
}
|
||||
}
|
||||
})
|
||||
5
pages/subpages/services/develop/develop.json
Normal file
5
pages/subpages/services/develop/develop.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"van-icon": "@vant/weapp/icon/index"
|
||||
}
|
||||
}
|
||||
31
pages/subpages/services/develop/develop.wxml
Normal file
31
pages/subpages/services/develop/develop.wxml
Normal file
@@ -0,0 +1,31 @@
|
||||
<view class="container">
|
||||
<view class="content">
|
||||
<text class="title">二次开发服务</text>
|
||||
<text class="description">
|
||||
<text>一、需求方面</text>
|
||||
请提供你的二次开发需求,包括需要修改的功能点、新增的功能模块等。我们会根据你的需求,在原有项目基础上进行功能扩展和优化。
|
||||
<text>二、价格方面</text>
|
||||
我们会先评估你的二次开发需求,根据需求的工作量来定价。一般二次开发的价格在项目定制价格的30%-70%之间,具体取决于修改的幅度和复杂度。
|
||||
<text>三、交付时间</text>
|
||||
一般是1-2周左右的时间,具体取决于修改的内容和复杂度。我们会保证二次开发的质量,确保新功能与原有系统完美融合。
|
||||
<text>四、交付内容</text>
|
||||
包括 修改后的源码 + SQL + 软件环境安装 + 项目在你电脑上成功运行
|
||||
<text>五、交易流程</text>
|
||||
双方确认好需求后先支付订金,订金是二次开发价格的一半,开发完成后会联系你演示给你看(截图或者视频演示),确认没问题之后支付尾款,支付完之后,我们会把修改后的源码发给你,并协助你完成部署。
|
||||
<text>六、售后服务</text>
|
||||
我们交付后保证提供给你的修改后的程序可以正常运行,保证代码注释规范到位,可以对系统运行的小问题进行答疑。如果系统遇到 BUG 无法启动,我们会远程修复保证系统正常运行。
|
||||
<text>七、我们的承诺</text>
|
||||
所有二次开发的代码都是我们自己完全手撸完成,不会使用任何开源的代码二次修改,代码质量有保障。我们会确保新功能与原有系统的完美融合,保证系统的稳定性和可维护性。
|
||||
</text>
|
||||
<text class="note">服务费用:¥300 - ¥600</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/develop/develop.wxss
Normal file
99
pages/subpages/services/develop/develop.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