Browse Source

fix: 服务跟进权限SQL添加

zhangying 8 months ago
parent
commit
64867b76e3
2 changed files with 8 additions and 2 deletions
  1. 6 1
      doc/待更新脚本.txt
  2. 2 1
      vue/src/views/jobUserManager/jobuser/index.vue

+ 6 - 1
doc/待更新脚本.txt

@@ -27,4 +27,9 @@ INSERT INTO sys_dictionary_item  VALUES (uuid(), '', 'RegisteredCapitalType', 1,
        (uuid(), '', 'RegisteredCapitalType', 6, '万元(其他)', 60, 1, 0);
 
 alter table pc_company add column RegisteredCapitalType int  comment '注册资本类型' AFTER RegisteredCapital;
-update pc_company set RegisteredCapitalType =1
+update pc_company set RegisteredCapitalType =1
+
+-- 2024-6-19 求职人员服务跟进权限字典码与权限赋值
+INSERT INTO sys_function_code VALUES ('T01030108', '服务跟进', 'T010301', 8);
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T01030108');
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('10a12f77-0958-4220-b9ce-07b9215046f2','T01030108');

+ 2 - 1
vue/src/views/jobUserManager/jobuser/index.vue

@@ -158,7 +158,8 @@
               <a-button type="link" size="small" functioncode="T01030106" @click='onVitae(record)'>个人简历</a-button>
               <a-button type="link" size="small" functioncode="T01030103" @click='onEdit(record)'>编辑</a-button>
               <a-button type="link" size="small" functioncode="T01030104" @click="onDel(record)">删除</a-button>
-              <a-button type="link" size="small" @click="openServiceModal(record)">跟进</a-button>
+              <a-button type="link" size="small" functioncode="T01030108" @click="openServiceModal(record)">服务跟进
+              </a-button>
             </div>
           </template>
         </template>