删除未定义
This commit is contained in:
@ -51,7 +51,7 @@
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
v-model:showSearch="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
@ -103,8 +103,8 @@
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</div>
|
||||
|
@ -270,7 +270,7 @@
|
||||
placeholder="请输入部门名称"
|
||||
clearable
|
||||
size="small"
|
||||
prefix-icon="el-icon-search"
|
||||
prefix-icon="search"
|
||||
/>
|
||||
<el-tree
|
||||
:data="deptOptions"
|
||||
@ -489,7 +489,6 @@ let dateRange;
|
||||
/** 查询用户列表 */
|
||||
function getList() {
|
||||
userLoading.value = true;
|
||||
// debugger;
|
||||
listUser(addDateRange(queryParams.value, dateRange)).then((response) => {
|
||||
userList.value = response.rows;
|
||||
total.value = response.total;
|
||||
@ -509,9 +508,9 @@ function handleNodeClick(data) {
|
||||
}
|
||||
function setIcon(val) {
|
||||
if (val) {
|
||||
return "el-icon-check";
|
||||
return "check";
|
||||
} else {
|
||||
return "el-icon-time";
|
||||
return "time";
|
||||
}
|
||||
}
|
||||
function setColor(val) {
|
||||
|
@ -55,7 +55,7 @@
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
v-model:showSearch="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
@ -138,8 +138,8 @@
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</div>
|
||||
@ -149,6 +149,7 @@ import { listFinishedProcess } from "@/api/flowable/process";
|
||||
import { revokeProcess } from "@/api/flowable/finished";
|
||||
import { useRouter } from "vue-router";
|
||||
import { ref, reactive, toRefs } from "vue";
|
||||
import { ElMessage, ElMessageBox } from "element-plus";
|
||||
const queryFormRef = ref();
|
||||
// 遮罩层
|
||||
const loading = ref(true);
|
||||
@ -165,10 +166,7 @@ const total = ref(0);
|
||||
// 已办任务列表数据
|
||||
const finishedList = ref([]);
|
||||
// 弹出层标题
|
||||
const title = ref("");
|
||||
// 是否显示弹出层
|
||||
const open = ref(false);
|
||||
const src = ref("");
|
||||
|
||||
const data = reactive({
|
||||
// 查询参数
|
||||
@ -190,7 +188,7 @@ const data = reactive({
|
||||
// 表单校验
|
||||
rules: {},
|
||||
});
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
const { queryParams } = toRefs(data);
|
||||
|
||||
/** 查询流程定义列表 */
|
||||
function getList() {
|
||||
@ -204,8 +202,8 @@ function getList() {
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
}
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
@ -240,24 +238,28 @@ function handleRevoke(row) {
|
||||
procInsId: row.procInsId,
|
||||
};
|
||||
revokeProcess(params).then((res) => {
|
||||
this.$modal.msgSuccess(res.msg);
|
||||
this.getList();
|
||||
ElMessage.success(res.msg);
|
||||
getList();
|
||||
});
|
||||
}
|
||||
/** 删除按钮操作 */
|
||||
function handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$confirm('是否确认删除流程定义编号为"' + ids + '"的数据项?', "警告", {
|
||||
const deleteIds = row.id || ids.value;
|
||||
ElMessageBox.confirm(
|
||||
'是否确认删除流程定义编号为"' + deleteIds + '"的数据项?',
|
||||
"警告",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
}
|
||||
)
|
||||
.then(function () {
|
||||
return delDeployment(ids);
|
||||
return delDeployment(deleteIds);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
getList();
|
||||
ElMessage.success("删除成功");
|
||||
});
|
||||
}
|
||||
defineExpose({
|
||||
|
@ -188,7 +188,6 @@ import { ElMessage, ElMessageBox } from "element-plus";
|
||||
const queryFormRef = ref();
|
||||
// 遮罩层
|
||||
const loading = ref(true);
|
||||
const processLoading = ref(true);
|
||||
// 选中数组
|
||||
const ids = ref([]);
|
||||
// 非单个禁用
|
||||
@ -200,15 +199,10 @@ const showSearch = ref(true);
|
||||
// 总条数
|
||||
const total = ref(0);
|
||||
const categoryOptions = ref([]);
|
||||
const processTotal = ref(0);
|
||||
// 我发起的流程列表数据
|
||||
const ownProcessList = ref([]);
|
||||
// 弹出层标题
|
||||
const title = ref("");
|
||||
// 是否显示弹出层
|
||||
const open = ref(false);
|
||||
const src = ref("");
|
||||
const definitionList = ref([]);
|
||||
const data = reactive({
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
@ -229,7 +223,7 @@ const data = reactive({
|
||||
// 表单校验
|
||||
rules: {},
|
||||
});
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
const { queryParams } = toRefs(data);
|
||||
|
||||
/** 查询流程分类列表 */
|
||||
function getCategoryList() {
|
||||
@ -344,21 +338,3 @@ export default {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<!-- <script>
|
||||
export default {
|
||||
name: "Own",
|
||||
components: {},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
created() {
|
||||
this.getCategoryList();
|
||||
},
|
||||
beforeRouteEnter(to, from, next) {
|
||||
next((vm) => {
|
||||
vm.getList();
|
||||
});
|
||||
},
|
||||
methods: {},
|
||||
};
|
||||
</script> -->
|
||||
|
@ -150,7 +150,7 @@ export default {
|
||||
<style lang="scss" scoped>
|
||||
@import "@/assets/styles/mixin.scss";
|
||||
|
||||
::v-deep .el-drawer__header {
|
||||
:deep(.el-drawer__header) {
|
||||
display: none;
|
||||
}
|
||||
@include action-bar;
|
||||
|
@ -1425,7 +1425,7 @@ watch(
|
||||
.el-date-editor {
|
||||
width: 227px;
|
||||
}
|
||||
::v-deep .el-icon-time {
|
||||
:deep(.el-icon-time) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user