|
@@ -5,6 +5,7 @@ defineOptions({
|
|
|
});
|
|
|
import { ref, reactive } from "vue";
|
|
|
import { ElMessageBox, ElMessage } from "element-plus";
|
|
|
+import { Search } from "@element-plus/icons-vue";
|
|
|
import prosonEditDrawer from "./components/prosonEditDrawer.vue";
|
|
|
import newDepartment from "./components/newDepartment.vue";
|
|
|
import addPerson from "./components/addPerson.vue";
|
|
@@ -192,7 +193,7 @@ const editRoles = row => {
|
|
|
<changeRole ref="changeRoleRef" v-model="changeRoleShow" />
|
|
|
<!-- 主体内容 -->
|
|
|
<div class="box-left">
|
|
|
- <el-input placeholder="搜索" class="mb-2" />
|
|
|
+ <el-input placeholder="搜索" class="mb-2" :prefix-icon="Search" />
|
|
|
<el-tree
|
|
|
class="m-2 mr-8"
|
|
|
style="max-width: 600px"
|
|
@@ -232,7 +233,12 @@ const editRoles = row => {
|
|
|
</div>
|
|
|
<div class="box-right">
|
|
|
<div class="flex justify-between mb-3">
|
|
|
- <el-input placeholder="搜索" class="mb-2" style="max-width: 300px" />
|
|
|
+ <el-input
|
|
|
+ :prefix-icon="Search"
|
|
|
+ placeholder="搜索"
|
|
|
+ class="mb-2"
|
|
|
+ style="max-width: 300px"
|
|
|
+ />
|
|
|
<el-button type="primary" @click="AddPerson">添加成员</el-button>
|
|
|
</div>
|
|
|
<el-table :data="tableData" style="width: 100%">
|