29 lines
600 B
Vue
29 lines
600 B
Vue
<template>
|
|
<div>
|
|
<div class="btn-group tool-button mt5">
|
|
<el-select v-model="unionid" placeholder="基层工会">
|
|
<el-option
|
|
v-for="item in unionList"
|
|
:key="item.id"
|
|
:label="item.unionname"
|
|
:value="item.id">
|
|
</el-option>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data(){
|
|
return{
|
|
unionList:[]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|