Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
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
viitto
mallapp
Commits
1813d6b6
Commit
1813d6b6
authored
Nov 04, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2
parent
31582beb
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
8 deletions
+35
-8
pages.json
pages.json
+15
-5
orderItem.vue
pages/MallMange/components/orderItem.vue
+7
-1
saleAfterOrderItem.vue
pages/MallMange/components/saleAfterOrderItem.vue
+7
-1
order.vue
pages/MallMange/order.vue
+5
-0
express.vue
pages/order/express.vue
+1
-1
No files found.
pages.json
View file @
1813d6b6
...
...
@@ -35,10 +35,10 @@
"root"
:
"pages/favorite"
,
"pages"
:
[{
"path"
:
"favorite"
},{
"path"
:
"favoriteKotra"
},
{
"path"
:
"favoriteKotra"
}]
},{
},
{
"root"
:
"pages/foot"
,
"pages"
:
[{
"path"
:
"index/index"
...
...
@@ -827,8 +827,18 @@
"path"
:
"tixianApply"
//提现申请
},
{
"path"
:
"orderMessage"
//订单消息
},{
"path"
:
"orderSearch"
//订单搜索页
},
{
"path"
:
"orderSearch"
//订单搜索页
},
{
"path"
:
"orderDetail"
,
//订单详情
"style"
:
{
"navigationStyle"
:
"custom"
}
},
{
"path"
:
"afterOrderDetail"
,
//售后订单详情
"style"
:
{
"navigationStyle"
:
"custom"
}
}]
}
],
...
...
pages/MallMange/components/orderItem.vue
View file @
1813d6b6
<
template
>
<view
class=
"item"
>
<view
class=
"flex-between orderNum"
>
<view
class=
"flex-between orderNum"
@
click=
"goOrderDetail(data)"
>
<text>
订单号:
{{
data
.
OrderNo
}}
</text>
<text
style=
"color: #446dfc"
>
{{
data
.
OrderStatusName
}}
</text>
</view>
...
...
@@ -157,6 +157,12 @@ export default {
url
:
url
,
});
},
goOrderDetail
(
item
)
{
console
.
log
(
348
,
item
);
uni
.
navigateTo
({
url
:
"/pages/MallMange/orderDetail?id="
+
item
.
OrderId
,
});
},
//打电话
call
(
num
)
{
uni
.
makePhoneCall
({
...
...
pages/MallMange/components/saleAfterOrderItem.vue
View file @
1813d6b6
<
template
>
<view
class=
"item"
>
<view
class=
"flex-between orderNum"
>
<view
class=
"flex-between orderNum"
@
click=
"goOrderDetail(data)"
>
<text>
订单号:
{{
data
.
ReOrderNo
}}
</text>
<text
style=
"color: #446dfc"
>
{{
data
.
ReOrderStatusName
}}
</text>
</view>
...
...
@@ -169,6 +169,12 @@ export default {
uni
.
navigateTo
({
url
:
url
,
});
},
goOrderDetail
(
item
)
{
console
.
log
(
174
,
item
);
uni
.
navigateTo
({
url
:
"/pages/MallMange/afterOrderDetail?id="
+
item
.
OrderId
,
});
},
//打电话
call
(
num
)
{
...
...
pages/MallMange/order.vue
View file @
1813d6b6
...
...
@@ -339,6 +339,11 @@ export default {
};
},
methods
:
{
goOrderSearch
(){
uni
.
navigateTo
({
url
:
'/pages/MallMange/orderSearch?orderType='
+
this
.
orderType
});
},
//筛选时间
confirm
()
{
if
(
this
.
orderType
===
1
)
{
...
...
pages/order/express.vue
View file @
1813d6b6
...
...
@@ -21,7 +21,7 @@
</
template
>
<
template
v-slot:content
>
<view>
<view
class=
"u-order-desc"
style=
"padding-bottom: 60rpx;margin-top: 5rpx;font-size: 26rpx;"
>
收货地址:
{{
address
}}
</view>
<view
class=
"u-order-desc"
style=
"padding-bottom: 60rpx;margin-top: 5rpx;font-size: 26rpx;"
>
收货地址:
{{
address
||
''
}}
</view>
</view>
</
template
>
</u-time-line-item>
...
...
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