样式以及内容调整
parent
40f3aeb35a
commit
2bdcf05d4d
|
@ -6,7 +6,7 @@
|
|||
<el-row>
|
||||
<el-col :span="4">
|
||||
<el-form-item label="分公司">
|
||||
<el-select v-model="searchForm.FGS_ID" clearable placeholder="请选择要分公司">
|
||||
<el-select v-model="searchForm.FGS_ID" clearable placeholder="请选择分公司">
|
||||
<el-option v-for="item in fgsList" :key="item.CORPINFO_ID" :label="item.CORP_NAME" :value="item.CORPINFO_ID" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -23,6 +23,11 @@
|
|||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<div class="app-statistical">
|
||||
<span>
|
||||
本企业共有员工:<i>{{ userNum }}</i>人
|
||||
</span>
|
||||
</div>
|
||||
<el-table v-loading="listLoading" ref="multipleTable" :data="varList" :row-key="getRowKey" :header-cell-style="{'font-weight': 'bold','color': '#000'}" tooltip-effect="dark" border fit highlight-current-row>
|
||||
<el-table-column :reserve-selection="true" type="selection" width="55" align="center" />
|
||||
<el-table-column type="index" label="序号" width="50" align="center" />
|
||||
|
@ -115,6 +120,7 @@ export default {
|
|||
},
|
||||
PARENTID: '0',
|
||||
fgsList: [],
|
||||
userNum: '',
|
||||
datePage: 0,
|
||||
USER_ID: '',
|
||||
LOGIN_USER: JSON.parse(sessionStorage.getItem('user')).USER_ID
|
||||
|
@ -148,6 +154,7 @@ export default {
|
|||
this.listLoading = false
|
||||
this.varList = data.varList
|
||||
this.fgsList = data.fgsList
|
||||
this.userNum = data.userNum
|
||||
console.log(this.varList)
|
||||
this.total = data.page.totalResult
|
||||
}).catch((e) => {
|
||||
|
@ -320,6 +327,27 @@ export default {
|
|||
display: block;
|
||||
}
|
||||
|
||||
.app-statistical {
|
||||
padding: 8px 20px 8px 20px;
|
||||
border: 1px solid #abdcff;
|
||||
background-color: #f0faff;
|
||||
position: relative;
|
||||
border-radius: 4px;
|
||||
color: #515a6e;
|
||||
line-height: 16px;
|
||||
margin-bottom: 15px;
|
||||
|
||||
span {
|
||||
margin-right: 20px;
|
||||
font-size: 12px;
|
||||
|
||||
i {
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
color: rgb(45, 140, 240);
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style lang="sass" scoped>
|
||||
|
|
Loading…
Reference in New Issue