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
3913bfdf
Commit
3913bfdf
authored
5 years ago
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导游计划表修改
parent
cd342ecd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
4 deletions
+50
-4
groundOperation.vue
src/components/dmc/manager/groundOperation.vue
+50
-4
No files found.
src/components/dmc/manager/groundOperation.vue
View file @
3913bfdf
...
@@ -252,6 +252,24 @@
...
@@ -252,6 +252,24 @@
<td
width=
"100"
>
第
{{
item
.
DayNum
}}
天
</td>
<td
width=
"100"
>
第
{{
item
.
DayNum
}}
天
</td>
<td
style=
"text-align:left;"
>
{{
item
.
Title
}}
</td>
<td
style=
"text-align:left;"
>
{{
item
.
Title
}}
</td>
</tr>
</tr>
</table>
<table>
<tr>
<td>
注意事项:
</td>
<td>
<el-input
v-model=
"PostConfig.PlanDescription"
type=
"textarea"
:autosize=
"
{minRows: 3, maxRows: 3 }"
resize="none" placeholder="注意事项" maxlength="300">
</el-input>
</td>
</tr>
<tr>
<td
colspan=
"2"
>
<input
type=
"button"
class=
"leader2Btn"
@
click=
"UpdateLeaderPay"
value=
"保存"
/>
<input
type=
"button"
class=
"leader2Btn"
@
click=
"DownLoadLeaderPay"
value=
"下载"
/>
</td>
</tr>
</table>
</table>
</div>
</div>
</
template
>
</
template
>
...
@@ -273,6 +291,12 @@
...
@@ -273,6 +291,12 @@
//购物店
//购物店
shopList
:
[],
shopList
:
[],
isShow
:
false
,
isShow
:
false
,
PostConfig
:
{
ID
:
0
,
TCIDs
:
""
,
PlanDescription
:
""
},
Loading
:
false
};
};
},
},
methods
:
{
methods
:
{
...
@@ -288,13 +312,13 @@
...
@@ -288,13 +312,13 @@
msg
,
msg
,
res
=>
{
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
console
.
log
(
res
);
this
.
BaseInfo
=
res
.
data
.
data
.
BaseInfo
;
this
.
BaseInfo
=
res
.
data
.
data
.
BaseInfo
;
this
.
PrincipalList
=
res
.
data
.
data
.
PrincipalList
;
this
.
PrincipalList
=
res
.
data
.
data
.
PrincipalList
;
this
.
JourneyTitle
=
res
.
data
.
data
.
JourneyTitle
;
this
.
JourneyTitle
=
res
.
data
.
data
.
JourneyTitle
;
this
.
guestList
=
res
.
data
.
data
.
guestList
;
this
.
guestList
=
res
.
data
.
data
.
guestList
;
this
.
DMCStaticsCommon
=
res
.
data
.
data
.
DMCStaticsCommon
;
this
.
DMCStaticsCommon
=
res
.
data
.
data
.
DMCStaticsCommon
;
this
.
shopList
=
res
.
data
.
data
.
shopList
;
this
.
shopList
=
res
.
data
.
data
.
shopList
;
this
.
PostConfig
=
res
.
data
.
data
.
DMCStaticsCommon
.
LeaderApply
;
this
.
isShow
=
true
;
this
.
isShow
=
true
;
}
else
{
}
else
{
this
.
Error
(
res
.
data
.
message
);
this
.
Error
(
res
.
data
.
message
);
...
@@ -328,12 +352,34 @@
...
@@ -328,12 +352,34 @@
})
})
return
totalPrice
return
totalPrice
},
},
UpdateLeaderPay
()
{
this
.
PostConfig
.
TCIDs
=
this
.
TCIDs
;
this
.
apipost
(
'dmcstatistics_post_AuditLeaderapply'
,
this
.
PostConfig
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{})
},
DownLoadLeaderPay
()
{
let
msg
=
{
TCIDs
:
this
.
TCIDs
,
NewCombinationNum
:
''
,
uid
:
this
.
getLocalStorage
().
EmployeeId
};
this
.
Loading
=
true
;
let
fileName
=
"导游计划表"
+
this
.
$commonUtils
.
getCurrentDate
()
+
".xls"
;
this
.
GetLocalFile
(
"dmcstatistics_get_DwonLoadLeaderapply"
,
qMsg
,
fileName
,
res
=>
{
this
.
Loading
=
false
;
});
}
},
},
mounted
()
{
mounted
()
{
this
.
TCIDs
=
this
.
$route
.
query
.
id
;
this
.
TCIDs
=
this
.
$route
.
query
.
id
;
this
.
PostConfig
.
TCIDs
=
this
.
TCIDs
;
this
.
getConfirmName
();
this
.
getConfirmName
();
}
}
};
};
</
script
>
</
script
>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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