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
3faf98e4
Commit
3faf98e4
authored
Nov 17, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
ae7e7706
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
110 additions
and
7 deletions
+110
-7
AccountPageList.vue
src/pages/financial/AccountPageList.vue
+97
-0
AccountType.vue
src/pages/financial/AccountType.vue
+4
-5
PlatformAccount.vue
src/pages/financial/PlatformAccount.vue
+2
-1
routes.js
src/router/routes.js
+5
-0
erpindex.js
src/utils/erpindex.js
+2
-1
No files found.
src/pages/financial/AccountPageList.vue
0 → 100644
View file @
3faf98e4
<
style
>
@import
"css/cssReset.css"
;
.page_AccountPageList
tr
th
,
.page_AccountPageList
tr
td
{
padding
:
10px
20px
;
text-align
:
left
;
}
</
style
>
<
template
>
<div
class=
"flexOne page_AccountPageList"
>
<div
class=
'query-box'
>
<ul>
<li>
<input
type=
"button"
class=
"hollowFixedBtn"
value=
"返回"
@
click=
"goUrl()"
/>
</li>
</ul>
</div>
<table
class=
"singeRowTable"
style=
"border:1px solid #E6E6E6;"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th
width=
'200px'
>
{{
$t
(
'fnc.bieming'
)
}}
</th>
<th>
{{
$t
(
'fnc.zhanghuleixing'
)
}}
</th>
<th>
{{
$t
(
'hotel.hotel_Currency'
)
}}
</th>
<th>
{{
$t
(
'fnc.yueacc'
)
}}
</th>
<th>
{{
$t
(
'fnc.bwbyue'
)
}}
</th>
<th>
{{
$t
(
'admin.admin_czPerson'
)
}}
</th>
<th
width=
'200px'
>
{{
$t
(
'fnc.caozuoriqi'
)
}}
</th>
</tr>
<tr
v-for=
"(item,index) in dataList"
:key=
"index"
>
<td>
{{
item
.
Alias
}}
</td>
<td>
{{
item
.
AccountTypeName
}}
</td>
<td>
{{
item
.
CurrencyName
}}
</td>
<td>
¥
{{
item
.
Initialbalance
}}
</td>
<td>
¥
{{
item
.
RBNInitialbalance
}}
</td>
<td>
{{
item
.
emName
}}
</td>
<td>
{{
item
.
CreateDate
}}
</td>
</tr>
</table>
<div>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"currentPage"
layout=
"total,prev, pager, next, jumper"
:page-size=
msg.pageSize
:total=
total
>
</el-pagination>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
(){
return
{
dataList
:[],
loading
:
false
,
total
:
0
,
currentPage
:
1
,
msg
:{
PageIndex
:
1
,
pageSize
:
15
,
BackId
:
0
,
TypeId
:
0
,
ID
:
0
,
BankType
:
0
,
},
}
},
created
(){
this
.
msg
.
BackId
=
this
.
$route
.
query
.
BackId
;
this
.
msg
.
TypeId
=
this
.
$route
.
query
.
TypeId
;
},
mounted
(){
this
.
getList
()
},
methods
:{
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
resetPageIndex
(){
this
.
msg
.
pageIndex
=
1
;
this
.
currentPage
=
1
},
getList
(){
this
.
loading
=
true
;
this
.
apipost
(
'FinancialInstitutions_post_GetAccountList'
,
this
.
msg
,
r
=>
{
if
(
r
.
data
.
resultCode
==
1
){
this
.
total
=
r
.
data
.
data
.
count
;
this
.
dataList
=
r
.
data
.
data
.
pageData
;
}
this
.
loading
=
false
;
},
null
)
},
goUrl
(){
this
.
$router
.
go
(
-
1
)
}
}
}
</
script
>
src/pages/financial/AccountType.vue
View file @
3faf98e4
...
...
@@ -704,12 +704,11 @@
});
},
goUrl
(
path
,
id
)
{
var
tempStr
=
'/financial/'
+
path
+
'?TypeId='
+
id
;
console
.
log
(
tempStr
)
this
.
$router
.
push
({
name
:
path
,
query
:
{
'TypeId'
:
id
}
})
path
:
tempStr
});
}
},
mounted
()
{
...
...
src/pages/financial/PlatformAccount.vue
View file @
3faf98e4
...
...
@@ -314,7 +314,8 @@
</div>
</template>
<
script
>
import
Vue
from
'vue'
// import Vue from 'vue'
import
Vue
from
'vue/dist/vue.esm.js'
export
default
{
data
()
{
return
{
...
...
src/router/routes.js
View file @
3faf98e4
...
...
@@ -122,6 +122,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/financial/AccountType.vue"
)
},
{
path
:
"/financial/AccountPageList"
,
//关联账户
component
:
()
=>
import
(
"pages/financial/AccountPageList.vue"
)
},
{
path
:
"/financial/CostType"
,
//费用类型
component
:
()
=>
...
...
src/utils/erpindex.js
View file @
3faf98e4
...
...
@@ -84,7 +84,8 @@ export default{
let
mallUrl
=
""
;
//商城API
let
locationName
=
window
.
location
.
hostname
;
// domainUrl = "http://127.0.0.1";
domainUrl
=
"http://192.168.1.13:8083"
;
// domainUrl = "http://192.168.1.13:8083";
domainUrl
=
"http://192.168.1.48:8015"
;
//domainUrl = "http://192.168.1.21:8069";
let
javaUrldo
=
""
;
...
...
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