相关方查看详情统一格式

main
liujun 2023-12-21 13:58:55 +08:00
parent 40422a8628
commit 25b9ee7959
2 changed files with 322 additions and 258 deletions

View File

@ -6,213 +6,303 @@
:visible.sync="visible" :visible.sync="visible"
:append-to-body="true" :append-to-body="true"
title="查看" title="查看"
width="60%"> width="80%">
<table class="table-ui" style="margin-bottom: 20px;"> <div class="information">
<div class="level-title"> <el-scrollbar style="height: 550px;margin-bottom: 10px">
<h1>人员信息</h1> <table class="table-ui" style="margin-bottom: 20px;">
</div> <div class="level-title">
<tr> <h1>人员信息</h1>
<th>照片</th> </div>
<td> <tr>
<span v-if="imgUrl != ''"> <th>照片</th>
<div class="img-flex"> <td>
<viewer> <span v-if="imgUrl != ''">
<img :src="imgUrl" width="40" height="40" style="object-fit: cover;"> <div class="img-flex">
</viewer> <viewer>
</div> <img :src="imgUrl" width="40" height="40" style="object-fit: cover;">
</span> </viewer>
<span v-else/> </div>
</td> </span>
<th>姓名</th> <span v-else/>
<td>{{ userDetailForm.NAME }}</td> </td>
<th>性别</th> <th>姓名</th>
<td>{{ userDetailForm.SEX === '0' ? '男' : '女' }}</td> <td>{{ userDetailForm.NAME }}</td>
</tr> <th>性别</th>
<tr> <td>{{ userDetailForm.SEX === '0' ? '男' : '女' }}</td>
<th>出生年月</th> </tr>
<td>{{ userDetailForm.DATE_OF_BIRTH }}</td> <tr>
<th>年龄</th> <th>出生年月</th>
<td>{{ userDetailForm.AGE }}</td> <td>{{ userDetailForm.DATE_OF_BIRTH }}</td>
<th>手机号</th> <th>年龄</th>
<td>{{ userDetailForm.PHONE }}</td> <td>{{ userDetailForm.AGE }}</td>
</tr> <th>手机号</th>
<tr> <td>{{ userDetailForm.PHONE }}</td>
<th>身份证</th> </tr>
<td>{{ userDetailForm.CARD_ID }}</td> <tr>
<th>身份证照片</th> <th>身份证</th>
<!--if条件不可删除--> <td>{{ userDetailForm.CARD_ID }}</td>
<td v-if="userCardIDPhotoFile.length>0" colspan="3"> <th>身份证照片</th>
<span> <!--if条件不可删除-->
<div class="img-flex"> <td v-if="userCardIDPhotoFile.length>0" colspan="3">
<viewer> <span>
<img <div class="img-flex">
v-for="item in userCardIDPhotoFile" <viewer>
:src="config.fileUrl + item.FILEPATH" <img
:key="item.IMGFILES_ID" v-for="item in userCardIDPhotoFile"
width="40" :src="config.fileUrl + item.FILEPATH"
height="40" :key="item.IMGFILES_ID"
style="object-fit: cover;"> width="40"
</viewer> height="40"
</div> style="object-fit: cover;">
</span> </viewer>
</td> </div>
</tr> </span>
</td>
</tr>
<tr> <tr>
<th>民族</th> <th>民族</th>
<td>{{ userDetailForm.minzuName ? userDetailForm.minzuName : '暂无信息' }}</td> <td>{{ userDetailForm.minzuName ? userDetailForm.minzuName : '暂无信息' }}</td>
<th>婚姻状况</th> <th>婚姻状况</th>
<td>{{ userDetailForm.MARITALSTATUS === '0' ? '未婚' : '已婚' }}</td> <td>{{ userDetailForm.MARITALSTATUS === '0' ? '未婚' : '已婚' }}</td>
<th>政治面貌</th> <th>政治面貌</th>
<td>{{ userDetailForm.zzName }} {{ <td>{{ userDetailForm.zzName }} {{
userDetailForm.zzName == '中共党员' ? '入党时间' + userDetailForm.POLITICAL_TIME : '' userDetailForm.zzName == '中共党员' ? '入党时间' + userDetailForm.POLITICAL_TIME : ''
}} }}
</td> </td>
</tr> </tr>
<tr> <tr>
<th>户口所在地</th> <th>户口所在地</th>
<td>{{ userDetailForm.HKLOCAL ? userDetailForm.HKLOCAL : '暂无信息' }}</td> <td>{{ userDetailForm.HKLOCAL ? userDetailForm.HKLOCAL : '暂无信息' }}</td>
<th>现住址</th> <th>现住址</th>
<td>{{ userDetailForm.ADDRESS ? userDetailForm.ADDRESS : '暂无信息' }}</td> <td>{{ userDetailForm.ADDRESS ? userDetailForm.ADDRESS : '暂无信息' }}</td>
<th>联系电话</th> <th>联系电话</th>
<td>{{ userDetailForm.PHONE }}</td> <td>{{ userDetailForm.PHONE }}</td>
</tr> </tr>
<tr> <tr>
<th>文化程度</th> <th>文化程度</th>
<td>{{ userDetailForm.DEGREE_OF_EDUCATION_NAME }}</td> <td>{{ userDetailForm.DEGREE_OF_EDUCATION_NAME }}</td>
<th>岗位名称(工种)</th> <th>岗位名称(工种)</th>
<td colspan="5">{{ userDetailForm.POST_ID }}</td> <td colspan="5">{{ userDetailForm.POST_ID }}</td>
</tr> </tr>
<tr> <tr>
<th>是否缴纳社保</th> <th>是否缴纳社保</th>
<td :colspan="userDetailForm.IS_SOCIAL === '1' ? '':5">{{ formatLabel(userDetailForm.IS_SOCIAL) }}</td> <td :colspan="userDetailForm.IS_SOCIAL === '1' ? '':5">{{ formatLabel(userDetailForm.IS_SOCIAL) }}</td>
<th v-if="userDetailForm.IS_SOCIAL === '1'"></th> <th v-if="userDetailForm.IS_SOCIAL === '1'"></th>
<td v-if="userDetailForm.IS_SOCIAL === '1'">{{ userDetailForm.SOCIAL_NUMBER }}</td> <td v-if="userDetailForm.IS_SOCIAL === '1'">{{ userDetailForm.SOCIAL_NUMBER }}</td>
<th v-if="userDetailForm.IS_SOCIAL === '1'"></th> <th v-if="userDetailForm.IS_SOCIAL === '1'"></th>
<td v-if="userDetailForm.IS_SOCIAL === '1'&& socialPhotoFile.length>0" colspan="3"> <td v-if="userDetailForm.IS_SOCIAL === '1'&& socialPhotoFile.length>0" colspan="3">
<span> <span>
<div class="img-flex"> <div class="img-flex">
<viewer> <viewer>
<img <img
v-for="item in socialPhotoFile" v-for="item in socialPhotoFile"
:src="config.fileUrl + item.FILEPATH" :src="config.fileUrl + item.FILEPATH"
:key="item.IMGFILES_ID" :key="item.IMGFILES_ID"
width="40" width="40"
height="40" height="40"
style="object-fit: cover;"> style="object-fit: cover;">
</viewer> </viewer>
</div>
</span>
</td>
</tr>
<tr>
<th>是否参加三级安全培训</th>
<td>{{ formatLabel(userDetailForm.IS_LEVEL_THREE) }}</td>
<th v-if="userDetailForm.IS_LEVEL_THREE == 1"></th>
<td v-if="userDetailForm.IS_LEVEL_THREE == 1 && photosOfLevel.length>0" colspan="5">
<span>
<div class="img-flex">
<viewer>
<img
v-for="item in photosOfLevel"
:src="config.fileUrl + item.FILEPATH"
:key="item.IMGFILES_ID"
width="40"
height="40"
style="object-fit: cover;">
</viewer>
</div>
</span>
</td>
</tr>
<tr>
<th>是否缴纳保险</th>
<td>{{ formatLabel(userDetailForm.IS_BF) }}</td>
<th>是否特殊工种</th>
<td>{{ formatLabel(userDetailForm.IS_SPECIAL_JOB) }}</td>
<th>是否流动人员</th>
<td>{{ formatLabel(userDetailForm.ISFLOW) }}</td>
</tr>
</table>
<div>
<div class="level-title">
<h1>培训记录</h1>
</div>
<el-table
:data="trainRecordList"
:header-cell-style="{'font-weight': 'bold','color': '#000'}"
tooltip-effect="dark"
border
fit
highlight-current-row>
<el-table-column type="selection" width="55" align="center"/>
<el-table-column type="index" label="序号" width="50" align="center"/>
<el-table-column prop="CLASS_NAME" label="班级名称" align="center"/>
<el-table-column prop="OPENING_TIME" label="开班时间" align="center"/>
<el-table-column prop="TRAINING_TYPE_NAME" label="培训类型" align="center"/>
<el-table-column prop="PLACE_NAME" label="培训地点" align="center"/>
<el-table-column label="培训有效期" align="center">
<template slot-scope="{row}">
<span>{{ formatDate(row.VALIDITY_PERIOD_START) }} {{ formatDate(row.VALIDITY_PERIOD_END) }}</span>
</template>
</el-table-column>
</el-table>
<div v-if="userDetailForm.IS_SPECIAL_JOB == '1'" class="level-title">
<h1>特种作业人员信息</h1>
</div>
<table v-for="(item,index) in specialUsersList" :key="index" class="table-ui" style="margin-bottom: 20px;">
<tr>
<th style="width: 150px">证书名称</th>
<td style="width: 150px">{{ item.CERTIFICATE }}</td>
<th style="width: 150px">作业类别</th>
<td style="width: 180px">{{ item.SPECIAL_TYPE_NAME }}</td>
<th style="width: 150px">操作项目</th>
<td>{{ item.OPERATION_TYPE_NAME }}</td>
</tr>
<tr>
<th>特种作业证书编号</th>
<td>{{ item.SPECIAL_NUMBER }}</td>
<th>发证机关</th>
<td colspan="3">{{ item.ISSUING_AUTHORITY }}</td>
</tr>
<tr>
<th>复审时间</th>
<td>{{ item.REVIEW_TIME }}</td>
<th>有效期</th>
<td colspan="3">{{ item.VALIDITY_TIME_START }} {{ item.VALIDITY_TIME_END }}</td>
</tr>
</table>
<div v-if="applyList.length > 0" class="level-title mt-20">
<h1>申请信息</h1>
</div>
<el-table
v-if="applyList.length > 0"
:data="applyList"
:header-cell-style="{'font-weight': 'bold','color': '#000'}"
tooltip-effect="dark"
border
fit
highlight-current-row>
<el-table-column type="expand">
<template slot-scope="props">
<el-row>
<el-form label-position="left" inline class="demo-table-expand">
<el-col :span="5">
<el-form-item label="属地管理部门">
<span>{{ props.row.TERRITORIALITY_DEPARTMENT_NAME }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="审批人">
<span>{{ props.row.TERRITORIALITY_USER_NAME }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="审批结果">
<span v-if="props.row.TERRITORIALITY_STATE === 0"></span>
<span v-if="props.row.TERRITORIALITY_STATE ===1"></span>
</el-form-item>
</el-col>
<el-col :span="9">
<el-form-item label="审批意见">
<span>{{ props.row.TERRITORIALITY_OPINION }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="主管部门">
<span>{{ props.row.MANAGER_DEPARTMENT_NAME }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="审批人">
<span>{{ props.row.MANAGER_USER_NAME }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="审批人">
<span v-if="props.row.MANAGER_STATE === 0"></span>
<span v-if="props.row.MANAGER_STATE ===1"></span>
</el-form-item>
</el-col>
<el-col :span="9">
<el-form-item label="审批意见">
<span>{{ props.row.MANAGER_OPINION }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="主管部门">
<span>{{ props.row.SUPERVISION_DEPARTMENT_NAME }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="审批人">
<span>{{ props.row.SUPERVISION_USER_NAME }}</span>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="审批人">
<span v-if="props.row.SUPERVISION_STATE === 0"></span>
<span v-if="props.row.SUPERVISION_STATE ===1"></span>
</el-form-item>
</el-col>
<el-col :span="9">
<el-form-item label="审批意见">
<span>{{ props.row.SUPERVISION_OPINION }}</span>
</el-form-item>
</el-col>
</el-form>
</el-row>
</template>
</el-table-column>
<el-table-column prop="TERRITORIALITY_DEPARTMENT_NAME" label="属地管理部门" align="center"/>
<el-table-column prop="TERRITORIALITY_USER_NAME" label="审批人" align="center"/>
<el-table-column prop="TERRITORIALITY_STATE" label="审批结果" align="center">
<template slot-scope="{row}">
<span v-if="row.TERRITORIALITY_STATE === 0"></span>
<span v-if="row.TERRITORIALITY_STATE ===1"></span>
</template>
</el-table-column>
<el-table-column prop="MANAGER_DEPARTMENT_NAME" label="主管部门" align="center"/>
<el-table-column prop="MANAGER_USER_NAME" label="审批人" align="center"/>
<el-table-column prop="MANAGER_STATE" label="审批人" align="center">
<template slot-scope="{row}">
<span v-if="row.MANAGER_STATE === 0"></span>
<span v-if="row.MANAGER_STATE ===1"></span>
</template>
</el-table-column>
<el-table-column prop="SUPERVISION_DEPARTMENT_NAME" label="安全监督部门" align="center"/>
<el-table-column prop="SUPERVISION_USER_NAME" label="审批人" align="center"/>
<el-table-column prop="SUPERVISION_STATE" label="审批人" align="center">
<template slot-scope="{row}">
<span v-if="row.SUPERVISION_STATE === 0"></span>
<span v-if="row.SUPERVISION_STATE ===1"></span>
</template>
</el-table-column>
<div slot="footer" class="dialog-footer">
<el-button @click="visible = false"> </el-button>
</div> </div>
</span> </el-table>
</td> </div>
</tr> </el-scrollbar>
<tr>
<th>是否参加三级安全培训</th>
<td>{{ formatLabel(userDetailForm.IS_LEVEL_THREE) }}</td>
<th v-if="userDetailForm.IS_LEVEL_THREE == 1"></th>
<td v-if="userDetailForm.IS_LEVEL_THREE == 1 && photosOfLevel.length>0" colspan="5">
<span>
<div class="img-flex">
<viewer>
<img
v-for="item in photosOfLevel"
:src="config.fileUrl + item.FILEPATH"
:key="item.IMGFILES_ID"
width="40"
height="40"
style="object-fit: cover;">
</viewer>
</div>
</span>
</td>
</tr>
<tr>
<th>是否缴纳保险</th>
<td>{{ formatLabel(userDetailForm.IS_BF) }}</td>
<th>是否特殊工种</th>
<td>{{ formatLabel(userDetailForm.IS_SPECIAL_JOB) }}</td>
<th>是否流动人员</th>
<td>{{ formatLabel(userDetailForm.ISFLOW) }}</td>
</tr>
</table>
<div v-if="false">
<div class="level-title">
<h1>培训记录</h1>
</div>
<el-table
:data="trainRecordList"
:header-cell-style="{'font-weight': 'bold','color': '#000'}"
tooltip-effect="dark"
border
fit
highlight-current-row>
<el-table-column type="selection" width="55" align="center"/>
<el-table-column type="index" label="序号" width="50" align="center"/>
<el-table-column prop="CLASS_NAME" label="班级名称" align="center"/>
<el-table-column prop="OPENING_TIME" label="开班时间" align="center"/>
<el-table-column prop="TRAINING_TYPE_NAME" label="培训类型" align="center"/>
<el-table-column prop="PLACE_NAME" label="培训地点" align="center"/>
<el-table-column label="培训有效期" align="center">
<template slot-scope="{row}">
<span>{{ formatDate(row.VALIDITY_PERIOD_START) }} {{ formatDate(row.VALIDITY_PERIOD_END) }}</span>
</template>
</el-table-column>
</el-table>
<div v-if="userDetailForm.IS_SPECIAL_JOB == '1'" class="level-title">
<h1>特种作业人员信息</h1>
</div>
<table v-for="(item,index) in specialUsersList" :key="index" class="table-ui" style="margin-bottom: 20px;">
<tr>
<th style="width: 150px">证书名称</th>
<td style="width: 150px">{{ item.CERTIFICATE }}</td>
<th style="width: 150px">作业类别</th>
<td style="width: 180px">{{ item.SPECIAL_TYPE_NAME }}</td>
<th style="width: 150px">操作项目</th>
<td>{{ item.OPERATION_TYPE_NAME }}</td>
</tr>
<tr>
<th>特种作业证书编号</th>
<td>{{ item.SPECIAL_NUMBER }}</td>
<th>发证机关</th>
<td colspan="3">{{ item.ISSUING_AUTHORITY }}</td>
</tr>
<tr>
<th>复审时间</th>
<td>{{ item.REVIEW_TIME }}</td>
<th>有效期</th>
<td colspan="3">{{ item.VALIDITY_TIME_START }} {{ item.VALIDITY_TIME_END }}</td>
</tr>
</table>
<div
v-if="detailForm.SUPERVISION_STATE === 0 || detailForm.MANAGER_STATE === 0 || detailForm.TERRITORIALITY_STATE === 0"
class="level-title mt-20">
<h1>打回信息</h1>
</div>
<table
v-if="detailForm.SUPERVISION_STATE === 0 || detailForm.MANAGER_STATE === 0 || detailForm.TERRITORIALITY_STATE === 0"
class="table-ui"
style="margin-bottom: 20px;">
<tr>
<th>打回人</th>
<td v-if="detailForm.SUPERVISION_STATE === 0">{{ detailForm.SUPERVISION_USER_NAME }}</td>
<td v-if="detailForm.MANAGER_STATE === 0">{{ detailForm.MANAGER_USER_NAME }}</td>
<td
v-if="detailForm.TERRITORIALITY_STATE === 0 && detailForm.MANAGER_USER_NAME !== detailForm.TERRITORIALITY_USER_NAME">
{{ detailForm.TERRITORIALITY_USER_NAME }}
</td>
<th>打回原由</th>
<td v-if="detailForm.SUPERVISION_STATE === 0">{{ detailForm.SUPERVISION_OPINION }}</td>
<td v-if="detailForm.MANAGER_STATE === 0">{{ detailForm.MANAGER_OPINION }}</td>
<td
v-if="detailForm.TERRITORIALITY_STATE === 0 && detailForm.MANAGER_USER_NAME !== detailForm.TERRITORIALITY_USER_NAME">
{{ detailForm.TERRITORIALITY_OPINION }}
</td>
</tr>
</table>
<div slot="footer" class="dialog-footer">
<el-button @click="visible = false"> </el-button>
</div>
</div> </div>
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false"> </el-button>
</span>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
@ -237,14 +327,13 @@ export default {
userDetailForm: {}, userDetailForm: {},
userCardIDPhotoFile: [], // userCardIDPhotoFile: [], //
trainRecordList: [], trainRecordList: [],
detailForm: {},
photosOfLevel: [], // photosOfLevel: [], //
specialUsersList: {}, specialUsersList: {},
insuranceFileList: [], // insuranceFileList: [], //
contractFileList: [], contractFileList: [],
socialPhotoFile: [], socialPhotoFile: [],
gongshangbaoxianFile: [], gongshangbaoxianFile: [],
userEntryForm: {}, applyList: [],
loading: false, loading: false,
heirloom: {}, heirloom: {},
config: config config: config
@ -273,40 +362,27 @@ export default {
CER_TYPE: '7498057c4c1f4a11b9a960e66ea04a7a' CER_TYPE: '7498057c4c1f4a11b9a960e66ea04a7a'
} }
).then((data) => { ).then((data) => {
Object.assign(this.userDetailForm, data.info)
this.loading = false this.loading = false
/* this.userPhotoFile = data.userPhotoFile Object.assign(this.userDetailForm, data.info)
const picture = data.img
this.userPhotoFile = picture.userPhotoFile
if (this.userPhotoFile.length > 0) { if (this.userPhotoFile.length > 0) {
this.imgUrl = config.fileUrl + this.userPhotoFile[0].FILEPATH this.imgUrl = config.fileUrl + this.userPhotoFile[0].FILEPATH
}*/ }
// this.photosOfLevel = data.photosOfLevel this.photosOfLevel = picture.photosOfLevel
// this.specialUsersList = data.specialUsers this.specialUsersList = picture.specialUsers
// this.insuranceFileList = data.insuranceFile this.insuranceFileList = picture.insuranceFile
// this.contractFileList = data.contractFile this.contractFileList = picture.contractFile
// this.userCardIDPhotoFile = data.userCardIDPhotoFile this.userCardIDPhotoFile = picture.userCardIDPhotoFile
// this.socialPhotoFile = data.socialPhotoFile this.socialPhotoFile = picture.socialPhotoFile
// this.gongshangbaoxianFile = data.gongshangbaoxianFile this.gongshangbaoxianFile = picture.gongshangbaoxianFile
// qr if (row.STATUS === '2') {
// if (row.STATUS === '2') { this.qrCodeStr = config.messageUrl + '?USER_ID=' + row.USER_ID
// this.qrCodeStr = config.messageUrl + '?USER_ID=' + row.USER_ID } else {
// } else { this.qrCodeStr = ''
// this.qrCodeStr = '' }
// } this.trainRecordList = data.trainRecordList
this.applyList = data.applyList
// requestFN(
// '/user/getFloatPersonDetailById',
// {
// USER_ID: row.USER_ID,
// CORPINFO_ID: JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID
// }
// ).then((data) => {
// this.userEntryForm = Object.assign(this.userEntryForm, data.eCard)
// this.detailForm = Object.assign(this.detailForm, data.userDetail)
// this.trainRecordList = data.recordList
// this.loading = false
// }).catch((e) => {
// console.log(e)
// })
}).catch((e) => { }).catch((e) => {
console.log(e) console.log(e)
}) })
@ -326,3 +402,8 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
</style> </style>
<style scoped>
.information >>> .el-scrollbar__wrap {
overflow-x: hidden;
}
</style>

View File

@ -107,6 +107,7 @@
</span> </span>
</el-dialog> </el-dialog>
<user ref="userInfo" append-to-body/> <user ref="userInfo" append-to-body/>
<user-info ref="userInfos" append-to-body/>
</div> </div>
</template> </template>
@ -115,9 +116,11 @@ import Pagination from '@/components/Pagination' // 通过 el-pagination二次
import { requestFN } from '@/utils/request' import { requestFN } from '@/utils/request'
import '@riophae/vue-treeselect/dist/vue-treeselect.css' import '@riophae/vue-treeselect/dist/vue-treeselect.css'
import user from './user.vue' import user from './user.vue'
import UserInfo from '../flowApply/components/userInfo.vue'
export default { export default {
components: { components: {
UserInfo,
Pagination, user Pagination, user
}, },
data() { data() {
@ -192,28 +195,8 @@ export default {
this.$refs.userInfo.init(row) this.$refs.userInfo.init(row)
}, },
// //
async handleShow(row) { handleShow(row) {
await this.getUserInfoById(row.USER_ID) this.$refs.userInfos.init(row)
this.userInfoDialog = true
this.heirloom = row
console.log(row.SUPERVISION_STATE, row.MANAGER_STATE, row.TERRITORIALITY_STATE)
if (row.SUPERVISION_STATE === 0 || row.MANAGER_STATE === 0 || row.TERRITORIALITY_STATE === 0) {
if (row.SUPERVISION_STATE === 0) {
this.message = row.SUPERVISION_OPINION
this.operator = row.SUPERVISION_USER_NAME
}
if (row.MANAGER_STATE === 0) {
this.message = row.MANAGER_OPINION
this.operator = row.MANAGER_USER_NAME
}
if (row.TERRITORIALITY_STATE === 0) {
this.message = row.TERRITORIALITY_OPINION
this.operator = row.TERRITORIALITY_USER_NAME
}
} else {
this.message = ''
this.operator = ''
}
}, },
examineShow(row) { examineShow(row) {
this.form.TRAIN_USERS_ID = row.TRAIN_USERS_ID this.form.TRAIN_USERS_ID = row.TRAIN_USERS_ID