glj-代码提交
This commit is contained in:
parent
a145a2a489
commit
b444d3c60f
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="system-add-dept-container">
|
||||
<el-dialog :title="state.title" v-model="state.isShowDialog" width="769px">
|
||||
<el-dialog title="Review application" v-model="state.isShowDialog" width="769px">
|
||||
<el-card shadow="hover" class="layout-padding-auto">
|
||||
<el-table :data="state.tableDataNew.data" v-loading="state.tableDataNew.loading" style="width: 100%" @selection-change="selectionChange">
|
||||
<el-table-column type="selection" width="60" @select="selectRow" />
|
||||
|
@ -86,7 +86,6 @@ const { website } = storeToRefs(storesThemeConfig);
|
|||
const formRef = ref();
|
||||
const state = reactive({
|
||||
isShowDialog: false,
|
||||
title: 'Review application',
|
||||
rowData: {},
|
||||
tableData: {
|
||||
query: {
|
||||
|
@ -119,8 +118,11 @@ const selectRow = (row) => {
|
|||
};
|
||||
// 打开弹窗
|
||||
const openDialog = (row) => {
|
||||
state.title = 'Review application';
|
||||
state.rowData = row;
|
||||
//B2管理员Id
|
||||
state.adminId = row.adminId;
|
||||
//B1管理员Id
|
||||
state.chiefId = row.chiefId;
|
||||
state.isShowDialog = true;
|
||||
getTableDataNew();
|
||||
state.selectData = [];
|
||||
|
|
Loading…
Reference in New Issue