微信公众号
微信企业号
服务号
1969年1月出生,大专学历,药师。现为本公司总经理、党委副书记。曾任本公司新特药分公司副经理、销售五部经理、新特药分公司经理,公司助理总经理、副总经理等职。
1978年4月出生,研究生学历,会计师。现任本公司财务总监。曾任上海花王有限公司财务部财务经理,洗王(中国)有限公司财务部经理,上海冶金机械有限公司财务部财务总监等职。
1973年4月出生,本科学历,药师。现任本公司副总经理。曾任本公司医药批发部经理助理、常务副经理、经理,公司助理总经理、副总经理等职。
1978年5月出生,中共党员,本科学历,主管中药师。现任本公司质量总监。曾任本公司质量管理部部长、质量副总监等职。
1971年3月出生,本科学历,助理工程师。现任本公司助理总经理,并在本公司附属公司兼任董事长职务。
曾任本公司行政管理部副部长、物流中心经理,本公司附属公司总经理等职。
1966年12月出生,本科学历,高级会计师、经济师。现任上药控股宁波医药股份有限公司财务副总监。曾任本公司财务部副部长、财务部部长等职。
1973年1月出生,本科学历,助理工程师。曾任本公司信息技术部副部长、部长,信息技术副总监等职。
元素上 document.documentElement.style.fontSize = baseFontSize; } // 特效初始化 AOS.init({ disable: window.innerWidth < 992, duration: 800 }); /** * @description 函数描述:点击tabs切换tabs选择,内容切换 * @param tabs_arr {arrery} tabs按钮数组 * @param item_arr {arrery} tabs内容数组 * @param current {string} 当前选择的tab */ $('.tab').click(function () { tabsChange(this.id) }) function tabsChange(current) { let tabs_arr = $('.tab') let item_arr = $('.tabs_item') // console.log('tabs数组', tabs_arr); // console.log('item_arr数组', item_arr); for (let i = 0; i < tabs_arr.length; i++) { if (current == tabs_arr[i].id) { // console.log(current); $(`#${current}`).css('color', '#0074B7') $(`#${tabs_arr[i].id}`).css('border-bottom', '1px solid #0074B7') $(`#${item_arr[i].id}`).css('display', 'block') } else { $(`#${tabs_arr[i].id}`).css('color', '#333333') $(`#${tabs_arr[i].id}`).css('border-bottom', 'none') $(`#${item_arr[i].id}`).css('display', 'none') } } } /** * @description 函数描述:点击人员卡片,出现遮罩层,并对遮罩层数据进行赋值 * @param imageSrc {string} 人员图片 * @param title {string} 人员姓名 * @param subtitle {string} 人员介绍 */ $(document).ready(function () { $(".card").click(function () { if(window.innerWidth > 992){ // console.log($(this).find("img").attr("src")); var imageSrc = $(this).find("img").attr("src"); var title = $(this).find(".name span").text(); var subtitle = $(this).find(".name_info").text(); var subtitle2 = $(this).find(".name_info2").text(); // console.log(subtitle); $("#overlayImage").attr("src", imageSrc); $("#overlayTitle").text(title); $("#overlaySubtitle").text(subtitle); $("#overlaySubtitle2").text(subtitle2); $("#overlay").fadeIn(); } }); $(".fangda-card").click(function () { if(window.innerWidth > 992){ // console.log($(this).find("img").attr("src")); var imageSrc = $(this).find("img").attr("src"); var title = $(this).find(".name").text(); var subtitle = $(this).find(".fangda-zhicheng").text(); var subtitle2 = $(this).find(".fangda-jingli").text(); // console.log(subtitle); $("#overlayImage").attr("src", imageSrc); $("#overlayTitle").text(title); $("#overlaySubtitle").text(subtitle); $("#overlaySubtitle2").text(subtitle2); $("#overlay").fadeIn(); } }); $("#overlay").click(function () { $("#overlay").fadeOut(); }); }); // 移动端遮罩层点击展开 function openNav() { document.getElementById("myNav").style.width = "100%"; document.getElementById("body").style.overflow = "hidden"; } // 移动端遮罩层点击收起 function closeNav() { document.getElementById("myNav").style.width = "0%"; }