添加考评弹窗
This commit is contained in:
parent
7afda53711
commit
e5481cf4c0
63
src/views/kpi/assessment/components/assessPopup.vue
Normal file
63
src/views/kpi/assessment/components/assessPopup.vue
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<!-- -->
|
||||||
|
<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>
|
||||||
Loading…
x
Reference in New Issue
Block a user