first commit
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user