flx:提交黑名单页面 新增退场字段
This commit is contained in:
parent
8033850e36
commit
da0ec4e14e
@ -53,6 +53,15 @@
|
|||||||
:label="$t('message.laborDev.blackReason')"
|
:label="$t('message.laborDev.blackReason')"
|
||||||
align="center"
|
align="center"
|
||||||
></el-table-column>
|
></el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="addReason"
|
||||||
|
label="是否将人员退场"
|
||||||
|
align="center"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{scope.row.isExit == 1 ? '是' : '否' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('message.personnelPosition.beaconManage.table.operation')"
|
:label="$t('message.personnelPosition.beaconManage.table.operation')"
|
||||||
align="center"
|
align="center"
|
||||||
@ -154,6 +163,15 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
label="是否将人员退场"
|
||||||
|
prop="isExit"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="cardForm.isExit">
|
||||||
|
<el-radio :label="1">是</el-radio>
|
||||||
|
<el-radio :label="0">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
<div class="dialog-footer">
|
<div class="dialog-footer">
|
||||||
<el-button
|
<el-button
|
||||||
class="cancleBtn"
|
class="cancleBtn"
|
||||||
@ -201,6 +219,7 @@ export default {
|
|||||||
idCard: "",
|
idCard: "",
|
||||||
reason: "",
|
reason: "",
|
||||||
workerId: "",
|
workerId: "",
|
||||||
|
isExit: 1,
|
||||||
workerName: "",
|
workerName: "",
|
||||||
projectSn: this.$store.state.projectSn,
|
projectSn: this.$store.state.projectSn,
|
||||||
},
|
},
|
||||||
@ -239,7 +258,8 @@ export default {
|
|||||||
loadAllPerson() {
|
loadAllPerson() {
|
||||||
getWorkerInfoListApi({
|
getWorkerInfoListApi({
|
||||||
projectSn: this.$store.state.projectSn,
|
projectSn: this.$store.state.projectSn,
|
||||||
userEnterpriseId: this.$store.state.userInfo.userEnterpriseId
|
userEnterpriseId: this.$store.state.userInfo.userEnterpriseId,
|
||||||
|
inServiceType: 1
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
this.allPersonList = res.result;
|
this.allPersonList = res.result;
|
||||||
});
|
});
|
||||||
@ -253,6 +273,7 @@ export default {
|
|||||||
idCard: "",
|
idCard: "",
|
||||||
reason: "",
|
reason: "",
|
||||||
workerId: "",
|
workerId: "",
|
||||||
|
isExit: 1,
|
||||||
workerName: "",
|
workerName: "",
|
||||||
projectSn: this.$store.state.projectSn,
|
projectSn: this.$store.state.projectSn,
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user