Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_admin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_admin
Commits
adcdd985
Commit
adcdd985
authored
Jul 16, 2024
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改筛选字段
parent
69855f0b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
6 deletions
+17
-6
src/api/business/order.js
src/api/business/order.js
+2
-2
src/views/finance/components/platformIncomeView.vue
src/views/finance/components/platformIncomeView.vue
+1
-1
src/views/finance/financeDetail.vue
src/views/finance/financeDetail.vue
+1
-1
src/views/finance/orderDetail.vue
src/views/finance/orderDetail.vue
+13
-2
No files found.
src/api/business/order.js
View file @
adcdd985
...
@@ -105,9 +105,9 @@ export function findSystemBillExpenditureDetail(data) {
...
@@ -105,9 +105,9 @@ export function findSystemBillExpenditureDetail(data) {
})
})
}
}
export
function
finishSettlement
(
data
)
{
export
function
exportOrderBillDetail
(
data
)
{
return
request
({
return
request
({
url
:
'
/sysFinance/
finishSettlement
'
,
url
:
'
/sysFinance/
exportOrderBillDetail
'
,
method
:
'
post
'
,
method
:
'
post
'
,
data
data
})
})
...
...
src/views/finance/components/platformIncomeView.vue
View file @
adcdd985
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
value-format=
"yyyy-MM-dd HH:mm:ss"
value-format=
"yyyy-MM-dd HH:mm:ss"
align=
"right"
/>
align=
"right"
/>
<el-input
<el-input
v-model=
"listQuery.
distributionOrder
Id"
v-model=
"listQuery.
transaction
Id"
clearable
clearable
class=
"filter-item"
class=
"filter-item"
style=
"width: 200px;"
style=
"width: 200px;"
...
...
src/views/finance/financeDetail.vue
View file @
adcdd985
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"filter-container"
>
<div
class=
"filter-container"
>
<div
class=
"button_left"
>
<div
class=
"button_left"
>
<el-input
<el-input
v-model=
"listQuery.
distributionOrder
Id"
v-model=
"listQuery.
transaction
Id"
clearable
clearable
class=
"filter-item"
class=
"filter-item"
style=
"width: 200px;"
style=
"width: 200px;"
...
...
src/views/finance/orderDetail.vue
View file @
adcdd985
...
@@ -42,7 +42,7 @@
...
@@ -42,7 +42,7 @@
@
click=
"handleFilter"
>
查找
@
click=
"handleFilter"
>
查找
</el-button>
</el-button>
<el-button
class=
"filter-item"
@
click=
"resetSearchForm"
>
重置
</el-button>
<el-button
class=
"filter-item"
@
click=
"resetSearchForm"
>
重置
</el-button>
<el-button
type=
"primary"
class=
"filter-item"
@
click=
"
resetSearchForm
"
>
导出明细
</el-button>
<el-button
type=
"primary"
class=
"filter-item"
@
click=
"
handleExport
"
>
导出明细
</el-button>
</div>
</div>
</div>
</div>
<el-table
<el-table
...
@@ -147,7 +147,8 @@
...
@@ -147,7 +147,8 @@
<
script
>
<
script
>
import
Line2Hidden
from
'
@/components/line2Hidden
'
import
Line2Hidden
from
'
@/components/line2Hidden
'
import
Pagination
from
'
@/components/Pagination
'
import
Pagination
from
'
@/components/Pagination
'
import
{
findOrderBillDetail
,
requestLogisticsList
}
from
'
@/api/business/order
'
import
{
findOrderBillDetail
,
requestLogisticsList
,
exportOrderBillDetail
}
from
'
@/api/business/order
'
import
{
MessageBox
}
from
'
element-ui
'
export
default
{
export
default
{
name
:
'
OrderDetail
'
,
name
:
'
OrderDetail
'
,
...
@@ -220,6 +221,16 @@ export default {
...
@@ -220,6 +221,16 @@ export default {
}
}
this
.
getList
()
this
.
getList
()
}
,
}
,
handleExport
()
{
exportOrderBillDetail
(
this
.
listQuery
).
then
(
response
=>
{
}
).
catch
((
e
)
=>
{
console
.
log
(
'
===报错=
'
,
e
)
MessageBox
.
alert
(
'
业务错误:
'
+
e
.
data
.
errmsg
,
'
警告
'
,
{
confirmButtonText
:
'
确定
'
,
type
:
'
error
'
}
)
}
)
}
,
handleFilter
()
{
handleFilter
()
{
this
.
listQuery
.
page
=
1
this
.
listQuery
.
page
=
1
if
(
this
.
timeValue
&&
this
.
timeValue
.
length
>
0
)
{
if
(
this
.
timeValue
&&
this
.
timeValue
.
length
>
0
)
{
...
...
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