6 changed files with 302 additions and 5 deletions
@ -0,0 +1,251 @@ |
|||
<template> |
|||
<div v-if="visible" class="van-overlay"></div> |
|||
<div v-if="visible" class="popup"> |
|||
<div class="popup-title">企业搜索</div> |
|||
<!-- 关闭按钮 --> |
|||
<label class="close-button" @click="closePopup"></label> |
|||
|
|||
<!-- 弹窗的内容 --> |
|||
<div class="popup-content"> |
|||
<div class="subsearch"> |
|||
<input class="searchbox" v-model="searchParam.enterpriseName" placeholder="请输入企业名称搜索" /> |
|||
</div> |
|||
<div class="btnbox"> |
|||
<button class='btn-reset' @click="cancel()">重置</button> |
|||
<button class='btn-search' @click="queryList()">搜索</button> |
|||
</div> |
|||
|
|||
<div class="search-result"> |
|||
<div class="case-item" v-for="(item, index) in dataList" :key="index" @click="selectData(item)"> |
|||
<div class="case-title">{{ item.enterpriseName }}</div> |
|||
<!-- <div class="case-depart">{{ item.phonenumber }}</div> |
|||
<div class="case-time">{{ item.loginName }}</div> --> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { ref } from 'vue' |
|||
// import {queryUsers} from '../../api/user' |
|||
import { queryEnterpriseInfoList } from '../../api/enterprise' |
|||
const { useCommon } = $globalStore |
|||
export default { |
|||
props: { |
|||
visible: { |
|||
type: Boolean, |
|||
default: false |
|||
}, |
|||
content: { |
|||
type: String, |
|||
default: '' |
|||
}, |
|||
}, |
|||
data(){ |
|||
return{ |
|||
searchParam: { |
|||
//搜索框 |
|||
enterpriseName: '', |
|||
}, |
|||
dataList:[] |
|||
} |
|||
}, |
|||
created(){ |
|||
// this.queryList() |
|||
}, |
|||
watch:{ |
|||
'searchParam.enterpriseName': { |
|||
handler: function(newValue, oldValue) { |
|||
// 当person对象的age属性变化时,这个函数会被调用 |
|||
console.log(`age changed from ${oldValue} to ${newValue}`); |
|||
if(newValue.length > 0){ |
|||
this.queryList(); |
|||
}else{ |
|||
this.dataList = []; |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
methods: { |
|||
closePopup() { |
|||
this.$emit('close'); |
|||
}, |
|||
queryList(){ |
|||
queryEnterpriseInfoList(this.searchParam,success=>{ |
|||
this.dataList = success.data |
|||
},error =>{}) |
|||
}, |
|||
cancel() { |
|||
this.searchParam.enterpriseName = ''; |
|||
// this.queryList() |
|||
this.dataList = []; |
|||
}, |
|||
selectData(item){ |
|||
this.$emit("reciveData",item); |
|||
this.$emit('close'); |
|||
}, |
|||
} |
|||
|
|||
} |
|||
</script> |
|||
|
|||
<style scoped> |
|||
.popup { |
|||
position: fixed; |
|||
z-index: 999; |
|||
top: 3rem; |
|||
left: 0; |
|||
width: 100%; |
|||
height: calc(100% - 3rem);; |
|||
background: #fff; |
|||
overflow: hidden; |
|||
} |
|||
|
|||
.popup-title { |
|||
margin: 0.3rem 0 0; |
|||
width: 100%; |
|||
height: 1rem; |
|||
border-bottom: 1px solid #f3f4f5; |
|||
text-align: center; |
|||
font-size: 0.42rem; |
|||
font-weight: 550; |
|||
} |
|||
|
|||
.close-button { |
|||
position: absolute; |
|||
top: 0.15rem; |
|||
right: 0.1rem; |
|||
width: 0.8rem; |
|||
height: 0.8rem; |
|||
background-color: rgba(255, 255, 255, .5); |
|||
border: 0.05rem solid rgba(255, 255, 255, .7); |
|||
border-radius: 50%; |
|||
transform: rotate(45deg); |
|||
} |
|||
|
|||
.close-button:before, |
|||
.close-button:after { |
|||
content: ''; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
background: #333; |
|||
border-radius: 50%; |
|||
transform: translate(-50%, -50%); |
|||
height: 0.4rem; |
|||
width: 0.02rem; |
|||
} |
|||
|
|||
.close-button:after { |
|||
height: 0.02rem; |
|||
width: 0.4rem; |
|||
} |
|||
|
|||
.popup-content { |
|||
margin: 0.25rem 3% 0; |
|||
padding-bottom: 3rem; |
|||
width: 94%; |
|||
height: calc(100% - 1.6rem); |
|||
overflow-y: auto; |
|||
font-size: 0.38rem; |
|||
} |
|||
|
|||
.subsearch { |
|||
width: 100%; |
|||
height: 1.25rem; |
|||
} |
|||
|
|||
.searchbox { |
|||
margin: 2% 3%; |
|||
padding: 0.15rem 0.3rem 0.1rem 1.15rem; |
|||
width: 94%; |
|||
height: 1.0rem; |
|||
background: #f6f7fe url(../../assets/images/icon_sou.png) no-repeat; |
|||
background-position: left 0.5rem center; |
|||
background-size: auto 50%; |
|||
box-sizing: border-box; |
|||
border: 1px solid rgba(0,0,0,.05); |
|||
border-radius: 0.5rem; |
|||
color: #999999; |
|||
outline: none; |
|||
} |
|||
|
|||
.subtitle { |
|||
margin: 0.5rem 0 0.25rem; |
|||
font-size: 0.4rem; |
|||
font-weight: 600; |
|||
} |
|||
|
|||
.quick-item { |
|||
display: flex; |
|||
} |
|||
|
|||
.quick-item span { |
|||
display: inline-block; |
|||
margin: 1% 0 2% 3.5%; |
|||
padding: 2% 3.75%; |
|||
background: #f2f3f4; |
|||
border: 0; |
|||
border-radius: 8px; |
|||
color: #4c4c4c; |
|||
} |
|||
|
|||
.quick-item span.seled { |
|||
background: #e9f2fb; |
|||
color: #1367fe; |
|||
} |
|||
|
|||
.btnbox { |
|||
display: flex; |
|||
justify-content: center; |
|||
margin: 5% 2%; |
|||
width: 96%; |
|||
height: 1.0rem; |
|||
} |
|||
|
|||
.btn-reset, |
|||
.btn-search { |
|||
display: inline-block; |
|||
margin: 0 2%; |
|||
padding: 0; |
|||
width: 60%; |
|||
color: #fff; |
|||
font-size: 0.35rem; |
|||
border-radius: 1rem; |
|||
background: #1367fe; |
|||
border: 1px solid #1367fe; |
|||
text-align: center; |
|||
} |
|||
|
|||
.btn-reset { |
|||
width: 35%; |
|||
background-color: #fff; |
|||
border-color: rgba(19, 103, 254, .7); |
|||
color: #1367fe; |
|||
} |
|||
|
|||
.search-result { |
|||
width: 100%; |
|||
padding-bottom: 2rem; |
|||
} |
|||
|
|||
.case-item { |
|||
margin: 3% 2%; |
|||
padding: 2% 0; |
|||
width: 96%; |
|||
font-size: 0.3rem; |
|||
border-bottom: 1px solid #f4f4f4; |
|||
color: #999; |
|||
line-height: 2; |
|||
} |
|||
|
|||
.case-title { |
|||
margin: 2% 0; |
|||
font-size: 0.38rem; |
|||
color: #333; |
|||
line-height: 1.25; |
|||
} |
|||
|
|||
|
|||
</style> |
|||
Loading…
Reference in new issue