feat: Update project name and title for consistency; enhance HR employee sync functionality
This commit is contained in:
parent
6cba2bfe21
commit
7d75a72a3a
|
@ -6,7 +6,7 @@
|
|||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="stylesheet" type="text/css" href="/vol.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Laservall Manager</title>
|
||||
<title>Laservall Manager System</title>
|
||||
<script>
|
||||
var lang_storage_key = 'vol_lang';
|
||||
</script>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "vol",
|
||||
"name": "laservall_manager_system",
|
||||
"version": "3.5.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "vol",
|
||||
"name": "laservall_manager_system",
|
||||
"private": true,
|
||||
"version": "3.5.0",
|
||||
"type": "module",
|
||||
|
|
|
@ -29,7 +29,13 @@ let extension = {
|
|||
type: 'primary', //按钮样式:https://element-plus.gitee.io/zh-CN/component/button.html
|
||||
//color:"#eee",//自定义按钮颜色
|
||||
onClick: function () {
|
||||
this.$Message.success('点击了按钮');
|
||||
let url = 'api/HR_EmployeeSync/GenEmpSystemShip';
|
||||
|
||||
this.http.post(url, {}, '生成关联关系中').then((reslut) => {
|
||||
this.$Message.success('生成完成,请点击查询进行刷新');
|
||||
this.search();
|
||||
});
|
||||
// proxy.http.post(url, {}, '生成关联关系中').then((reslut) => {});
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ app.config.globalProperties.permission = permission
|
|||
app.config.globalProperties.$global = {
|
||||
useIncludeCache:true,//使用include做缓存,旧版本升级的代码这里需要设置为false
|
||||
theme: 'laservall', //默认布局颜色:dark、blue、red、orange、green
|
||||
layout: 'top', //菜单布局方式:classics=经典导航,top=顶部导航
|
||||
layout: 'classics', //菜单布局方式:classics=经典导航,top=顶部导航
|
||||
menuSearch: true, //菜单是否启用搜索功能
|
||||
navSearch: true, //导航是否启用菜单搜索功能
|
||||
table: {
|
||||
|
|
Loading…
Reference in New Issue