355 lines
12 KiB
Vue
355 lines
12 KiB
Vue
<template>
|
||
<view class="todo-page">
|
||
<view class="card">
|
||
<view class="background"></view>
|
||
<view>
|
||
<u--form labelPosition="left" labelWidth="auto" labelAlign="center" :model="model" class="demo-ruleForm">
|
||
<u-form-item label="培训名称:" prop="NAME" borderBottom>
|
||
<u--input v-model="model.NAME" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="发起时间:" prop="LAUNCH_TIME" borderBottom>
|
||
<u--input v-model="model.LAUNCH_TIME" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="发起部门:" prop="Nav_LaunchDepartment.NAME" borderBottom>
|
||
<u--input v-if="model.Nav_LaunchDepartment" v-model="model.Nav_LaunchDepartment.NAME" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="发起人员:" prop="Nav_LaunchUser.NAME" borderBottom>
|
||
<u--input v-if="model.Nav_LaunchUser" v-model="model.Nav_LaunchUser.NAME" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训类型:" prop="Nav_LaunchUser.NAME" borderBottom>
|
||
<u--input v-if="model.Nav_TrainType" v-model="model.Nav_TrainType.NAME" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训级别:" prop="LEVEL" borderBottom>
|
||
<u--input v-model="model.LEVEL_SHOW" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="开始时间:" prop="TRAIN_START_TIME" borderBottom>
|
||
<u--input v-model="model.TRAIN_START_TIME" border="none" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="结束时间:" prop="TRAIN_END_TIME" borderBottom>
|
||
<u--input v-model="model.TRAIN_END_TIME" border="none" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训地点:" prop="TRAIN_ADDR" borderBottom>
|
||
<u--input v-model="model.TRAIN_ADDR" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训学时:" prop="HOURS" borderBottom>
|
||
<u--input v-model="model.HOURS" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训老师:" prop="TRAIN_TEACHER" borderBottom>
|
||
<u--input v-model="(model.Nav_UserTeacher||{}).NAME" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训形式:" prop="" borderBottom>
|
||
<u--input v-model="model.TRAINTYPE_SHOW" border="none" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="考核方式:" prop="Nav_TrainCheckType.NAME" borderBottom>
|
||
<u--input v-model="model.CHECKTYPE_SHOW" border="none" slot="right" inputAlign="right" disabled disabledColor="#ffffff" fontSize="14px"></u--input>
|
||
</u-form-item>
|
||
<u-form-item label="培训内容:" prop="TRAINCONTENT" borderBottom>
|
||
</u-form-item>
|
||
<u-textarea autoHeight v-html="model.TRAINCONTENT" border="none" disabled></u-textarea>
|
||
<u-form-item label="培训安排及要求:" prop="TRAIN_PLAN" borderBottom>
|
||
</u-form-item>
|
||
<u--textarea v-model="model.TRAIN_PLAN" border="none" disabled></u--textarea>
|
||
<u-form-item label="培训人员:" prop="users">
|
||
</u-form-item>
|
||
<rich-text v-html="model.users" border="none" disabled style="font-size: 14px;"></rich-text>
|
||
<view class="upload-title">附件</view>
|
||
<full-upload v-model="model.Nav_Files" :listProp='listPropUpload' :listPropVal='listPropValUpload' :isShowBtn="false"></full-upload>
|
||
</u--form>
|
||
</view>
|
||
|
||
<uni-card class="btn-wrap" :is-shadow="true" v-if="isLoadOK&&tableKey==1">
|
||
<u--form>
|
||
<view class="btn-wrap">
|
||
<view>
|
||
<u--textarea height='3em' v-model="LEAVE_REASON" placeholder="请输入请假理由"></u--textarea>
|
||
</view>
|
||
<view class="buttons">
|
||
<u-button type="primary" color="#3d4b70" class="btn first-btn" @click="onChargeUserAgree(1)" text="参加"></u-button>
|
||
<u-button color="#3d4b70" :plain="true" type="warning" @click="onChargeUserAgree(2)" text="请假"></u-button>
|
||
</view>
|
||
</view>
|
||
</u--form>
|
||
</uni-card>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import {
|
||
initFilter,
|
||
extendRule,
|
||
extendInclude
|
||
} from '../../../../utils/common'
|
||
import {
|
||
getRequest,
|
||
} from '../../../../services/apply/FOServices/FOServices'
|
||
import '../../../../utils/showMsg.js'
|
||
import color from '../../../../uni_modules/uview-ui/libs/config/color'
|
||
import config from '../../../../config/common'
|
||
import {
|
||
getEnum
|
||
} from '../../../../services/common';
|
||
export default {
|
||
data() {
|
||
return {
|
||
model: {},
|
||
TaskID: "",
|
||
tableKey: '0',
|
||
isLoadOK: false,
|
||
paddingBottom: '170',
|
||
LEAVE_REASON: '',
|
||
users: '',
|
||
orgId: uni.getStorageSync('orgId'),
|
||
listPropUpload: ['NOTIFY_ID'],
|
||
listPropValUpload: [],
|
||
enumsData: {}, // 存储所有枚举数据(键:枚举名称,值:处理后的枚举列表)
|
||
enumsText: {}, // 存储枚举文本列表(用于下拉选择等场景)
|
||
}
|
||
},
|
||
onLoad(option) {
|
||
this.model.ID = option.ID;
|
||
this.TaskID = option.taskID;
|
||
this.tableKey = option.tableKey ? option.tableKey : '0'
|
||
this.fetchEnums(['TrainType', 'PlanCheckType','FMDepartmentType', 'TrainInOut','SETrainNeedSuvey']);
|
||
},
|
||
methods: {
|
||
async fetchEnums(enumNames) {
|
||
try {
|
||
// 存储所有枚举请求的Promise
|
||
const enumPromises = enumNames.map(name => {
|
||
return getEnum({
|
||
name
|
||
}).then(res => {
|
||
// 统一处理枚举格式:添加name/code字段,便于后续映射
|
||
return {
|
||
enumName: name,
|
||
data: res.map(item => ({
|
||
...item,
|
||
name: item.NAME, // 统一显示名称字段
|
||
code: item.ID // 统一值字段
|
||
}))
|
||
};
|
||
});
|
||
});
|
||
|
||
// 等待所有枚举请求完成
|
||
const results = await Promise.all(enumPromises);
|
||
// 存储枚举结果到data中(键为枚举名称,值为处理后的数据)
|
||
results.forEach(({
|
||
enumName,
|
||
data
|
||
}) => {
|
||
this.enumsData[enumName] = data;
|
||
// 生成文本列表(如需要)
|
||
this.enumsText[enumName] = data.map(item => item.name);
|
||
});
|
||
// 所有枚举获取完成后,执行loadData
|
||
this.loadData();
|
||
} catch (error) {
|
||
console.error('枚举请求失败:', error);
|
||
uni.showToast({
|
||
title: '枚举数据加载失败',
|
||
icon: 'none'
|
||
});
|
||
}
|
||
},
|
||
loadData() {
|
||
const json = initFilter(this.orgId, "", "CODE", 1)
|
||
extendRule(json, 'ID', 1, this.model.ID);
|
||
extendInclude(json, 'Nav_LaunchDepartment');
|
||
extendInclude(json, 'Nav_LaunchUser');
|
||
extendInclude(json, 'Nav_TrainType');
|
||
extendInclude(json, 'Nav_RecordUser');
|
||
// extendInclude(json, 'Nav_TrainCheckType');
|
||
extendInclude(json, 'Nav_TrainContentList');
|
||
extendInclude(json, 'Nav_TrainContentList.Nav_Point');
|
||
extendInclude(json, 'Nav_TrainUserList');
|
||
extendInclude(json, 'Nav_TrainUserList.Nav_User');
|
||
extendInclude(json, 'Nav_Files.Nav_ImgFile');
|
||
extendInclude(json, "Nav_UserTeacher")
|
||
getRequest(json, "/SE/TrainNotify/Get").then(res => {
|
||
this.model = res
|
||
let trainContent = '';
|
||
let users = '';
|
||
if (res.Nav_TrainContentList && res.Nav_TrainContentList.length > 0) {
|
||
for (let i = 0; i < res.Nav_TrainContentList.length; i++) {
|
||
trainContent += (i + 1) + "." + res.Nav_TrainContentList[i].Nav_Point.NAME + "<br/>"
|
||
}
|
||
}
|
||
if (res.Nav_TrainUserList && res.Nav_TrainUserList.length > 0) {
|
||
for (let i = 0; i < res.Nav_TrainUserList.length; i++) {
|
||
if (res.Nav_TrainUserList[i].IS_LEAVE == 0) {
|
||
users += (users.length > 0 ? " " : "") +
|
||
"<view style='color:#E35D58;background-color:rgba(227,93,88,0.2);padding:5px;line-height:30px;white-space:nowrap;'>" +
|
||
res.Nav_TrainUserList[i].Nav_User.NAME + "</view>";
|
||
} else if (res.Nav_TrainUserList[i].IS_LEAVE == 1) {
|
||
users += (users.length > 0 ? " " : "") +
|
||
"<text style='padding:5px;line-height:30px;white-space:nowrap;'>" +
|
||
res.Nav_TrainUserList[i].Nav_User.NAME + "</text>";
|
||
} else if (res.Nav_TrainUserList[i].IS_LEAVE == 2) {
|
||
users += (users.length > 0 ? " " : "") +
|
||
"<text style='padding:5px;line-height:30px;white-space:nowrap;'>" +
|
||
res.Nav_TrainUserList[i].Nav_User.NAME + "(请假)</text>";
|
||
}
|
||
}
|
||
}
|
||
this.model.TRAIN_MODEL = this.returnModel(this.model.TRAIN_MODEL);
|
||
// this.model.LEVEL = this.transLevel(this.model.LEVEL);
|
||
this.model.TRAINCONTENT = trainContent;
|
||
this.model.users = users;
|
||
this.model.LEVEL_SHOW = res.LEVEL !== undefined ? this.enumsData['FMDepartmentType'].find(item => item.code === res.LEVEL)?.name : '';
|
||
this.model.TRAINTYPE_SHOW = res.TRAINTYPE !== undefined ? this.enumsData['TrainType'].find(item => item.code === res.TRAINTYPE)?.name : '';
|
||
this.model.CHECKTYPE_SHOW = res.CHECKTYPE !== undefined ? this.enumsData['PlanCheckType'].find(item => item.code === res.CHECKTYPE)?.name : '';
|
||
this.model.IN_OUT_SHOW = res.IN_OUT !== undefined ? this.enumsData['TrainInOut'].find(item => item.code === res.IN_OUT)?.name : '';
|
||
this.model.NEED_EVALUATION_SHOW = res.NEED_EVALUATION !== undefined ? this.enumsData['SETrainNeedSuvey'].find(item => item.code === res.NEED_EVALUATION)?.name : '';
|
||
this.isLoadOK = true;
|
||
})
|
||
},
|
||
returnModel(level) {
|
||
let str = '';
|
||
if (level == undefined) {
|
||
return str;
|
||
}
|
||
if (level.indexOf('1') >= 0) {
|
||
str += '讲授法 ';
|
||
}
|
||
if (level.indexOf('2') >= 0) {
|
||
str += '视听法 ';
|
||
}
|
||
if (level.indexOf('3') >= 0) {
|
||
str += '研讨法 ';
|
||
}
|
||
if (level.indexOf('4') >= 0) {
|
||
str += '演示法 ';
|
||
}
|
||
return str;
|
||
},
|
||
transLevel(level) {
|
||
if (level == 0) {
|
||
return '部门 ';
|
||
}
|
||
if (level == 1) {
|
||
return '车间 ';
|
||
}
|
||
if (level == 2) {
|
||
return '班组 ';
|
||
}
|
||
if (level == 3) {
|
||
return '公司 ';
|
||
}
|
||
},
|
||
onChargeUserAgree(type) {
|
||
if (type == 2) {
|
||
if (this.LEAVE_REASON == "" || this.LEAVE_REASON == null) {
|
||
uni.$showMsgFunc('请填写请假理由!', () => {}, 'error', 1000);
|
||
return
|
||
}
|
||
}
|
||
let json = {
|
||
USER_ID: uni.getStorageSync('appInfo').User.ID,
|
||
ORG_ID: this.ORG_ID,
|
||
NOTIFY_ID: this.model.ID,
|
||
LEAVE_REASON: this.LEAVE_REASON,
|
||
IS_LEAVE: type,
|
||
TaskID: this.TaskID,
|
||
};
|
||
getRequest(json, "/SE/SETrainNotify/TrainPersonStatus").then(res => {
|
||
if (res) {
|
||
uni.$showMsgFunc('操作成功!', () => {
|
||
uni.navigateBack()
|
||
}, 'success', 1000)
|
||
}
|
||
})
|
||
|
||
}
|
||
},
|
||
computed: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
/* @import url("@/style/css/editTemplate.css"); */
|
||
.background {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background: #edf1fd;
|
||
z-index: -1;
|
||
}
|
||
|
||
.todo-page {
|
||
/* padding-bottom: 10px; */
|
||
overflow: hidden;
|
||
}
|
||
|
||
.card {
|
||
margin: 20px 16px 180px 16px;
|
||
padding: 20px 30px 80px 30px;
|
||
background-color: #ffffff;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
.upload-title {
|
||
font-size: 14px;
|
||
color: #8e8b9c;
|
||
line-height: 22px;
|
||
padding: 8px 0px;
|
||
}
|
||
|
||
.btn-wrap {
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
padding: 16px;
|
||
z-index: 1000;
|
||
background: #fff;
|
||
box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, .05);
|
||
}
|
||
|
||
.btn-wrap>>>.u-textarea__field {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.btn-wrap>>>.u-cell__title-text {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.buttons {
|
||
margin-top: 10px;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.buttons .first-btn {
|
||
margin-right: 20px;
|
||
}
|
||
|
||
.demo-ruleForm>>>.u-form-item__body__left__content__label {
|
||
font-size: 14px;
|
||
color: #8e8b9c;
|
||
/* justify-content: flex-start; */
|
||
}
|
||
|
||
.demo-ruleForm>>>.u-form-item__body__left__content__ {
|
||
left: -11px;
|
||
top: 0px
|
||
}
|
||
|
||
.demo-ruleForm>>>.u-textarea__field {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.demo-ruleForm>>>.u-textarea {
|
||
font-size: 14px;
|
||
}
|
||
|
||
.demo-ruleForm>>>.u-cell__title-text {
|
||
font-size: 14px;
|
||
}
|
||
</style> |