Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
weiqiao-vue
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
金民
weiqiao-vue
Commits
bc63fe15
Commit
bc63fe15
authored
Feb 26, 2026
by
张恒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(scgl): 更新生产计划下发功能
- 添加了下发前的确认对话框 - 集成了产品输出相关API接口 - 重构了下发逻辑以支持异步操作 - 改进了用户交互体验和错误提示机制
parent
dfc0ee13
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
xjrsoft-vue3/src/views/scgl/scjh/index.vue
+12
-0
No files found.
xjrsoft-vue3/src/views/scgl/scjh/index.vue
View file @
bc63fe15
...
...
@@ -119,6 +119,7 @@
import
{
useConcurrentLock
}
from
'/@/hooks/web/useConcurrentLock'
;
import
{
rksqMesProductOutput
}
from
"/@/api/scgl/ccmx"
;
const
pageParamsInfo
=
ref
<
any
>
({});
const
{
...
...
@@ -395,6 +396,13 @@
}
function
handleXiafa
(
record
:
Recordable
)
{
Modal
.
confirm
({
title
:
t
(
'提示信息'
),
icon
:
createVNode
(
ExclamationCircleOutlined
),
content
:
t
(
'是否下发?'
),
okText
:
t
(
'确认'
),
cancelText
:
t
(
'取消'
),
async
onOk
()
{
if
(
selectedKeys
.
value
.
length
===
0
)
{
Modal
.
warning
({
title
:
'提示'
,
...
...
@@ -419,6 +427,10 @@
description
:
'下发成功!'
,
});
});
},
onCancel
()
{},
});
}
function
getLessActions
(
record
:
Recordable
)
{
...
...
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