|
@@ -5,6 +5,16 @@
|
|
<el-form-item prop="rankName">
|
|
<el-form-item prop="rankName">
|
|
<el-input size="small" v-model="searchForm.rankName" placeholder="职级名称" clearable></el-input>
|
|
<el-input size="small" v-model="searchForm.rankName" placeholder="职级名称" clearable></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <el-form-item prop="levelId" :rules="[]">
|
|
|
|
+ <el-select v-model="searchForm.levelId" style="width:100%" placeholder="请选择职层名称">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="rankLevel in rankLevelList"
|
|
|
|
+ :key="rankLevel.id"
|
|
|
|
+ :label="rankLevel.name"
|
|
|
|
+ :value="rankLevel.id">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
<!--<el-form-item prop="name">
|
|
<!--<el-form-item prop="name">
|
|
<el-input size="small" v-model="searchForm.sequenceChildName" placeholder="子序列名称" clearable></el-input>
|
|
<el-input size="small" v-model="searchForm.sequenceChildName" placeholder="子序列名称" clearable></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -181,8 +191,14 @@
|
|
}
|
|
}
|
|
})
|
|
})
|
|
this.tablePage.total = data.total
|
|
this.tablePage.total = data.total
|
|
|
|
+ this.queryAllRankLevel()
|
|
|
|
+ this.loading = false
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ this.loading = false
|
|
|
|
+ }).finally(() => {
|
|
this.loading = false
|
|
this.loading = false
|
|
})
|
|
})
|
|
|
|
+
|
|
},
|
|
},
|
|
// 当前页
|
|
// 当前页
|
|
currentChangeHandle ({currentPage, pageSize}) {
|
|
currentChangeHandle ({currentPage, pageSize}) {
|