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
5e4254cb
Commit
5e4254cb
authored
Nov 19, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审核
parent
92d71afe
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
3241 additions
and
3 deletions
+3241
-3
App.vue
src/App.vue
+1
-1
NewBillModule.vue
src/pages/financial/components/NewBillModule.vue
+440
-0
BasicDocuments.vue
src/pages/financial/financalDocument/BasicDocuments.vue
+2777
-0
FinancialDocuments.vue
src/pages/financial/financalDocument/FinancialDocuments.vue
+1
-1
addFinancialDocuments.vue
...ages/financial/financalDocument/addFinancialDocuments.vue
+12
-1
addReceivablesDocuments.vue
...es/financial/financalDocument/addReceivablesDocuments.vue
+5
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/App.vue
View file @
5e4254cb
...
...
@@ -12,7 +12,7 @@ export default {
<
style
>
@import
url('~assets/css/font.css')
;
@import
url('//at.alicdn.com/t/font_2077629_
xkbuljsn3gc
.css')
;
@import
url('//at.alicdn.com/t/font_2077629_
yp91bsm9op
.css')
;
html
,
body
,
...
...
src/pages/financial/components/NewBillModule.vue
0 → 100644
View file @
5e4254cb
This diff is collapsed.
Click to expand it.
src/pages/financial/financalDocument/BasicDocuments.vue
0 → 100644
View file @
5e4254cb
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/pages/financial/financalDocument/FinancialDocuments.vue
View file @
5e4254cb
...
...
@@ -966,7 +966,7 @@
</
template
>
</td>
<td
valign=
"middle"
>
<img
class=
"_head_img"
:src=
"item.EmPhoto"
alt=
""
>
<!-- <img class="_head_img" :src="item.EmPhoto" alt="">--
>
<span>
{{item.EmName}}
</span>
</td>
<td
class=
"_btn_group"
>
...
...
src/pages/financial/financalDocument/addFinancialDocuments.vue
View file @
5e4254cb
...
...
@@ -1577,8 +1577,14 @@
if
(
this
.
orderObj
&&
this
.
orderObj
.
companyIDList
&&
this
.
orderObj
.
companyIDList
.
length
>
0
)
{
this
.
msg
.
RB_Branch_Id
=
this
.
orderObj
.
companyIDList
[
0
];
}
else
if
(
this
.
$route
.
query
.
companyID
)
{
this
.
msg
.
RB_Branch_Id
=
parseInt
(
this
.
$route
.
query
.
companyID
);
if
(
this
.
$route
.
query
.
companyID
!==
'undefined'
){
this
.
msg
.
RB_Branch_Id
=
parseInt
(
this
.
$route
.
query
.
companyID
);
}
else
{
this
.
msg
.
RB_Branch_Id
=
this
.
getLocalStorage
().
School_Id
;
}
}
this
.
admin_get_DepartmentGetList
(
this
.
msg
.
RB_Branch_Id
);
this
.
msg
.
PayDate
=
this
.
msg
.
PayDate
;
this
.
msg
.
detailList
=
[];
...
...
@@ -1697,6 +1703,11 @@
if
(
Bid
==
0
)
{
this
.
chosenPeople
=
[];
}
this
.
CompanyList
.
forEach
(
x
=>
{
//给msg传校区的名字
if
(
x
.
SId
==
Bid
){
this
.
msg
.
RB_BranchName
=
x
.
SName
;
}
})
// this.msg.RB_Depart_Id = '';
// this.departmentMsg.RB_Branch_Id = Bid ? Bid : -1;
this
.
departmentMsg
.
RB_Branch_Id
=
-
1
;
...
...
src/pages/financial/financalDocument/addReceivablesDocuments.vue
View file @
5e4254cb
...
...
@@ -1707,6 +1707,11 @@
// this.departmentMsg.RB_Branch_Id = this.msg.RB_Branch_Id
this
.
departmentMsg
.
RB_Branch_Id
=
-
1
;
this
.
msg
.
RB_Depart_Id
=
''
;
this
.
companyList
.
forEach
(
x
=>
{
//给msg传校区的名字
if
(
x
.
SId
==
Bid
){
this
.
msg
.
RB_BranchName
=
x
.
SName
;
}
})
getDeptList
(
this
.
departmentMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
departmentList
=
res
.
Data
;
...
...
src/router/routes.js
View file @
5e4254cb
...
...
@@ -286,6 +286,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/financial/financalDocument/FinancialDocumentsDetail.vue"
)
},
{
path
:
"/financial/financalDocument/BasicDocuments"
,
//财务 财务单据 审核标准单据
component
:
()
=>
import
(
"pages/financial/financalDocument/BasicDocuments.vue"
)
},
{
path
:
"/test"
,
//API测试
...
...
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