|
@@ -196,7 +196,7 @@ const handleCurrentChange = (val) => {
|
|
|
<el-table-column prop="createdAt" label="Added date"> </el-table-column>
|
|
|
<el-table-column prop="operate" label="Operate">
|
|
|
<template slot-scope="scope">
|
|
|
- <div class="flex flex-col">
|
|
|
+ <div class="flex flex-col" v-if="scope.row.memberRole !== 'Super admin'">
|
|
|
<router-link
|
|
|
:to="{ path: '/manageAdmin/editAdmin', query: { Email: scope.row.email, Team: scope.row.teamName, Id: scope.row.id } }"
|
|
|
class="
|
|
@@ -292,6 +292,15 @@ const handleCurrentChange = (val) => {
|
|
|
.el-table::v-deep thead {
|
|
|
color: #000 !important;
|
|
|
}
|
|
|
+::v-deep .input-with-select .el-input__inner {
|
|
|
+ padding: 0 20px 0 8px;
|
|
|
+ border-color: #d9d9d9;
|
|
|
+}
|
|
|
+::v-deep .input-with-select .el-input__inner::placeholder {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #808185;
|
|
|
+}
|
|
|
</style>
|
|
|
|
|
|
<style lang="scss">
|