zhaoke 2 years ago
parent
commit
ae62c7a347
2 changed files with 7 additions and 1 deletions
  1. 6 0
      public/demo.js
  2. 1 1
      src/views/userManagement/account/index.vue

+ 6 - 0
public/demo.js

@@ -49,6 +49,9 @@ const DATACONTENT_ID = {
   authTreeId: 40, //权限管理-权限树
   authTreeNewId: 92, //权限管理-权限树
 
+  /***-----应用管理------***/
+  appTableId: 39, //应用管理-列表
+
   /***-----系统设置------***/
   sysSourceId: 13, //系统设置-数据源-id
   sysProtoTabId: 1, //系统设置-协议管理-表格-id
@@ -201,6 +204,9 @@ const SERVICE_ID = {
   /***-----权限项管理------***/
   authScId: 13, //权限项管理-增删改
 
+  /***-----应用管理------***/
+  appScId: 12, //应用管理-增删改
+
   /***-----离港管理------***/
   departureScId: 8011, //发送报警预警日志信息
 

+ 1 - 1
src/views/userManagement/account/index.vue

@@ -19,7 +19,7 @@
     <Dialog :flag="editDialogVisible" :msgTitle="editDialogTitle" @submitForm="submitForm(ruleFormRef)" @resetForm="resetForm(ruleFormRef)" :show-flag="true">
       <el-form ref="ruleFormRef" :model="ruleForm" label-width="110px" class="demo-ruleForm">
         <el-form-item label="账号名称" prop="user_name">
-          <el-input v-model="ruleForm.user_name" size="default" placeholder="请输入账号名称" />
+          <el-input :disabled="dT == 'edit'" v-model="ruleForm.user_name" size="default" placeholder="请输入账号名称" />
         </el-form-item>
         <el-form-item label="账号密码" prop="user_pwd">
           <el-input v-model="ruleForm.user_pwd" type="password" show-password size="default" placeholder="请输入账号名称" />