Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
acda7e28
Commit
acda7e28
authored
May 19, 2026
by
wuqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:工厂订单添加“确”字
parent
ff5bc346
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
src/types/api/order/factoryOrderNew.ts
+1
-0
src/views/order/factoryOrderNew/index.vue
+26
-0
No files found.
src/types/api/order/factoryOrderNew.ts
View file @
acda7e28
...
...
@@ -96,6 +96,7 @@ export interface FactoryOrderNewListData {
version
?:
number
totalCustomsWeight
?:
number
totalCustomsValue
?:
number
pauseStatus
?:
number
statusName
?:
string
thirdOrderNumber
?:
string
customTagList
?:
{
id
:
string
;
name
:
string
}[]
...
...
src/views/order/factoryOrderNew/index.vue
View file @
acda7e28
...
...
@@ -1298,6 +1298,32 @@ const mainColumns = computed(() => [
label
:
'订单编号'
,
minWidth
:
160
,
align
:
'center'
,
render
:
(
row
:
FactoryOrderNewListData
)
=>
{
if
(
status
.
value
===
'SUSPEND'
&&
row
.
pauseStatus
===
2
)
{
return
(
<
span
>
{
row
.
factoryOrderNumber
}
<
el
-
tooltip
content
=
"客户已确认"
placement
=
"top"
>
<
span
style
=
"
color: #ff6700;
font-weight: bold;
font-size: 12px;
padding: 1px 4px;
border: 1px solid #ff6700;
border-radius: 4px;
margin-left: 4px;
line-height: 1.2;
"
>
确
<
/span
>
<
/el-tooltip
>
<
/span
>
)
}
return
row
.
factoryOrderNumber
}
,
}
,
{
prop
:
'thirdOrderNumber'
,
...
...
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