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
569a73cf
Commit
569a73cf
authored
Apr 01, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增挂账、发票等页面
parent
a2d0f03d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
323 deletions
+38
-323
zh.js
src/assets/common/lang/zh.js
+2
-0
zh.js.rej
src/assets/common/lang/zh.js.rej
+0
-323
cssReset.css
src/assets/css/cssReset.css
+1
-0
config.js
src/router/config.js
+35
-0
No files found.
src/assets/common/lang/zh.js
View file @
569a73cf
...
@@ -1218,6 +1218,8 @@ export const fnc = {
...
@@ -1218,6 +1218,8 @@ export const fnc = {
a_bqyue
:
'本期余额'
,
a_bqyue
:
'本期余额'
,
a_jfbishu
:
'借方笔数'
,
a_jfbishu
:
'借方笔数'
,
a_dfbishu
:
'贷方笔数'
,
a_dfbishu
:
'贷方笔数'
,
g_gzduixiang
:
'挂账对象'
,
g_qxzgzzhu
:
'请选择挂账账户'
,
}
}
export
const
tips
=
{
export
const
tips
=
{
tips
:
'提示'
,
tips
:
'提示'
,
...
...
src/assets/common/lang/zh.js.rej
deleted
100644 → 0
View file @
a2d0f03d
This diff is collapsed.
Click to expand it.
src/assets/css/cssReset.css
View file @
569a73cf
...
@@ -132,6 +132,7 @@ input:-webkit-autofill{-webkit-box-shadow: 0 0 0px 1000px white inset;}
...
@@ -132,6 +132,7 @@ input:-webkit-autofill{-webkit-box-shadow: 0 0 0px 1000px white inset;}
.w780
{
width
:
780px
!important
;}
.w780
{
width
:
780px
!important
;}
.w50
{
width
:
50px
!important
;}
.w50
{
width
:
50px
!important
;}
.width100b
{
width
:
100%
!important
;}
.width100b
{
width
:
100%
!important
;}
.text-align-left
{
text-align
:
left
}
.PingFangSC
{
font-family
:
"PingFangSC-fine"
!important
}
.PingFangSC
{
font-family
:
"PingFangSC-fine"
!important
}
.max_w200
{
max-width
:
200px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
vertical-align
:
top
;
display
:
inline-block
;}
.max_w200
{
max-width
:
200px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
vertical-align
:
top
;
display
:
inline-block
;}
.over_ellipsis
{
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
vertical-align
:
top
;
display
:
inline-block
;}
.over_ellipsis
{
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
vertical-align
:
top
;
display
:
inline-block
;}
...
...
src/router/config.js
View file @
569a73cf
...
@@ -2260,6 +2260,34 @@ export default {
...
@@ -2260,6 +2260,34 @@ export default {
meta
:
{
meta
:
{
title
:
'我的财务单据'
title
:
'我的财务单据'
},
},
},
{
//财务 财务单据 挂账单据
path
:
'/FinancialAccounting'
,
name
:
'FinancialAccounting'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/FinancialAccounting'
],
resolve
),
meta
:
{
title
:
'我的财务单据'
},
},
{
//财务 发票管理
path
:
'/invoicesManager'
,
name
:
'invoicesManager'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/invoicesManager'
],
resolve
),
meta
:
{
title
:
'发票管理'
},
},
{
//财务 发票管理 新增
path
:
'/invoicesManagerAdd'
,
name
:
'invoicesManagerAdd'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/invoicesManagerAdd'
],
resolve
),
meta
:
{
title
:
'新增发票'
},
},
{
//财务 发票管理 详情
path
:
'/invoicesManagerDetail'
,
name
:
'invoicesManagerDetail'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/invoicesManagerDetail'
],
resolve
),
meta
:
{
title
:
'发票详情'
},
},
{
//财务 财务单据 收款查询管理
},
{
//财务 财务单据 收款查询管理
path
:
'/RecPayQuery'
,
path
:
'/RecPayQuery'
,
name
:
'RecPayQuery'
,
name
:
'RecPayQuery'
,
...
@@ -2400,6 +2428,13 @@ export default {
...
@@ -2400,6 +2428,13 @@ export default {
meta
:
{
meta
:
{
title
:
'新增收款单据'
title
:
'新增收款单据'
},
},
},
{
//财务 财务单据 新增财务挂账单据 页面
path
:
'/addFinancialGZDocuments'
,
name
:
'addFinancialGZDocuments'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/addFinancialGZDocuments'
],
resolve
),
meta
:
{
title
:
'新增收款单据'
},
},
{
//财务 流程列表
},
{
//财务 流程列表
path
:
'/ProcessList'
,
path
:
'/ProcessList'
,
name
:
'ProcessList'
,
name
:
'ProcessList'
,
...
...
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