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
4e98e18d
Commit
4e98e18d
authored
Dec 18, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改合同
parent
235a6dfe
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
772 additions
and
204 deletions
+772
-204
App.vue
src/App.vue
+1
-1
TravelContractConfirm.vue
src/components/TravelContractConfirm.vue
+738
-192
ElectronicAudit.vue
src/components/administrative/ElectronicAudit.vue
+22
-11
index.vue
src/components/index.vue
+11
-0
No files found.
src/App.vue
View file @
4e98e18d
...
...
@@ -173,7 +173,7 @@ export default {
}
</
script
>
<
style
>
@import
"//at.alicdn.com/t/font_635492_
3ih8u0oth65
.css"
;
@import
"//at.alicdn.com/t/font_635492_
ocvro9vim9q
.css"
;
@import
"./assets/css/Semibold.css"
;
@import
"./assets/css/global/config.css"
;
@import
"./assets/css/fileIcon.css"
;
...
...
src/components/TravelContractConfirm.vue
View file @
4e98e18d
This diff is collapsed.
Click to expand it.
src/components/administrative/ElectronicAudit.vue
View file @
4e98e18d
...
...
@@ -283,7 +283,7 @@
<td>
{{ item.CreateTimeStr }}
</td>
<td>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"审核通过"
placement=
"top-start"
v-if=
"item.Status==1"
>
<el-button
type=
"
info
"
icon=
"iconfont icon-shenpi"
circle
@
click=
"SubmitContract(item,2)"
></el-button>
<el-button
type=
"
primary
"
icon=
"iconfont icon-shenpi"
circle
@
click=
"SubmitContract(item,2)"
></el-button>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"驳回"
placement=
"top-start"
v-if=
"item.Status==1"
>
<el-button
type=
"info"
icon=
"iconfont icon-shenhebohui"
circle
@
click=
"SubmitContract(item,3)"
>
...
...
@@ -310,13 +310,13 @@
data
()
{
return
{
msgOut
:
{
c
ontractNum
:
''
,
p
roductName
:
''
,
o
rderID
:
''
,
t
cid
:
''
,
s
tartDate
:
''
,
r
eturnDate
:
''
,
a
uditContract
:
''
C
ontractNum
:
''
,
P
roductName
:
''
,
O
rderID
:
''
,
T
cid
:
''
,
S
tartDate
:
''
,
R
eturnDate
:
''
,
A
uditContract
:
''
},
dataListOut
:
[],
loadingOut
:
false
,
...
...
@@ -405,14 +405,25 @@
},
getListOutTract
()
{
this
.
loadingOut
=
true
;
this
.
apiJavaPost
(
"/api/contract/auditContract"
,
this
.
msgOut
,
res
=>
{
//travelcontract_post_GetContractPageListService
this
.
apipost
(
"travelcontract_post_GetContractPageListService"
,
this
.
msgOut
,
res
=>
{
this
.
loadingOut
=
false
;
console
.
log
(
res
,
'ressss'
);
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
dataListOut
=
res
.
data
.
data
;
this
.
dataListOut
=
res
.
data
.
data
.
pageData
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
});
// this.apiJavaPost("/api/contract/auditContract", this.msgOut, res => {
// this.loadingOut = false;
// if (res.data.resultCode === 1) {
// this.dataListOut = res.data.data;
// } else {
// this.Error(res.data.message);
// }
// }, null);
},
//审核通过或者驳回
AuditElec
(
item
,
type
)
{
...
...
src/components/index.vue
View file @
4e98e18d
...
...
@@ -186,6 +186,12 @@
常用付款对象
<i
class=
"iconfont icon-right1"
></i>
</el-dropdown-item>
<el-dropdown-item
class=
"clearfix _dropdown_other"
@
click
.
native=
"goUrlContract()"
>
<i
class=
"iconfont icon-hetong"
style=
"color:#f39c12"
></i>
合同管理
<i
class=
"iconfont icon-right1"
></i>
</el-dropdown-item>
<!-- <el-dropdown-item class="clearfix _dropdown_other" @click.native="settingSys">
<i class="iconfont icon-menu-shezhi1" style="color:#2c3e50"></i>
设置
...
...
@@ -3537,6 +3543,11 @@ export default {
let
eid
=
this
.
getLocalStorage
().
EmployeeId
;
this
.
$router
.
push
({
path
:
'empBankAccount'
,
query
:
{
id
:
eid
,
type
:
10
,
blank
:
'y'
}
});
},
//跳转至合同管理
goUrlContract
()
{
this
.
$router
.
push
({
path
:
'ContractManage'
,
query
:
{
blank
:
'y'
}
});
},
//跳转至个人信息设置
goUrlPersonal
(){
this
.
$router
.
push
({
path
:
'PersonalInfoSet'
,
query
:{}
});
...
...
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