Commit 3c13eafc authored by jiaxu.yan's avatar jiaxu.yan

fix: 70436 70453 70454

parent ac6c9d5a
......@@ -216,7 +216,8 @@ export default {
handleDelete(id) {
this.$modal
.confirm('是否确定删除该条数据?', {
title: '操作确认',
type: 'warning',
title: '删除',
closeOnClickModal: false
})
.then(() => {
......
......@@ -363,7 +363,8 @@ export default {
// console.log(node, data)
this.$modal
.confirm('是否确定删除该条数据?', {
title: '操作确认',
type: 'warning',
title: '删除',
closeOnClickModal: false
})
.then(() => {
......
......@@ -166,7 +166,8 @@ export default {
handleDelete(row) {
this.$modal
.confirm('是否确定删除该条数据?', {
title: '操作确认',
type: 'warning',
title: '删除',
closeOnClickModal: false
})
.then(() => {
......
......@@ -186,7 +186,8 @@ export default {
handleDelete(row) {
this.$modal
.confirm('是否确定删除该条数据?', {
title: '操作确认',
type: 'warning',
title: '删除',
closeOnClickModal: false
})
.then(() => {
......
......@@ -550,7 +550,8 @@ export default {
handleDelete(row) {
this.$modal
.confirm('是否确定删除该条数据?', {
title: '操作确认',
type: 'warning',
title: '删除',
closeOnClickModal: false
})
.then(function () {
......
<template>
<page-standard>
<div slot="tab">
<el-tabs v-model="queryParams.taskStatus" @tab-click="loadData">
<el-tab-pane
v-for="(dict, key) in reviewTypeList"
:key="key"
:label="dict.label"
:name="dict.value"
>
</el-tab-pane>
</el-tabs>
</div>
<el-form ref="queryForm" :model="queryParams" size="small" :inline="true">
<template v-if="showSearch">
<el-form-item label="检验依据">
......@@ -509,6 +520,24 @@ export default {
mixins: [page],
data() {
return {
reviewTypeList: [
{
label: '全部',
value: ''
},
{
label: '未开始',
value: 'NEW'
},
{
label: '进行中',
value: 'PENDING'
},
{
label: '已完成',
value: 'FINISH'
}
],
// 子任务内容跳转文字map
dialogVisible: false,
listUrl: '/task/findCreate',
......@@ -604,7 +633,8 @@ export default {
teakDelete(id) {
this.$modal
.confirm('是否确定删除该条数据?', {
title: '操作确认',
type: 'warning',
title: '删除',
closeOnClickModal: false
})
.then(() => {
......
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