|
@@ -232,11 +232,12 @@
|
|
|
<open-dialog v-if="updateVisible" ref="task_createdUpdata" />
|
|
|
<!-- 编辑 -->
|
|
|
<!-- 删除 -->
|
|
|
- <el-dialog :visible.sync="deleteVisible" width="30%" center :close-on-click-modal="false">
|
|
|
+ <el-dialog :visible.sync="deleteVisible" title="删除确认" class="public_task" width="30%" :close-on-click-modal="false">
|
|
|
+ <div class="blueStripe" />
|
|
|
<div align="center">确定要删除此 {{ form_query.name }} 任务吗?</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="deleteVisible = false">关 闭</el-button>
|
|
|
- <el-button type="primary" @click="taskDelete()">确 定</el-button>
|
|
|
+ <el-button size="mini" @click="deleteVisible = false">关 闭</el-button>
|
|
|
+ <el-button size="mini" type="primary" @click="taskDelete()">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
<!-- 删除 -->
|
|
@@ -272,6 +273,7 @@ import {
|
|
|
configShowRequirementVersionEnum,
|
|
|
scheduleGetTaskScheduleHistory
|
|
|
} from '@/api/taskIndex'
|
|
|
+import '@/styles/PublicStyle/index.scss'
|
|
|
import { listByTask } from '@/api/projectViewDetails'
|
|
|
import { projectListProject, scheduleGetHistoryScheduleById } from '@/api/requirement.js'
|
|
|
import searchPeople from '@/components/select/searchPeople'
|