Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
9b2cfe6c
提交
9b2cfe6c
编写于
9月 18, 2021
作者:
shuang.zhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug修复
上级
d789e52f
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
22 行增加
和
10 行删除
+22
-10
order-detail.vue
src/views/goods/order-detail.vue
+8
-3
order-manage.vue
src/views/goods/order-manage.vue
+14
-7
未找到文件。
src/views/goods/order-detail.vue
浏览文件 @
9b2cfe6c
...
...
@@ -76,7 +76,7 @@
</el-table-column>
<el-table-column
prop=
"refundDesc"
label=
"退款说明"
min-width=
"100"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-button
v-if=
"[6, 7, 8].includes(scope.row.
s
tatus)"
type=
"text"
@
click=
"showRefundDetail(scope.row.goodsId,scope.row.id)"
>
查看
</el-button>
<el-button
v-if=
"[6, 7, 8].includes(scope.row.
goodsShowS
tatus)"
type=
"text"
@
click=
"showRefundDetail(scope.row.goodsId,scope.row.id)"
>
查看
</el-button>
<span
v-else
>
--
</span>
</
template
>
</el-table-column>
...
...
@@ -132,7 +132,7 @@
>
<div>
物流公司:{{ item.expressCompany }}
</div>
<div>
快递单号:{{item.expressNo }}
<el-button
type=
"text"
@
click=
"copyTxt"
>
复制
</el-button>
<el-button
type=
"text"
@
click=
"copyTxt"
>
复制
单号
</el-button>
<input
type=
"text"
id=
"copyInput"
class=
"hidden-input"
/>
</div>
<div>
备注:{{ item.remark }}
</div>
...
...
@@ -409,7 +409,12 @@
this
.
showStatusStr
=
res
.
data
.
showStatusStr
;
this
.
expressType
=
res
.
data
.
expressType
;
// 小店 1.普通快递,2云鹊快递
this
.
tableData
=
goodsInfoDtoList
;
let
expressNo
=
goodsInfoDtoList
[
0
].
expressNo
;
let
expressNo
=
''
;
goodsInfoDtoList
.
map
(
item
=>
{
if
(
item
.
belongPackage
==
'包裹1'
)
{
expressNo
=
item
.
expressNo
}
})
let
receiverMobile
=
this
.
orderDetailData
.
receiverMobile
;
this
.
expressList
=
expressList
;
// 包裹信息
this
.
viewLogistics
(
expressNo
,
receiverMobile
);
...
...
src/views/goods/order-manage.vue
浏览文件 @
9b2cfe6c
...
...
@@ -123,7 +123,7 @@
>
导出订单
</el-button
>
</div>
<div
class=
"button-container"
>
<
!--
<
div
class=
"button-container"
>
<el-button
type=
"primary"
size=
"small"
...
...
@@ -136,7 +136,7 @@
@
click=
"ShowExportDialog(2)"
>
批量取消订单
</el-button
>
</div>
</div>
-->
</el-col>
</el-row>
</el-form>
...
...
@@ -214,6 +214,16 @@
<span>
¥
{{
scope
.
row
.
amount
|
toFixed2
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"expressFee"
label=
"运费"
min-width=
"100"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span>
¥
{{
scope
.
row
.
expressFee
|
toFixed2
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"prescriberName"
label=
"创建人"
...
...
@@ -285,7 +295,7 @@
>
<
template
slot-scope=
"scope"
>
<p
v-for=
"(item, index) in scope.row.goodsTotalPrice"
v-for=
"(item, index) in scope.row.goodsTotalPrice
List
"
:key=
"index"
class=
"p-normal"
>
...
...
@@ -301,7 +311,7 @@
>
<
template
slot-scope=
"scope"
>
<p
v-for=
"(item, index) in scope.row.goodsRealPay"
v-for=
"(item, index) in scope.row.goodsRealPay
List
"
:key=
"index"
class=
"p-normal"
>
...
...
@@ -412,10 +422,7 @@
size=
"small"
>
配送完成
</el-button
>
-->
<el-button
type=
"text"
size=
"small"
@
click=
"goDetail(scope.row)"
v-if=
"[2].includes(scope.row.showStatus) && scope.row.storeType == 2"
>
配送完成
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"goDetail(scope.row)"
v-if=
"[3,6].includes(scope.row.showStatus)"
>
{{
scope
.
row
.
storeType
==
2
?
'配送'
:
'发货'
}}
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"goDetail(scope.row)"
>
查看详情
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"goDetail(scope.row)"
v-if=
"[3,6].includes(scope.row.showStatus) && scope.row.storeType != 3"
>
退款退货
</el-button>
<!--
<el-button
v-if=
"
(scope.row.storeType == 1 || scope.row.storeType == 2) &&
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录