Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
1ade1d64
Commit
1ade1d64
authored
Dec 11, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
2a299ab8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1930 additions
and
1304 deletions
+1930
-1304
DomesticTravelcontract.vue
src/components/DomesticTravelcontract.vue
+1900
-1291
ContractManage.vue
src/components/administrative/ContractManage.vue
+30
-11
onedayTripContract.vue
src/components/onedayTripContract.vue
+0
-2
No files found.
src/components/DomesticTravelcontract.vue
View file @
1ade1d64
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/components/administrative/ContractManage.vue
View file @
1ade1d64
...
...
@@ -79,19 +79,19 @@
<li>
<input
type=
"button"
@
click=
"goContract('onedayTripContract')"
@
click=
"goContract('onedayTripContract'
,0,'一日游合同'
)"
class=
"normalBtn"
value=
"一日游合同"
/>
<input
type=
"button"
@
click=
"goContract('DomesticTravelcontract')"
@
click=
"goContract('DomesticTravelcontract'
,0,'境内旅游合同'
)"
class=
"normalBtn"
value=
"境内旅游合同"
/>
<input
type=
"button"
@
click=
"goContract('SingleContract')"
@
click=
"goContract('SingleContract'
,0,'单项委托合同'
)"
class=
"normalBtn"
value=
"单项委托合同"
/>
...
...
@@ -108,6 +108,7 @@
<tr>
<th
width=
"80"
>
编号
</th>
<th
width=
"120"
>
合同编号
</th>
<th
width=
"120"
>
合同类型
</th>
<th
width=
"150"
>
客户名称
</th>
<th
width=
"150"
>
客户联系电话
</th>
<th
width=
"150"
>
客户地址
</th>
...
...
@@ -119,6 +120,14 @@
<tr
v-for=
"(item, index) in dataList"
:key=
"index"
>
<td>
{{
item
.
ID
}}
</td>
<td>
{{
item
.
T_ContractNum
}}
</td>
<td>
<template
v-if=
"item.CType == 2"
>
境内旅游合同
</
template
>
<
template
v-else-if=
"item.CType == 3"
>
一日游合同
</
template
>
</td>
<td>
{{ item.Tourists_Name }}
</td>
<td>
{{ item.Tourists_Tel }}
</td>
<td>
{{ item.Tourists_Addres }}
</td>
...
...
@@ -132,12 +141,22 @@
content=
"修改"
placement=
"top-start"
>
<el-button
type=
"primary"
icon=
"el-icon-edit"
circle
@
click=
"goContract('onedayTripContract', item.ID)"
></el-button>
<
template
v-if=
"item.CType == 3"
>
<el-button
type=
"primary"
icon=
"el-icon-edit"
circle
@
click=
"goContract('onedayTripContract', item.ID,'一日游合同')"
></el-button>
</
template
>
<
template
v-else-if=
"item.CType == 2"
>
<el-button
type=
"primary"
icon=
"el-icon-edit"
circle
@
click=
"goContract('DomesticTravelcontract', item.ID,'境内旅游合同')"
></el-button>
</
template
>
</el-tooltip>
<el-tooltip
class=
"item"
...
...
@@ -257,7 +276,7 @@ export default {
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
goContract
(
path
,
Id
)
{
goContract
(
path
,
Id
,
title
)
{
var
nId
=
0
;
if
(
Id
&&
Id
>
0
)
{
nId
=
Id
;
...
...
@@ -267,7 +286,7 @@ export default {
query
:
{
id
:
nId
,
blank
:
"y"
,
tab
:
"一日游合同"
tab
:
title
}
});
}
...
...
src/components/onedayTripContract.vue
View file @
1ade1d64
...
...
@@ -1628,7 +1628,6 @@ export default {
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
var
tempObj
=
res
.
data
.
data
;
console
.
log
(
tempObj
,
'tempobj'
);
this
.
CtObj
.
ID
=
tempObj
.
ID
;
this
.
CtObj
.
CType
=
tempObj
.
CType
;
this
.
CtObj
.
T_ContractNum
=
tempObj
.
T_ContractNum
;
...
...
@@ -1766,7 +1765,6 @@ export default {
gItem
.
IsShow
=
0
;
});
}
console
.
log
(
this
.
CtObj
.
ContractGuestList
,
'this.CtObj.ContractGuestList'
);
if
(
tempObj
.
ContractTripList
&&
tempObj
.
ContractTripList
!=
null
&&
...
...
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