Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
8f91a8a9
Commit
8f91a8a9
authored
Jul 15, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自编号报表详情UI
parent
06208114
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
331 additions
and
1 deletion
+331
-1
selfNoReport.vue
src/views/ecw/financial/selfNoReport.vue
+17
-1
selfNoReportDetail.vue
src/views/ecw/financial/selfNoReportDetail.vue
+314
-0
No files found.
src/views/ecw/financial/selfNoReport.vue
View file @
8f91a8a9
...
...
@@ -87,7 +87,12 @@
</el-card>
<el-table
v-loading=
"loadings"
:data=
"list"
border
class=
"card"
>
<el-table-column
:label=
"$t('是否结算')"
align=
"center"
prop=
""
/>
<el-table-column
:label=
"$t('No.柜号')"
align=
"center"
prop=
""
/>
<el-table-column
:label=
"$t('No.柜号')"
align=
"center"
prop=
""
>
<template
slot-scope=
"scope"
>
<el-button
v-if=
"permissions.indexOf('selfno:report:detail') > -1"
type=
"text"
@
click=
"$router.push('./selfno_report_detail?id=' + scope.row.id)"
>
{{
scope
.
row
.
no
}}
</el-button>
<span
v-else
>
{{
scope
.
row
.
no
}}
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('应收款(Accounts receivable)')"
align=
"center"
prop=
""
></el-table-column>
<el-table-column
:label=
"$t('received in + 目的国国家(目的地实收)')"
align=
"center"
prop=
""
>
<el-table-column
:label=
"$t('运费')"
></el-table-column>
...
...
@@ -104,6 +109,11 @@
<el-table-column
:label=
"$t('清关费')"
></el-table-column>
<el-table-column
:label=
"$t('额外费用')"
></el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('操作')"
v-if=
"permissions.indexOf('selfno:report:detail') > -1"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"text"
@
click=
"$router.push('./selfno_report_detail?id=' + scope.row.id)"
>
{{
$t
(
'
查看
'
)
}}
</el-button>
</
template
>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
...
...
@@ -119,8 +129,11 @@
import
{
getTradeCityList
}
from
"
@/api/ecw/region
"
;
import
{
getCurrencyPage
}
from
"
@/api/ecw/currency
"
;
import
{
getWarehouseList
}
from
'
@/api/ecw/warehouse
'
import
Template
from
"
@/views/cms/template/index.vue
"
;
import
store
from
"
@/store
"
;
export
default
{
components
:
{
Template
},
data
()
{
return
{
list
:
[],
...
...
@@ -145,6 +158,9 @@ export default {
getWarehouseList
().
then
(
res
=>
this
.
warehouseList
=
res
.
data
)
},
computed
:
{
permissions
(){
return
store
.
getters
.
permissions
},
exportCityList
()
{
return
this
.
tradeCityList
.
filter
((
item
)
=>
item
.
type
===
2
);
},
...
...
src/views/ecw/financial/selfNoReportDetail.vue
0 → 100644
View file @
8f91a8a9
This diff is collapsed.
Click to expand it.
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