Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
soss
Overview
Overview
Details
Activity
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
hooloo
web
soss
Commits
c6af7667
Commit
c6af7667
authored
Jun 25, 2022
by
lixiaomin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
16d3530e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
13 deletions
+10
-13
src/components/SelectGoods/index.vue
+4
-2
src/views/order/order/index.vue
+4
-0
src/views/order/refund/index.vue
+2
-11
No files found.
src/components/SelectGoods/index.vue
View file @
c6af7667
...
...
@@ -69,6 +69,7 @@ export default {
state
:
3
,
shopId
:
null
},
shopId
:
null
};
},
created
()
{
...
...
@@ -88,7 +89,8 @@ export default {
/** 查询列表 */
getList
(
shopId
)
{
this
.
loading
=
true
;
this
.
queryParams
.
shopId
=
shopId
this
.
queryParams
.
shopId
=
shopId
;
this
.
shopId
=
shopId
;
goodslist
(
this
.
queryParams
).
then
((
response
)
=>
{
this
.
spuList
=
response
.
rows
;
this
.
total
=
response
.
total
;
...
...
@@ -99,7 +101,7 @@ export default {
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
this
.
getList
(
this
.
shopId
);
},
/** 重置按钮操作 */
resetQuery
()
{
...
...
src/views/order/order/index.vue
View file @
c6af7667
...
...
@@ -213,6 +213,10 @@ export default {
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
createAtStart
=
null
;
this
.
queryParams
.
createAtEnd
=
null
;
this
.
queryParams
.
payAtStart
=
null
;
this
.
queryParams
.
payAtEnd
=
null
;
if
(
this
.
createdTime
!=
null
&&
this
.
createdTime
.
length
>
0
){
this
.
queryParams
.
createAtStart
=
this
.
createdTime
[
0
];
this
.
queryParams
.
createAtEnd
=
this
.
createdTime
[
1
];
...
...
src/views/order/refund/index.vue
View file @
c6af7667
...
...
@@ -20,9 +20,6 @@
</el-option>
</el-select>
</el-form-item>
<!--
<el-form-item
label=
"创建时间"
>
<el-date-picker
v-model=
"createdTime"
type=
"daterange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
value-format=
"yyyy-MM-dd"
style=
"width:230px"
></el-date-picker>
</el-form-item>
-->
<el-form-item
label=
"付款时间"
>
<el-date-picker
v-model=
"payTime"
type=
"daterange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
value-format=
"yyyy-MM-dd"
style=
"width:230px"
></el-date-picker>
</el-form-item>
...
...
@@ -81,7 +78,6 @@ export default {
components
:
{
RefundDetial
},
data
()
{
return
{
createdTime
:[],
payTime
:[],
shopList
:[
{
value
:
''
,
label
:
'全部'
},
...
...
@@ -204,10 +200,8 @@ export default {
},
/** 搜索按钮操作 */
handleQuery
()
{
if
(
this
.
createdTime
!=
null
&&
this
.
createdTime
.
length
>
0
){
this
.
queryParams
.
createAtStart
=
this
.
createdTime
[
0
];
this
.
queryParams
.
createAtEnd
=
this
.
createdTime
[
1
];
}
this
.
queryParams
.
payAtStart
=
null
;
this
.
queryParams
.
payAtEnd
=
null
;
if
(
this
.
payTime
!=
null
&&
this
.
payTime
.
length
>
0
){
this
.
queryParams
.
payAtStart
=
this
.
payTime
[
0
];
this
.
queryParams
.
payAtEnd
=
this
.
payTime
[
1
];
...
...
@@ -221,10 +215,7 @@ export default {
this
.
queryParams
.
orderNum
=
null
;
this
.
queryParams
.
userName
=
null
;
this
.
queryParams
.
shopId
=
null
;
this
.
createdTime
=
[];
this
.
payTime
=
[];
this
.
queryParams
.
createAtStart
=
null
,
this
.
queryParams
.
createAtEnd
=
null
,
this
.
queryParams
.
payAtStart
=
null
,
this
.
queryParams
.
payAtEnd
=
null
,
this
.
queryParams
.
state
=
null
;
...
...
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