2020-11-02 09:22:53 +08:00

64 lines
1.1 KiB
Vue

<!-- -->
<template>
<div>
<popup-right v-if="show" @cancel='handleCancel' @submit="handleSubmit" title="添加维度">
<div slot='content'>
<el-input v-model="searchTxt"
@click="handleSearch"
placeholder="搜索考评组"
style="margin-top:40px">
<i slot="prefix" class="el-input__icon el-icon-search"></i>
</el-input>
<div>
<el-checkbox>全选</el-checkbox>
</div>
</div>
</popup-right>
</div>
</template>
<script>
import PopupRight from '@/components/PopupRight'
export default {
props: {
show: {
type: Boolean,
default: false
}
},
data () {
return {
// 搜索条件内容
searchTxt: '',
//
form: {}
}
},
components: {
PopupRight
},
computed: {},
beforeMount () {},
mounted () {},
methods: {
handleSearch () {
},
handleCancel () {
this.$emit('update:show', false)
},
handleSubmit () {
this.$emit('update:show', false)
}
},
watch: {}
}
</script>
<style lang='' scoped>
</style>