dusenyao 2 سال پیش
والد
کامیت
3d021044b8

+ 2 - 2
src/components/quota/SetOrgQuotaRemind.vue

@@ -1,6 +1,6 @@
 <template>
   <el-dialog
-    title="设置余提醒"
+    title="设置余提醒"
     width="480px"
     :visible="visible"
     :before-close="handleClose"
@@ -59,7 +59,7 @@ export default {
         quota_remind_1v1_online: this.quota_remind_1v1_online,
         quota_remind_1vm_online: this.quota_remind_1vm_online
       }).then(() => {
-        this.$message.success('设置机构配额提醒量成功');
+        this.$message.success('设置机构余量提醒成功');
         this.handleClose();
       });
     },

+ 1 - 1
src/views/account_manager/index.vue

@@ -29,7 +29,7 @@
         <el-table-column prop="user_name" label="用户名" width="180" />
         <el-table-column prop="real_name" label="姓名" width="180" />
         <el-table-column prop="user_type_name" label="用户类型" width="120" />
-        <el-table-column prop="org_name_desc" label="加入机构名称" width="300" />
+        <el-table-column prop="org_name_desc" label="加入机构名称" width="400" />
         <el-table-column prop="email" label="邮箱" />
       </el-table>
     </div>

+ 1 - 1
src/views/org_manager/index.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="org-manager">
     <el-input v-model="search" type="text" prefix-icon="el-icon-search" @keyup.enter.native="queryOrgList">
-      <el-button slot="append" icon="el-icon-search" @click="queryOrgList"></el-button>
+      <el-button slot="append" icon="el-icon-search" @click="queryOrgList" />
     </el-input>
     <div class="org-manager-list">
       <div class="org-manager-list-title">

+ 1 - 1
src/views/quota/index.vue

@@ -31,7 +31,7 @@
         <el-table-column label="操作" fixed="right" width="200">
           <template slot-scope="{ row }">
             <span class="set-quota operable" @click="setQuota(row.org_id)">设置配额</span>
-            <span class="set-quota operable" @click="quotaRemind(row.org_id)">余提醒</span>
+            <span class="set-quota operable" @click="quotaRemind(row.org_id)">余提醒</span>
             <span class="operable" @click="setStatus(row.org_id, !row.quota_status)">
               {{ row.quota_status ? '停用' : '启用' }}
             </span>