入场人员信息修改
This commit is contained in:
parent
980664e666
commit
226610ff13
|
|
@ -5,7 +5,7 @@ var uploadContractSwitch = true
|
||||||
var createUserSwitch = true
|
var createUserSwitch = true
|
||||||
var uploadNum = 1
|
var uploadNum = 1
|
||||||
let contractId = uuid2(32,16);
|
let contractId = uuid2(32,16);
|
||||||
let attendanceMachine, faceFeatures;
|
let attendanceMachine, subId, faceFeatures;
|
||||||
let companyExamFilePath, deptExamFilePath, teamExamFilePath, checkupFilePath;
|
let companyExamFilePath, deptExamFilePath, teamExamFilePath, checkupFilePath;
|
||||||
let files = {}
|
let files = {}
|
||||||
let WageCardFiles = {}
|
let WageCardFiles = {}
|
||||||
|
|
@ -26,9 +26,11 @@ layui.use(['form', 'laydate', 'upload', 'element'], function () {
|
||||||
urgentPersonPhone: [/(^$)|^1[3456789]\d{9}$/, '请输入11位手机号码'],
|
urgentPersonPhone: [/(^$)|^1[3456789]\d{9}$/, '请输入11位手机号码'],
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
$(document).ready(function() {
|
||||||
|
getProjectSelect(); // 初始化时加载分包下拉列表
|
||||||
|
});
|
||||||
//顶部样式
|
//顶部样式
|
||||||
titleStyle()
|
titleStyle()
|
||||||
|
|
||||||
getSub('')
|
getSub('')
|
||||||
form.on('select(subId)', function(data){
|
form.on('select(subId)', function(data){
|
||||||
getTeamBySubId(data.value,'')
|
getTeamBySubId(data.value,'')
|
||||||
|
|
@ -349,9 +351,10 @@ layui.use(['form', 'laydate', 'upload', 'element'], function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
function proChange(value){
|
function proChange(value){
|
||||||
if(value != null && value !== '') {
|
if (value != null && value !== "") {
|
||||||
attendanceMachine = getAttendanceMachineByProId(value);
|
attendanceMachine = getAttendanceMachineByProId(value);
|
||||||
getSubByProId(value);
|
getSubByProId(value, subId);
|
||||||
|
getTeamBySubId("", "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue