|
|
|
@ -1083,8 +1083,7 @@ |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<!-- 人员等级模态框 --> |
|
|
|
<el-dialog title="人员等级" top="17vh" :close-on-click-modal="false" v-drag :visible.sync="workerLevelModelFlag1" |
|
|
|
width="940px"> |
|
|
|
<el-dialog title="人员等级" top="17vh" :close-on-click-modal="false" v-drag :visible.sync="workerLevelModelFlag1" width="940px"> |
|
|
|
<el-form :inline="true" label-position="top" :model="searchData"> |
|
|
|
<el-form-item :label="'编码'" @keyup.enter.native="queryWorkerLevel1()"> |
|
|
|
<el-input v-model="searchData.levelId" clearable style="width: 120px"></el-input> |
|
|
|
@ -1099,7 +1098,7 @@ |
|
|
|
<el-table |
|
|
|
:height="250" |
|
|
|
:data="workerLevelList" |
|
|
|
@row-dblclick="getWorkerLevelRowData1()" |
|
|
|
@row-dblclick="getWorkerLevelRowData1" |
|
|
|
border |
|
|
|
style="width: 100%;"> |
|
|
|
<el-table-column |
|
|
|
@ -1114,8 +1113,7 @@ |
|
|
|
:label="item.columnLabel"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="!item.columnHidden">{{ scope.row[item.columnProp] }}</span> |
|
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" |
|
|
|
style="width: 100px; height: 80px"/></span> |
|
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
@ -1135,8 +1133,7 @@ |
|
|
|
</el-footer> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<el-dialog title="人员等级" top="17vh" :close-on-click-modal="false" v-drag :visible.sync="workerLevelModelFlag2" |
|
|
|
width="940px"> |
|
|
|
<el-dialog title="人员等级" top="17vh" :close-on-click-modal="false" v-drag :visible.sync="workerLevelModelFlag2" width="940px"> |
|
|
|
<el-form :inline="true" label-position="top" :model="searchData"> |
|
|
|
<el-form-item :label="'编码'" @keyup.enter.native="queryWorkerLevel2()"> |
|
|
|
<el-input v-model="searchData.levelId" clearable style="width: 120px"></el-input> |
|
|
|
@ -1151,7 +1148,7 @@ |
|
|
|
<el-table |
|
|
|
:height="250" |
|
|
|
:data="workerLevelList" |
|
|
|
@row-dblclick="getWorkerLevelRowData2()" |
|
|
|
@row-dblclick="getWorkerLevelRowData2" |
|
|
|
border |
|
|
|
style="width: 100%;"> |
|
|
|
<el-table-column |
|
|
|
@ -5180,7 +5177,6 @@ export default { |
|
|
|
|
|
|
|
// 双击选中人员等级 |
|
|
|
getWorkerLevelRowData1(row) { |
|
|
|
console.log(row.levelId) |
|
|
|
this.componentData.setupLaborClassNo = row.levelId |
|
|
|
this.componentData.setupLaborClassDesc = row.levelDesc |
|
|
|
this.workerLevelModelFlag1 = false |
|
|
|
|