Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
Project
Project
Details
Activity
Releases
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
李俊赕
self-support
Commits
9c6d9ebb
Commit
9c6d9ebb
authored
Aug 27, 2021
by
Facius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve: 未通过原因统一写在cell里
parent
0d131b2b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
8 deletions
+14
-8
fiveOrders.vue
src/components/order/fiveOrders.vue
+5
-3
index.vue
src/pages/mine/history/index.vue
+4
-2
list.vue
src/pages/mine/order/list.vue
+4
-2
detail.vue
src/pages/order/detail.vue
+1
-1
No files found.
src/components/order/fiveOrders.vue
View file @
9c6d9ebb
...
@@ -112,9 +112,9 @@ export default {
...
@@ -112,9 +112,9 @@ export default {
showCountTime
,
showCountTime
,
})
})
},
},
handleClickButton
(
item
,
type
,
showCountTime
)
{
handleClickButton
(
item
,
type
,
showCountTime
,
auditResults
)
{
this
.
$emit
(
'update:visible'
,
false
)
this
.
$emit
(
'update:visible'
,
false
)
this
.
$emit
(
'click'
,
item
,
type
,
showCountTime
)
this
.
$emit
(
'click'
,
item
,
type
,
showCountTime
,
auditResults
)
// 去完工
// 去完工
uni
.
navigateTo
({
uni
.
navigateTo
({
url
:
url
:
...
@@ -135,7 +135,9 @@ export default {
...
@@ -135,7 +135,9 @@ export default {
'&brandId='
+
'&brandId='
+
item
.
lianbaoBrandId
+
item
.
lianbaoBrandId
+
'&auditResults='
+
'&auditResults='
+
(
item
.
auditResults
?
Object
.
keys
(
item
.
auditResults
).
join
()
:
''
),
(
auditResults
?
auditResults
.
join
()
:
''
)
+
'&orderNumber='
+
item
.
orderNumber
,
})
})
},
},
},
},
...
...
src/pages/mine/history/index.vue
View file @
9c6d9ebb
...
@@ -104,7 +104,7 @@ export default {
...
@@ -104,7 +104,7 @@ export default {
showCountTime
,
showCountTime
,
})
})
},
},
handleClickButton
(
item
,
type
,
showCountTime
)
{
handleClickButton
(
item
,
type
,
showCountTime
,
auditResults
)
{
uni
.
navigateTo
({
uni
.
navigateTo
({
url
:
url
:
'pages/order/complete?orderId='
+
'pages/order/complete?orderId='
+
...
@@ -124,7 +124,9 @@ export default {
...
@@ -124,7 +124,9 @@ export default {
'&brandId='
+
'&brandId='
+
item
.
lianbaoBrandId
+
item
.
lianbaoBrandId
+
'&auditResults='
+
'&auditResults='
+
(
item
.
auditResults
?
Object
.
keys
(
item
.
auditResults
).
join
()
:
''
),
(
auditResults
?
auditResults
.
join
()
:
''
)
+
'&orderNumber='
+
item
.
orderNumber
,
})
})
},
},
},
},
...
...
src/pages/mine/order/list.vue
View file @
9c6d9ebb
...
@@ -155,7 +155,7 @@ export default {
...
@@ -155,7 +155,7 @@ export default {
})
})
},
},
handleClickCellButton
(
item
,
type
)
{
handleClickCellButton
(
item
,
type
,
showCountTime
,
auditResults
)
{
// 去完工
// 去完工
uni
.
navigateTo
({
uni
.
navigateTo
({
url
:
url
:
...
@@ -176,7 +176,9 @@ export default {
...
@@ -176,7 +176,9 @@ export default {
'&brandId='
+
'&brandId='
+
item
.
lianbaoBrandId
+
item
.
lianbaoBrandId
+
'&auditResults='
+
'&auditResults='
+
(
item
.
auditResults
?
Object
.
keys
(
item
.
auditResults
).
join
()
:
''
),
(
auditResults
?
auditResults
.
join
()
:
''
)
+
'&orderNumber='
+
item
.
orderNumber
,
})
})
},
},
handleClick
(
item
,
type
,
showCountTime
)
{
handleClick
(
item
,
type
,
showCountTime
)
{
...
...
src/pages/order/detail.vue
View file @
9c6d9ebb
...
@@ -947,7 +947,7 @@ export default {
...
@@ -947,7 +947,7 @@ export default {
'&brandId='
+
'&brandId='
+
this
.
order
.
lianbaoBrandId
+
this
.
order
.
lianbaoBrandId
+
'&orderNumber='
+
'&orderNumber='
+
this
.
order
.
orderNumber
this
.
order
.
orderNumber
,
})
})
},
},
rejectOrder
()
{
rejectOrder
()
{
...
...
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