Commit 08538cf5 by yanju

Merge branch 'yoona' into 'master'

修复发布项目 必填项 校验 光标

See merge request pigbigbig/beyond-clouds-front!39
parents 739e82fd 64124069
......@@ -41,9 +41,9 @@
></label-wrap>
</div>
</div>
<div class="select-container" v-if="selectType === '2'" style="width: 196px" @mouseleave="isShow=false">
<div class="select-container" v-if="selectType === '2'" style="width: 196px;cursor: pointer;" @mouseleave="isShow=false">
<div class="input-box" @click="handleShow">
<input type="text" v-model="value.tag" :placeholder="placeholder" ref="select">
<input type="text" v-model="value.tag" :placeholder="placeholder" ref="select" style="cursor: pointer;">
<div class="icon-box">
<yun-icon name="down_arrow" size="10px" color="#999"></yun-icon>
</div>
......@@ -211,6 +211,13 @@ export default {
</script>
<style lang="scss" scoped>
input {
border: 1*$length solid transparent;
@extend %animate-transition;
&:focus {
border: 1*$length solid #00AAE6;
}
}
.select-container{
.select-container__input-box{
@extend %flex-row-spb;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment