Commit f0b6683e by wusiyi

fix: 重新生产提示语修复

parent ebf6424e
...@@ -3384,11 +3384,18 @@ const handleApplyReplenish = async () => { ...@@ -3384,11 +3384,18 @@ const handleApplyReplenish = async () => {
const handleRemanufacture = () => { const handleRemanufacture = () => {
if (!ensureSelection()) return if (!ensureSelection()) return
const rows = isCardLayout.value ? cardSelectList.value : selectedRows.value const rows = isCardLayout.value ? cardSelectList.value : selectedRows.value
ElMessageBox.confirm('确定重新生产吗?', '提示', { ElMessageBox.confirm(
`<div>确定重新生产吗?</br>
<span>确定后操作单状态返回生产中</span>
</div>`,
'提示',
{
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning', type: 'warning',
}) dangerouslyUseHTMLString: true,
},
)
.then(async () => { .then(async () => {
const loading = ElLoading.service({ const loading = ElLoading.service({
fullscreen: true, fullscreen: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment