Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李俊赕
self-support
Commits
f2581cd0
Commit
f2581cd0
authored
Apr 17, 2021
by
Facius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
签约页面
parent
a9d72104
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
671 additions
and
617 deletions
+671
-617
agreement.vue
src/components/settle/agreement.vue
+59
-0
pages.json
src/pages.json
+8
-1
prompt.vue
src/pages/settle/prompt.vue
+11
-4
sign-contract.vue
src/pages/settle/sign-contract.vue
+593
-612
tips3@3x.png
src/static/settle/tips3@3x.png
+0
-0
top4@3x.png
src/static/settle/top4@3x.png
+0
-0
No files found.
src/components/settle/agreement.vue
0 → 100644
View file @
f2581cd0
<
template
>
<view
class=
"content-view"
>
<view
class=
"content-list"
v-for=
"(item, index) in info"
:key=
"index"
>
<view
class=
"content-title"
>
{{
item
.
title
}}
</view>
<view
class=
"content-item"
v-for=
"(i, key) in item.content"
:key=
"key"
>
{{
i
}}
</view>
</view>
</view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
},
computed
:
{
info
()
{
return
[{
title
:
'一、入驻条件'
,
content
:
[
'1.年龄在18-60周岁之间;'
,
'2.初中及以上学历;'
,
'3.能熟练使用智能手机;'
,
'4.与人交流时态度良好,沟通顺畅;'
]
},
{
title
:
'一、注意事项'
,
content
:
[
'1.平台会对每笔订单收取一定比例的服务费抽成;'
,
'2.若审核通过,平台工作人员将会电话联系您,并邀约参加师傅培训会,请您耐心等待;'
,
'3.开关插座、线路维修、空开漏保等品类的师傅需持有电工证;'
,
'4.家电清洗品类的师傅需持有专业高温清洗设备,并在每一笔清洗订单中上传设备照片(单独水枪类清洗设备不符合规定);'
,
'5.请如实填写自己擅长品类,如有核实师傅申请的维修品类和开通账号的维修品类不一致,将不给予接单资格;'
]
}]
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.content-view
{
padding
:
16rpx
30rpx
30rpx
30rpx
;
background-color
:
#F4F5F7
;
height
:
360rpx
;
overflow
:
scroll
;
.content-list
{
.content-title
{
font-size
:
28rpx
;
color
:
#333333
;
margin-top
:
14rpx
;
}
.content-item
{
font-size
:
24rpx
;
color
:
#666666
;
padding-top
:
14rpx
;
}
}
}
</
style
>
src/pages.json
View file @
f2581cd0
...
@@ -121,7 +121,9 @@
...
@@ -121,7 +121,9 @@
{
{
"path"
:
"pages/settle/sign-contract"
,
"path"
:
"pages/settle/sign-contract"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"签约页面"
"navigationBarTitleText"
:
"签约页面"
,
"navigationStyle"
:
"custom"
,
//
隐藏系统导航栏
"disableScroll"
:
true
}
}
},
},
{
{
...
@@ -237,6 +239,11 @@
...
@@ -237,6 +239,11 @@
"path"
:
"pages/settle/file"
,
//启动页面,必选
"path"
:
"pages/settle/file"
,
//启动页面,必选
"query"
:
""
//启动参数,在页面的onLoad函数里面得到
"query"
:
""
//启动参数,在页面的onLoad函数里面得到
},
},
{
"name"
:
"签约页面"
,
//模式名称
"path"
:
"pages/settle/sign-contract"
,
//启动页面,必选
"query"
:
""
//启动参数,在页面的onLoad函数里面得到
},
{
{
"name"
:
"缴纳保证金"
,
//模式名称
"name"
:
"缴纳保证金"
,
//模式名称
"path"
:
"pages/settle/pay-ensure"
,
//启动页面,必选
"path"
:
"pages/settle/pay-ensure"
,
//启动页面,必选
...
...
src/pages/settle/prompt.vue
View file @
f2581cd0
<
template
>
<
template
>
<view
class=
"container u-row-between"
v-if=
"info"
>
<view
class=
"container u-row-between"
v-if=
"info"
>
<Settle
:index=
"
2
"
>
<Settle
:index=
"
pageIndex
"
>
<view
class=
"content-view"
>
<view
class=
"content-view"
>
<view
class=
"u-flex u-row-center"
>
<view
class=
"u-flex u-row-center"
>
<image
:class=
"['icon',
{active: status != 1}]"
<image
:class=
"['icon',
{active: status != 1}]"
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
data
()
{
data
()
{
return
{
return
{
pageIndex
:
2
,
settledInfo
:
null
,
settledInfo
:
null
,
promptList
:
[{
promptList
:
[{
status
:
1
,
status
:
1
,
...
@@ -93,9 +94,15 @@
...
@@ -93,9 +94,15 @@
}
}
},
},
onLoad
(
e
)
{
onLoad
(
e
)
{
if
(
e
)
{
if
(
e
.
pageIndex
)
{
this
.
pageIndex
=
e
.
pageIndex
;
}
}
// if(!this.settledInfo){
// if(!this.settledInfo){
// this.getBaseInfo()
// this.getBaseInfo()
// }
// }
},
},
onShow
()
{
onShow
()
{
if
(
!
this
.
settledInfo
)
{
if
(
!
this
.
settledInfo
)
{
...
...
src/pages/settle/sign-contract.vue
View file @
f2581cd0
This diff is collapsed.
Click to expand it.
src/static/settle/tips3@3x.png
0 → 100644
View file @
f2581cd0
2.2 KB
src/static/settle/top4@3x.png
View replaced file @
a9d72104
View file @
f2581cd0
577 KB
|
W:
|
H:
189 KB
|
W:
|
H:
2-up
Swipe
Onion skin
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment