Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
a4242ea4
提交
a4242ea4
编写于
9月 09, 2021
作者:
shuang.zhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
订单详情页 样式修改 & 退款说明
上级
98c5e6af
变更
3
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
208 行增加
和
88 行删除
+208
-88
index.js
src/utils/shop/index.js
+10
-0
order-detail.vue
src/views/goods/order-detail.vue
+145
-79
order-manage.vue
src/views/goods/order-manage.vue
+53
-9
未找到文件。
src/utils/shop/index.js
浏览文件 @
a4242ea4
...
@@ -128,3 +128,13 @@ export const brokerOwnerListAll = (params) => {
...
@@ -128,3 +128,13 @@ export const brokerOwnerListAll = (params) => {
description
:
'云鹊店铺-订单管理-招募人列表'
,
description
:
'云鹊店铺-订单管理-招募人列表'
,
})
})
};
};
// 获取退款说明
export
const
getRefundDesc
=
(
params
)
=>
{
return
fetch
({
headers
,
url
:
getBaseUrl
(
`/store/orders/admin/queryRefundDesc/
${
params
.
orderId
}
/
${
params
.
goodsId
}
`
),
method
:
'post'
,
data
:
params
,
description
:
'退货'
,
})
};
src/views/goods/order-detail.vue
浏览文件 @
a4242ea4
此差异已折叠。
点击以展开。
src/views/goods/order-manage.vue
浏览文件 @
a4242ea4
...
@@ -123,7 +123,7 @@
...
@@ -123,7 +123,7 @@
>
导出订单
</el-button
>
导出订单
</el-button
>
>
</div>
</div>
<div
class=
"button-container"
>
<
!--
<
div
class=
"button-container"
>
<el-button
<el-button
type=
"primary"
type=
"primary"
size=
"small"
size=
"small"
...
@@ -136,18 +136,27 @@
...
@@ -136,18 +136,27 @@
@
click=
"ShowExportDialog(2)"
@
click=
"ShowExportDialog(2)"
>
批量取消订单
</el-button
>
批量取消订单
</el-button
>
>
</div>
</div>
-->
</el-col>
</el-col>
</el-row>
</el-row>
</el-form>
</el-form>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<
!--
<
el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"全部"
name=
"all"
></el-tab-pane>
<el-tab-pane
label=
"全部"
name=
"all"
></el-tab-pane>
<el-tab-pane
label=
"等待买家付款"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"等待买家付款"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"等待发货"
name=
"second"
></el-tab-pane>
<el-tab-pane
label=
"等待发货"
name=
"second"
></el-tab-pane>
<el-tab-pane
label=
"已发货"
name=
"third"
></el-tab-pane>
<el-tab-pane
label=
"已发货"
name=
"third"
></el-tab-pane>
<el-tab-pane
label=
"交易成功"
name=
"fourth"
></el-tab-pane>
<el-tab-pane
label=
"交易成功"
name=
"fourth"
></el-tab-pane>
<el-tab-pane
label=
"退款/关闭"
name=
"five"
></el-tab-pane>
<el-tab-pane
label=
"退款/关闭"
name=
"five"
></el-tab-pane>
</el-tabs>
</el-tabs>
-->
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"全部"
name=
"all"
></el-tab-pane>
<el-tab-pane
label=
"待支付"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"待发货"
name=
"second"
></el-tab-pane>
<el-tab-pane
label=
"已发货"
name=
"third"
></el-tab-pane>
<el-tab-pane
label=
"已完成"
name=
"fourth"
></el-tab-pane>
<el-tab-pane
label=
"已取消"
name=
"six"
></el-tab-pane>
<el-tab-pane
label=
"退款/关闭"
name=
"five"
></el-tab-pane>
</el-tabs>
<el-table
<el-table
:data=
"tableData"
:data=
"tableData"
border
border
...
@@ -187,7 +196,7 @@
...
@@ -187,7 +196,7 @@
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"amount"
prop=
"amount"
label=
"
实收款
"
label=
"
订单实付
"
min-width=
"100"
min-width=
"100"
align=
"center"
align=
"center"
>
>
...
@@ -258,6 +267,38 @@
...
@@ -258,6 +267,38 @@
</p>
</p>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"goodsTotalPrice"
label=
"商品总额"
min-width=
"100"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<p
v-for=
"(item, index) in scope.row.goodsTotalPrice"
:key=
"index"
class=
"p-normal"
>
¥
{{
item
|
toFixed2
}}
</p>
</
template
>
</el-table-column>
<el-table-column
prop=
"goodsRealPay"
label=
"商品实付"
min-width=
"100"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<p
v-for=
"(item, index) in scope.row.goodsRealPay"
:key=
"index"
class=
"p-normal"
>
¥
{{
item
|
toFixed2
}}
</p>
</
template
>
</el-table-column>
<el-table-column
<el-table-column
prop=
"commissionAmount"
prop=
"commissionAmount"
...
@@ -322,7 +363,7 @@
...
@@ -322,7 +363,7 @@
<!--
<el-button
@
click=
"closeTrade(scope.row)"
type=
"text"
size=
"small"
>
关闭交易
</el-button>
-->
<!--
<el-button
@
click=
"closeTrade(scope.row)"
type=
"text"
size=
"small"
>
关闭交易
</el-button>
-->
<!--
<el-button
@
click=
"changePrice(scope.row)"
type=
"text"
size=
"small"
>
修改价格
</el-button>
-->
<!--
<el-button
@
click=
"changePrice(scope.row)"
type=
"text"
size=
"small"
>
修改价格
</el-button>
-->
<!--
<el-button
@
click=
"sendGoods(scope.row)"
type=
"text"
size=
"small"
>
发货
</el-button>
-->
<!--
<el-button
@
click=
"sendGoods(scope.row)"
type=
"text"
size=
"small"
>
发货
</el-button>
-->
<el-button
<
!--
<
el-button
v-if=
"
v-if=
"
scope.row.storeType == 1 &&
scope.row.storeType == 1 &&
scope.row.showStatus == 3 &&
scope.row.showStatus == 3 &&
...
@@ -360,11 +401,11 @@
...
@@ -360,11 +401,11 @@
type=
"text"
type=
"text"
size=
"small"
size=
"small"
>
配送完成
</el-button
>
配送完成
</el-button
>
>
-->
<el-button
@
click=
"goDetail(scope.row)"
type=
"text"
size=
"small"
<el-button
@
click=
"goDetail(scope.row)"
type=
"text"
size=
"small"
>
查看详情
</el-button
>
查看详情
</el-button
>
>
<el-button
<
!--
<
el-button
v-if=
"
v-if=
"
(scope.row.storeType == 1 || scope.row.storeType == 2) &&
(scope.row.storeType == 1 || scope.row.storeType == 2) &&
scope.row.showStatus == 3 &&
scope.row.showStatus == 3 &&
...
@@ -374,7 +415,7 @@
...
@@ -374,7 +415,7 @@
type=
"text"
type=
"text"
size=
"small"
size=
"small"
>
退款退货
</el-button
>
退款退货
</el-button
>
>
-->
<!--
<el-button
type=
"text"
size=
"small"
>
查看物流
</el-button>
-->
<!--
<el-button
type=
"text"
size=
"small"
>
查看物流
</el-button>
-->
</div>
</div>
</
template
>
</
template
>
...
@@ -1278,6 +1319,9 @@ export default {
...
@@ -1278,6 +1319,9 @@ export default {
}
else
if
(
this
.
activeName
==
"five"
)
{
}
else
if
(
this
.
activeName
==
"five"
)
{
//交易关闭
//交易关闭
this
.
searchForm
.
showStatus
=
5
;
this
.
searchForm
.
showStatus
=
5
;
}
else
if
(
this
.
activeName
==
"six"
)
{
//交易关闭
this
.
searchForm
.
showStatus
=
6
;
}
}
this
.
searchForm
.
pageNo
=
1
;
this
.
searchForm
.
pageNo
=
1
;
this
.
searchList
();
this
.
searchList
();
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录