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
86095ce4
Commit
86095ce4
authored
May 21, 2024
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车统计表
parent
2c8a2e6a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
157 additions
and
74 deletions
+157
-74
FinancialDocuments.vue
src/components/FinancialModule/FinancialDocuments.vue
+1
-1
JapanMonthRunList.vue
...s/busManagement/BookAcar/components/JapanMonthRunList.vue
+132
-65
JapanBusMonthStatistics.vue
src/components/busManagement/JapanBusMonthStatistics.vue
+24
-8
No files found.
src/components/FinancialModule/FinancialDocuments.vue
View file @
86095ce4
...
...
@@ -1096,7 +1096,7 @@
<
/template
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"$t('tips.jiaoyifangshi')"
>
<
el
-
table
-
column
:
label
=
"$t('tips.jiaoyifangshi')"
min
-
width
=
"200"
>
<
template
slot
-
scope
=
"scope"
>
<
div
class
=
"_number"
>
<
template
v
-
if
=
"scope.row.TradeWayList&&scope.row.TradeWayList.length>0"
>
...
...
src/components/busManagement/BookAcar/components/JapanMonthRunList.vue
View file @
86095ce4
This diff is collapsed.
Click to expand it.
src/components/busManagement/JapanBusMonthStatistics.vue
View file @
86095ce4
...
...
@@ -42,12 +42,13 @@
车辆状态
确定:
<span
style=
"color:#4BCA81 ;"
>
√
</span>
暂定:
<span
style=
"color: #ff6600;"
>
O
</span>
未操作:
<span
style=
"color:#E95252 ;"
>
X
</span>
</div>
<div
style=
"width: 100%; overflow-x: auto;padding-bottom: 10px; margin-top: 10px; "
class=
"ownScrollbarStyle"
<
!--
<
div
style=
"width: 100%; overflow-x: auto;padding-bottom: 10px; margin-top: 10px; "
class=
"ownScrollbarStyle"
:style=
"
{height: boxHeight + 'px'}">
<OrderList
:pagesTitle=
"Title"
:OrderList=
"DataList"
:loading=
"loading"
@
success=
"msg.pageIndex=1,GetList()"
>
</OrderList>
</div>
</div>
-->
<OrderList
v-if=
"DataList.length>0"
:pagesTitle=
"Title"
:OrderList=
"DataList"
:loading=
"loading"
:tableHeight=
"tableHeight"
@
success=
"msg.pageIndex=1,GetList()"
>
</OrderList>
<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>
...
...
@@ -59,6 +60,7 @@
export
default
{
data
()
{
return
{
tableHeight
:
0
,
loading
:
false
,
currentPage
:
1
,
total
:
0
,
...
...
@@ -84,6 +86,16 @@
OrderList
},
methods
:
{
com_onresize
()
{
//clientHeight的值由DIV内容的实际高度和CSS中的padding值决定,
var
contentsHeight
=
document
.
body
.
clientHeight
;
var
h
=
contentsHeight
-
50
-
180
-
100
;
if
(
h
<
110
)
{
return
;
}
//设置table的行高
this
.
tableHeight
=
h
;
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
...
...
@@ -117,10 +129,10 @@
let
x
=
this
.
DataList
[
i
]
// for(let j =0;i
<
x
.
CustomerList
.
length
;
j
++
){
// for(let j =0;i
<
x
.
OrderList
.
length
;
j
++
){
// let UseDateStr =
// let UseDateStr =
// }
// let UseDateStr =
// let UseDateStr =
// }
}
}
else
{
...
...
@@ -145,6 +157,10 @@
this
.
offsetwidth
=
width
;
this
.
getCustomerList
();
this
.
getList
();
this
.
com_onresize
();
window
.
onresize
=
()
=>
{
this
.
com_onresize
();
}
},
}
...
...
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