Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/examine/editExamineStaff/editExamineStaff.js
2025-12-09 20:22:03 +08:00

189 lines
8.0 KiB
JavaScript

(function (vc) {
vc.extends({
data: {
editExamineStaffInfo: {
esId: '',
staffName: '',
staffId: '',
post: '',
introduction: '',
headerImg: '',
allProjects: [],
projectIds: []
}
},
_initMethod: function () {
$that.editExamineStaffInfo.esId = vc.getParam('esId');
$that._initTextArea();
$that._listExamineProjects();
$that._listExamineStaffs();
},
_initEvent: function () {
vc.on("editExamineStaff", "notifyUploadImage", function (_param) {
if (_param.length > 0) {
vc.component.editExamineStaffInfo.headerImg = _param[0].fileId;
} else {
vc.component.editExamineStaffInfo.headerImg = ''
}
});
},
methods: {
editExamineStaffValidate() {
return vc.validate.validate({
editExamineStaffInfo: vc.component.editExamineStaffInfo
}, {
'editExamineStaffInfo.staffId': [
{
limit: "required",
param: "",
errInfo: "员工名称不能为空"
},
{
limit: "maxLength",
param: "30",
errInfo: "员工不能超过30"
}
]
});
},
_updateExamineStaff: function () {
if (!vc.component.editExamineStaffValidate()) {
vc.toast(vc.validate.errInfo);
return;
}
vc.component.editExamineStaffInfo.communityId = vc.getCurrentCommunity().communityId;
vc.http.apiPost(
'/examine.updateExamineStaff',
JSON.stringify(vc.component.editExamineStaffInfo), {
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json);
if (_json.code == 0) {
//关闭model
vc.goBack();
vc.toast("修改成功");
return;
} else {
vc.toast(_json.msg);
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
_listExamineProjects: function (_page, _rows) {
let param = {
params: {
page: 1,
row: 100,
communityId: vc.getCurrentCommunity().communityId
}
};
//发送get请求
vc.http.apiGet('/examine.listExamineProject',
param,
function (json, res) {
let _examineProjectManageInfo = JSON.parse(json);
$that.editExamineStaffInfo.allProjects = _examineProjectManageInfo.data;
},
function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_listExamineStaffs: function (_page, _rows) {
let param = {
params: {
page: 1,
row: 1,
esId: $that.editExamineStaffInfo.esId,
communityId: vc.getCurrentCommunity().communityId
}
};
//发送get请求
vc.http.apiGet('/examine.listExamineStaff',
param,
function (json, res) {
var _examineStaffManageInfo = JSON.parse(json);
vc.copyObject(_examineStaffManageInfo.data[0], $that.editExamineStaffInfo);
_examineStaffManageInfo.data[0].projects.forEach(item => {
$that.editExamineStaffInfo.projectIds.push(item.projectId);
});
$(".summernote").summernote('code', vc.component.editExamineStaffInfo.introduction);
var photos = [];
photos.push(vc.component.editExamineStaffInfo.headerImg);
vc.emit('editExamineStaff', 'uploadImageUrl', 'notifyPhotos', photos);
},
function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_goBack: function () {
vc.goBack();
},
_initTextArea: function () {
var $summernote = $('.summernote').summernote({
lang: 'zh-CN',
height: 300,
placeholder: '必填,请输入员工简介',
callbacks: {
onImageUpload: function (files, editor, $editable) {
$that.sendFile($summernote, files);
},
onChange: function (contents, $editable) {
if (contents && contents.indexOf("<p>") != -1 && contents.indexOf("</p>") != -1) {
contents = contents.substring(3, contents.length - 4);
}
vc.component.editExamineStaffInfo.introduction = contents;
}
},
toolbar: [
['style', ['style']],
['font', ['bold', 'italic', 'underline', 'clear']],
['fontname', ['fontname']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['table', ['table']],
['insert', ['link', 'picture']],
['view', ['fullscreen', 'codeview']],
],
});
},
sendFile: function ($summernote, files) {
var param = new FormData();
param.append("uploadFile", files[0]);
param.append('communityId', vc.getCurrentCommunity().communityId);
vc.http.upload(
'uploadFile',
'uploadImage',
param, {
emulateJSON: true,
//添加请求头
headers: {
"Content-Type": "multipart/form-data"
}
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
if (res.status == 200) {
var data = JSON.parse(json);
//关闭model
//$summernote.summernote('insertImage', "/callComponent/download/getFile/file?fileId=" + data.fileId + "&communityId=" + vc.getCurrentCommunity().communityId);
$summernote.summernote('insertImage', data.url);
return;
}
vc.toast(json);
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
}
});
})(window.vc);