Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李宁
/
Activity
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 93fca846
authored
Dec 10, 2025
by
李宁
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
6eb4db1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
channelBusiManage/src/components/OrderDetail.vue
channelBusiManage/src/components/OrderDetail.vue
View file @
93fca84
...
...
@@ -101,9 +101,9 @@
</span>
</div>
</div>
<div
v-if=
"order
.remarks
"
class=
"col-span-2"
>
<div
v-if=
"order
Memo
"
class=
"col-span-2"
>
<label
class=
"text-neutral-500 text-sm"
>
备注信息
</label>
<p
class=
"mt-2 text-neutral-700"
>
{{ order
.memo||
'--' }}
</p>
<p
class=
"mt-2 text-neutral-700"
>
{{ order
Memo ||
'--' }}
</p>
</div>
</div>
</el-card>
...
...
@@ -363,6 +363,7 @@ interface Order {
processRemark
?:
string
operationLogs
?:
OperationLog
[]
crmOrderMemo
?:
string
orderContent
?:
string
}
interface
BusinessRule
{
...
...
@@ -463,12 +464,20 @@ const canEditCompleteInfo = computed(() => {
return
p
.
status
===
'-1'
||
(
p
.
status
===
'1'
&&
p
.
auditStatus
!==
'0'
&&
p
.
auditStatus
!==
'1'
)
})
const
canEditReward
=
computed
(()
=>
{
let
p
=
props
.
order
return
p
.
status
===
'1'
&&
p
.
auditStatus
!==
'0'
&&
p
.
auditStatus
!==
'1'
})
const
orderMemo
=
computed
(()
=>
{
let
p
=
props
.
order
if
(
!
p
.
orderContent
){
return
''
}
return
JSON
.
parse
(
p
.
orderContent
).
memo
})
// 方法
// 状态样式映射 - 使用浅色背景样式(与订单监控页保持一致)
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment