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
7f0196be
Commit
7f0196be
authored
Aug 11, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增合同列表默认参数功能
parent
7eaf3c3f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
2 deletions
+23
-2
documentApproval.vue
src/pages/administration/documentApproval.vue
+6
-0
registContractManage.vue
src/pages/administration/registContractManage.vue
+4
-0
contractAudit_new.vue
src/pages/sale/contractAudit_new.vue
+7
-1
contractManage.vue
src/pages/sale/contractManage.vue
+6
-1
No files found.
src/pages/administration/documentApproval.vue
View file @
7f0196be
...
...
@@ -549,6 +549,12 @@ export default {
created
()
{
let
data
=
JSON
.
parse
(
localStorage
.
getItem
(
"loginUserInfo"
));
this
.
loginId
=
data
.
data
.
Id
;
if
(
this
.
$route
.
query
.
no
)
{
let
no
=
decodeURIComponent
(
this
.
$route
.
query
.
no
);
this
.
msg
.
Number
=
no
this
.
mymsg
.
Number
=
no
}
},
mounted
()
{
this
.
getList
();
...
...
src/pages/administration/registContractManage.vue
View file @
7f0196be
...
...
@@ -234,6 +234,10 @@
};
},
created
()
{
if
(
this
.
$route
.
query
.
no
){
let
no
=
decodeURIComponent
(
this
.
$route
.
query
.
no
);
this
.
msg
.
ContractNo
=
no
}
this
.
getEmployee
()
},
mounted
()
{
...
...
src/pages/sale/contractAudit_new.vue
View file @
7f0196be
...
...
@@ -378,7 +378,13 @@ export default {
noDataMsg
:
"暂无相关数据"
,
};
},
created
()
{},
created
()
{
if
(
this
.
$route
.
query
.
no
)
{
let
no
=
decodeURIComponent
(
this
.
$route
.
query
.
no
);
this
.
msg
.
ContractNo
=
no
}
},
mounted
()
{
this
.
getList
();
},
...
...
src/pages/sale/contractManage.vue
View file @
7f0196be
...
...
@@ -409,7 +409,12 @@ export default {
isShowEduForm
:
false
,
};
},
created
()
{},
created
()
{
if
(
this
.
$route
.
query
.
no
){
let
no
=
decodeURIComponent
(
this
.
$route
.
query
.
no
);
this
.
msg
.
ContractNo
=
no
}
},
mounted
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
Name
)
{
//从订单完成统计跳转过来的带的参数
...
...
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