Commit 6e0e00a4 by Kyle_Li

样式及提示改动

parent 54c7dfaf
......@@ -127,8 +127,9 @@ export default {
<style lang="scss" scoped>
.trash {
position: fixed;
right: 0;
right: 29px;
bottom: 370px;
height: 44px;
z-index: 2;
display: flex;
flex-wrap: nowrap;
......@@ -136,12 +137,13 @@ export default {
padding: 8px 10px 8px 0;
background-color: #fff;
color: #1890ff;
box-shadow: 0 0 3px rgba(85, 85, 85, 0.808);
box-shadow: 0 0 7px #7795b152;
cursor: pointer;
transform: translateX(170px);
transition: .4s;
overflow: hidden;
width: 46px;
&:hover {
transform: translateX(0);
width: 220px;
}
.trashIcon {
display: block;
......@@ -152,6 +154,7 @@ export default {
display: flex;
align-items: center;
margin-top: -2px;
white-space: nowrap;
}
.trashState {
display: flex;
......
......@@ -655,7 +655,11 @@
</div>
<div class="checkboxOption-wrap__body__options border-box tag-options">
<el-checkbox-group v-model="parent.checkeditems" @change="handleCheckedCitiesChange">
<el-checkbox v-for="(item, index) in parent.options" :label="item.memberTagGradeId" :key="item.memberTagGradeId + index">{{item.aliasName}}</el-checkbox>
<el-checkbox v-for="(item, index) in parent.options" :label="item.memberTagGradeId" :key="item.memberTagGradeId + index">
<el-tooltip class="item" effect="dark" :content="item.aliasName | aliasTips" placement="top-start">
<span>{{ item.aliasName }}</span>
</el-tooltip>
</el-checkbox>
</el-checkbox-group>
</div>
</div>
......@@ -747,6 +751,7 @@ import qs from 'qs';
// import vueGicGoodsSelector from '@/components/selector/index.vue';
import tagDetails from '@/components/tagDetail/mixin/index';
import VueGicCard from '@/components/card/card';
import { aliasNames } from '@/config'
import { getTagType, findWidget, findOndJson } from '@/request/tagConfig';
// 两个数字区间 numRange [0, 1]
......@@ -1884,6 +1889,15 @@ export default {
if (this.id) {
this._getTagType(this.id);
}
},
filters: {
aliasTips(name) {
let item = aliasNames.find(el => el.name === name);
if (item) {
return item.title;
}
return '';
},
}
};
</script>
......
......@@ -908,7 +908,7 @@ export default {
opacity: 1;
}
100% {
right: 0;
right: 30px;
bottom: 380px;
font-size: 12px;
}
......
......@@ -778,7 +778,7 @@ export default {
}
.member-box {
padding-bottom: 20px;
margin: 20px 32px 0;
margin: 20px 24px 0;
min-width: 1400px;
min-height: 70vh;
background-color: #fff;
......@@ -789,14 +789,14 @@ export default {
.my-pop-tagbox {
position: fixed;
z-index: 2;
right: 0;
right: 29px;
bottom: 230px;
height: 120px;
width: 45px;
// color: #fff;
background-color: #fff;
color: #1890ff;
box-shadow: 0 0 3px rgba(85, 85, 85, 0.808);
box-shadow: 0 0 7px #7795b152;
// border-radius: 50%;
cursor: pointer;
.txt {
......
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