Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
97f19795
Commit
97f19795
authored
Dec 30, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
0032701c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
9 deletions
+33
-9
contractConfirm.vue
src/pages/contractConfirm.vue
+17
-4
contractSign.vue
src/pages/contractSign.vue
+5
-1
contractView.vue
src/pages/contractView.vue
+11
-4
No files found.
src/pages/contractConfirm.vue
View file @
97f19795
...
@@ -439,11 +439,11 @@
...
@@ -439,11 +439,11 @@
</el-row>
</el-row>
</li>
</li>
<li>
<li>
<el-row>
<el-row
style=
"display:flex;align-items:center;"
>
<el-col
:span=
"12"
>
身份证
号
</el-col>
<el-col
:span=
"12"
>
身份证
</el-col>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<span
v-if=
"dataList.StuIDCard"
>
{{
dataList
.
StuIDCard
}}
</span>
<span
v-if=
"dataList.StuIDCard"
>
{{
dataList
.
StuIDCard
}}
</span>
<el-input
v-else
></el-input>
<el-input
v-else
v-model=
"StuIDCard"
></el-input>
</el-col>
</el-col>
</el-row>
</el-row>
</li>
</li>
...
@@ -804,6 +804,7 @@
...
@@ -804,6 +804,7 @@
},
},
dataList
:
{},
dataList
:
{},
ActiveTab
:
1
,
ActiveTab
:
1
,
StuIDCard
:
''
};
};
},
},
created
()
{
created
()
{
...
@@ -830,12 +831,24 @@
...
@@ -830,12 +831,24 @@
},
},
//跳转至合同签名
//跳转至合同签名
goSign
(){
goSign
(){
if
(
this
.
dataList
.
StuIDCard
==
''
||
this
.
dataList
.
StuIDCard
==
null
){
if
(
this
.
StuIDCard
==
''
){
this
.
ActiveTab
=
2
;
this
.
$q
.
notify
({
type
:
'negative'
,
position
:
"top"
,
message
:
`请输入身份证号`
})
return
}
}
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'/contractSign'
,
path
:
'/contractSign'
,
query
:
{
query
:
{
a
:
encodeURIComponent
(
Encrypt
(
this
.
gmsg
.
ContractId
.
toString
())),
a
:
encodeURIComponent
(
Encrypt
(
this
.
gmsg
.
ContractId
.
toString
())),
Money
:
this
.
dataList
.
Money
,
Money
:
this
.
dataList
.
Money
,
StudentName
:
this
.
dataList
.
StudentName
StudentName
:
this
.
dataList
.
StudentName
,
StuIDCard
:
this
.
StuIDCard
}
}
});
});
}
}
...
...
src/pages/contractSign.vue
View file @
97f19795
...
@@ -98,7 +98,8 @@
...
@@ -98,7 +98,8 @@
moving
:
false
,
// 是否正在绘制中且移动
moving
:
false
,
// 是否正在绘制中且移动
msg
:
{
msg
:
{
ContractId
:
0
,
ContractId
:
0
,
Sign
:
''
Sign
:
''
,
StuIDCard
:
''
},
},
Money
:
0
,
Money
:
0
,
Type
:
1
,
//1为电子合同签字 2为退课协议签字
Type
:
1
,
//1为电子合同签字 2为退课协议签字
...
@@ -132,6 +133,9 @@
...
@@ -132,6 +133,9 @@
if
(
this
.
$route
.
query
.
Type
)
{
if
(
this
.
$route
.
query
.
Type
)
{
this
.
Type
=
this
.
$route
.
query
.
Type
;
this
.
Type
=
this
.
$route
.
query
.
Type
;
}
}
if
(
this
.
$route
.
query
.
StuIDCard
){
this
.
msg
.
StuIDCard
=
this
.
$route
.
query
.
StuIDCard
;
}
},
},
methods
:
{
methods
:
{
// 触摸(开始)
// 触摸(开始)
...
...
src/pages/contractView.vue
View file @
97f19795
...
@@ -149,9 +149,14 @@
...
@@ -149,9 +149,14 @@
<div
class=
"contractCompany"
>
<div
class=
"contractCompany"
>
甲方:成都市锦江区甲鹤外语培训学校有限公司
甲方:成都市锦江区甲鹤外语培训学校有限公司
</div>
</div>
<div
class=
"contractCompany"
>
<div
class=
"contractCompany"
style=
"display:flex;justify-content:space-between;"
>
乙方:
<div
class=
"contractInput"
style=
"width:360px;text-align:left;text-indent:10px;font-size:20px;"
>
{{
dataList
.
StudentName
}}
</div>
<div>
身份证:
{{
dataList
.
StuIDCard
}}
乙方:
<div
class=
"contractInput"
style=
"width:360px;text-align:left;text-indent:10px;font-size:20px;"
>
{{
dataList
.
StudentName
}}
</div>
</div>
<div>
身份证:
<div
class=
"contractInput"
style=
"width:360px;text-align:left;text-indent:10px;font-size:20px;"
>
{{
dataList
.
StuIDCard
}}
</div>
</div>
</div>
</div>
<div
class=
"operationAgree"
>
甲鹤日语课程协议
</div>
<div
class=
"operationAgree"
>
甲鹤日语课程协议
</div>
<div
class=
"operationDate"
>
<div
class=
"operationDate"
>
...
@@ -674,7 +679,9 @@
...
@@ -674,7 +679,9 @@
<div
class=
"contractContent"
>
6、本合同自乙方缴纳全额课程学费及签订协议之日起正式生效。
</div>
<div
class=
"contractContent"
>
6、本合同自乙方缴纳全额课程学费及签订协议之日起正式生效。
</div>
</div>
</div>
<div
class=
"conTractInner ConTract_Line"
style=
"margin-left:5px;"
>
<div
class=
"conTractInner ConTract_Line"
style=
"margin-left:5px;"
>
<div
class=
"contractContent"
style=
"margin:20px 0 100px 0;"
>
7、本合同协议部分到此为止,以下为空白。
</div>
<div
class=
"contractContent"
style=
"margin:20px 0 20px 0;"
>
7、本合同协议部分到此为止,以下为空白。
</div>
<div
class=
"comFirstTitle"
>
十、合同补充协议
</div>
<div
class=
"contractContent"
style=
"margin-bottom:100px;"
>
{{
dataList
.
CourseContracrInfo
}}
</div>
<div
class=
"contractContent"
style=
"position:relative;"
>
<div
class=
"contractContent"
style=
"position:relative;"
>
甲方签字(盖章):
<img
v-if=
"dataList.IsCompanySeal==1&&dataList.GroupSealImg"
style=
"width:100px;position:absolute;top:-40px;"
:src=
"dataList.GroupSealImg"
/>
甲方签字(盖章):
<img
v-if=
"dataList.IsCompanySeal==1&&dataList.GroupSealImg"
style=
"width:100px;position:absolute;top:-40px;"
:src=
"dataList.GroupSealImg"
/>
</div>
</div>
...
...
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