Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
a3adc6e33e
9
web/src/views/testdata/testtask/index.vue
vendored
9
web/src/views/testdata/testtask/index.vue
vendored
@ -5,7 +5,7 @@ export default {
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onMounted, ref } from "vue";
|
||||
import { onMounted, ref,h } from "vue";
|
||||
import { ElMessage, ElMessageBox } from 'element-plus'
|
||||
import Page from '@/components/Pagination/page.vue'
|
||||
import {
|
||||
@ -227,12 +227,17 @@ function delproject(row: any) {
|
||||
//强制删除项目弹框
|
||||
function reforcedelproject(row: any) {
|
||||
ElMessageBox.confirm(
|
||||
'强制删除将删除该试验任务的所有内容:包括本地存储空间文件及备份存储空间文件。建议限于测试数据或者已有其他备份的的试验任务数据。您确认要强制删除吗?',
|
||||
'',
|
||||
'警告',
|
||||
{
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
message: h(
|
||||
'span',
|
||||
{ style: 'color:#f56c6c' },
|
||||
'强制删除将删除该试验任务的所有内容:包括本地存储空间文件及备份存储空间文件。建议限于测试数据或者已有其他备份的的试验任务数据。您确认要强制删除吗?'
|
||||
)
|
||||
}
|
||||
)
|
||||
.then(() => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user