Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
913d7f9f
authored
Jan 02, 2025
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
add
parent
89f55c93
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
27 additions
and
28 deletions
src/views/billManagement/allPayableBills.vue
src/views/billManagement/reconciledBill.vue
src/views/consignmentManagement/consignmentApplication.vue
src/views/consignmentManagement/consignmentApplicationDetail.vue
src/views/consignmentManagement/consignmentContract.vue
src/views/consignmentManagement/consignmentImport.vue
src/views/consignmentManagement/consignmentRecall.vue
src/views/consignmentManagement/consignmentReplenishment.vue
src/views/consignmentManagement/inOutStockLog.vue
src/views/billManagement/allPayableBills.vue
View file @
913d7f9f
...
...
@@ -7,14 +7,14 @@
<el-autocomplete
v-model=
"formParam.goods_name"
:trigger-on-focus=
"false"
@
keyup
.
enter
.
native=
"onSubmit"
:fetch-suggestions=
"querySearchAsync"
placeholder=
"请输入型号"
clearable
></el-autocomplete>
</el-form-item>
<el-form-item
label=
"类型"
prop=
"type"
>
<el-select
v-model=
"formParam.type"
placeholder=
"全部"
clearable
multiple
>
<el-select
v-model=
"formParam.type"
placeholder=
"全部"
clearable
>
<el-option
label=
"全部"
value=
""
></el-option>
<el-option
label=
"寄售采购入库"
value=
"1"
></el-option>
<el-option
label=
"寄售退货出库"
value=
"2"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"状态"
prop=
"status"
>
<el-select
v-model=
"formParam.status"
placeholder=
"全部"
clearable
multiple
>
<el-select
v-model=
"formParam.status"
placeholder=
"全部"
clearable
>
<el-option
label=
"全部"
value=
"1"
></el-option>
<el-option
label=
"待付款申请"
value=
"2"
></el-option>
<el-option
label=
"应付单进行中"
value=
"3"
></el-option>
...
...
@@ -86,7 +86,8 @@ export default {
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/bill/getUnPayBillList"
,
this
.
formParam
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/bill/getUnPayBillList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/billManagement/reconciledBill.vue
View file @
913d7f9f
...
...
@@ -81,7 +81,8 @@ export default {
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/bill/getVerifiedBillList"
,
this
.
formParam
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/bill/getVerifiedBillList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/consignmentManagement/consignmentApplication.vue
View file @
913d7f9f
...
...
@@ -140,7 +140,8 @@ export default {
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/consignment/getConsignmentList"
,
this
.
formParam
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/consignment/getConsignmentList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/consignmentManagement/consignmentApplicationDetail.vue
View file @
913d7f9f
<
template
>
<div
class=
"pagex"
>
<div
class=
"section-page"
>
<el-row
v-if=
"detailData.consignment_sn"
>
<el-col
:span=
"4"
>
<div
class=
""
>
{{
detailData
.
consignment_sn
}}
(
{{
detailData
.
consignment_status_val
}}
)
</div>
</el-col>
<el-col
:span=
"4"
>
<div
class=
""
>
订单人员:
{{
detailData
.
order_uname
}}
</div>
</el-col>
<el-col
:span=
"4"
>
<div
class=
""
>
发货状态:
{{
detailData
.
deliver_status_val
}}
</div>
</el-col>
<el-col
:span=
"4"
>
<div
class=
""
>
入库状态:
{{
detailData
.
stock_in_status_val
}}
</div>
</el-col>
</el-row>
<!-- 详情信息区 -->
<el-descriptions
:column=
"4"
border
style=
"margin-bottom: 15px; width: 1200px;"
>
<el-descriptions-item
label=
"寄售申请单号"
>
<span
style=
"font-weight: bold"
>
{{
detailData
.
consignment_sn
}}
(
{{
detailData
.
consignment_status_val
}}
)
</span>
</el-descriptions-item>
<el-descriptions-item
label=
"订单人员:"
>
{{
detailData
.
order_uname
||
'-'
}}
</el-descriptions-item>
<el-descriptions-item
label=
"发货状态:"
>
{{
detailData
.
deliver_status_val
}}
</el-descriptions-item>
<el-descriptions-item
label=
"入库状态:"
>
{{
detailData
.
stock_in_status_val
}}
</el-descriptions-item>
</el-descriptions>
<!--操作区-->
<div
class=
"operation-area row verCenter bothSide"
style=
"margin-top: 20px;"
>
<div
class=
"operation-button row verCenter"
>
...
...
src/views/consignmentManagement/consignmentContract.vue
View file @
913d7f9f
...
...
@@ -71,7 +71,8 @@ export default {
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/consignmentContract/getConsignmentContractList"
,
this
.
formParam
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/consignmentContract/getConsignmentContractList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/consignmentManagement/consignmentImport.vue
View file @
913d7f9f
...
...
@@ -80,12 +80,8 @@ export default {
},
methods
:
{
getData
()
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
},
{
start_time
:
this
.
formParam
.
date
?
this
.
formParam
.
date
[
0
]
:
''
},
{
end_time
:
this
.
formParam
.
date
?
this
.
formParam
.
date
[
1
]
:
''
}
);
this
.
$http
(
'GET'
,
"/api/message/getMsgList"
,
params
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/uploadSku/list"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/consignmentManagement/consignmentRecall.vue
View file @
913d7f9f
...
...
@@ -164,7 +164,8 @@ export default {
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/consignmentRecall/getConsignmentRecallList"
,
this
.
formParam
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/consignmentRecall/getConsignmentRecallList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/consignmentManagement/consignmentReplenishment.vue
View file @
913d7f9f
...
...
@@ -70,7 +70,8 @@ export default {
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/consignmentReplenishment/getConsignmentReplenishmentList"
,
this
.
formParam
).
then
(
res
=>
{
var
params
=
Object
.
assign
({},
this
.
formParam
,
{
page
:
this
.
page
,
limit
:
this
.
limit
});
this
.
$http
(
'GET'
,
"/api/consignmentReplenishment/getConsignmentReplenishmentList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
list
=
res
.
data
.
list
||
[];
this
.
total
=
Number
(
res
.
data
.
total
)
||
0
;
...
...
src/views/consignmentManagement/inOutStockLog.vue
View file @
913d7f9f
...
...
@@ -71,6 +71,8 @@ export default {
getData
()
{
const
params
=
{
...
this
.
formParam
,
page
:
this
.
page
,
limit
:
this
.
limit
,
types
:
this
.
formParam
.
types
?.
join
(
','
)
||
''
};
...
...
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