From 809eae43e71f8c285b2247931228d1952df2b9cd Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 13 三月 2024 14:19:49 +0800
Subject: [PATCH] 流程图添加创建时间
---
src/views/system/unit/people/index.vue | 11 +++--------
1 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/src/views/system/unit/people/index.vue b/src/views/system/unit/people/index.vue
index 9841411..31a2fa1 100644
--- a/src/views/system/unit/people/index.vue
+++ b/src/views/system/unit/people/index.vue
@@ -43,7 +43,6 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
- v-hasPermi="['system:people:add']"
>鏂板</el-button>
</el-col>
<el-col :span="1.5">
@@ -54,7 +53,6 @@
size="mini"
:disabled="single"
@click="handleUpdate"
- v-hasPermi="['system:people:edit']"
>淇敼</el-button>
</el-col>
<el-col :span="1.5">
@@ -65,7 +63,6 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
- v-hasPermi="['system:people:remove']"
>鍒犻櫎</el-button>
</el-col>
<el-col :span="1.5">
@@ -75,7 +72,6 @@
icon="el-icon-download"
size="mini"
@click="handleExport"
- v-hasPermi="['system:people:export']"
>瀵煎嚭</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@@ -86,7 +82,7 @@
<el-table-column label="杩愮淮浜哄憳缂栧彿" align="center" prop="ywPersonCode" />
<el-table-column label="杩愮淮浜哄憳濮撳悕" align="center" prop="ywPersonName" />
<el-table-column label="杩愮淮浜哄憳璐﹀彿" align="center" prop="ywPersonAccount" />
- <el-table-column label="鎵�灞炶繍缁村崟浣�" align="center" prop="belongUnit" />
+ <el-table-column label="鎵�灞炶繍缁村崟浣�" align="center" prop="belongUnitName" />
<el-table-column label="鑱旂郴鐢佃瘽" align="center" prop="phone" />
<el-table-column label="鎿嶄綔" fixed="right" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
@@ -95,14 +91,12 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
- v-hasPermi="['system:people:edit']"
>淇敼</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
- v-hasPermi="['system:people:remove']"
>鍒犻櫎</el-button>
</template>
</el-table-column>
@@ -184,6 +178,7 @@
ywPersonName: null,
belongUnit: null,
},
+ // 杩愮淮鍗曚綅
unitList: [],
// 琛ㄥ崟鍙傛暟
form: {},
@@ -213,7 +208,7 @@
},
methods: {
getUnitSelect() {
- // 涓嬫媺鍒楄〃
+ // 杩愮淮鍗曚綅涓嬫媺鍒楄〃
unitSelect().then((res) => {
this.unitList = res.data;
})
--
Gitblit v1.8.0