Commit 98111e0c by qinjianhui

fix: 问题修改

parent 584c53a5
...@@ -686,7 +686,7 @@ const handleSubmitAudit = async () => { ...@@ -686,7 +686,7 @@ const handleSubmitAudit = async () => {
} }
const handleDeleteOrder = async () => { const handleDeleteOrder = async () => {
if (selection.value.length !== 1) { if (selection.value.length !== 1) {
return ElMessage.warning('不支持批量取消!') return ElMessage.warning('不支持批量删除!')
} }
try { try {
await ElMessageBox.confirm('确定删除选中的订单?', '提示', { await ElMessageBox.confirm('确定删除选中的订单?', '提示', {
...@@ -708,7 +708,7 @@ const handleDeleteOrder = async () => { ...@@ -708,7 +708,7 @@ const handleDeleteOrder = async () => {
} }
const handleCancelOrder = async () => { const handleCancelOrder = async () => {
if (selection.value.length !== 1) { if (selection.value.length !== 1) {
return ElMessage.warning('请选择一条数据') return ElMessage.warning('不支持批量取消!')
} }
ElMessageBox.prompt('', '取消原因', { ElMessageBox.prompt('', '取消原因', {
confirmButtonText: '确认', confirmButtonText: '确认',
......
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