Commit 0784b077 by 无尘

update: 更新样式

parent 749798cb
......@@ -5,7 +5,7 @@
<div class="common-wrap__temp flex">
<div class="common-wrap__currentTag inline-block">
<a :href="'#/'+tagLibName+'List?tagLevelGroupId=0'" class="common-wrap__currentTag__name">全部</a>
<i class="el-icon-arrow-right m-l-8 m-r-8"></i>
<i class="el-icon-arrow-right m-l-8 m-r-8" v-if="!!currentTagDatas.length"></i>
<template v-for="(item,index) in currentTagDatas">
<a :href="'#/'+tagLibName+'List?tagLevelGroupId='+item.tagLevelGroupId" class="common-wrap__currentTag__name">{{item.levelName}}</a>
<i class="el-icon-arrow-right m-l-8 m-r-8" v-if="currentTagDatas.length-1 != index"></i>
......
......@@ -8,7 +8,7 @@
<div class="common-wrap__temp flex">
<div class="common-wrap__currentTag inline-block">
<a class="common-wrap__currentTag__name" @click.stop="toRequestData(0)">全部</a>
<i class="el-icon-arrow-right m-l-8 m-r-8"></i>
<i class="el-icon-arrow-right m-l-8 m-r-8" v-if="!!currentTagDatas.length"></i>
<template v-for="(item,index) in currentTagDatas">
<a class="common-wrap__currentTag__name" @click.stop="toRequestData(item.tagLevelGroupId)">{{item.levelName}}</a>
<i class="el-icon-arrow-right m-l-8 m-r-8" v-if="currentTagDatas.length-1 != index"></i>
......
......@@ -346,6 +346,7 @@
*/
selectTag(id) {
const that = this;
if (that.tagCategory == 'myTagList') {return false;}
that.libRadio = id;
},
......@@ -468,7 +469,18 @@
.common-lib__cell {
cursor: pointer;
&:hover {
border-color: #1890ff;
}
.common-lib__cell__fieldName {
&:hover {
color: #1890ff;
}
}
}
.platformTagLib-wrap {
&__cell {
......
......@@ -293,6 +293,7 @@
var resData = res.data
if (resData.errorCode == 1) {
showMsg.showmsg('添加成功','success')
that.getTagList()
return;
}
......
......@@ -177,6 +177,7 @@
var resData = res.data
if (resData.errorCode == 1) {
showMsg.showmsg('添加成功','success')
that.getTagList()
return;
}
......
......@@ -1200,6 +1200,15 @@ input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
top: 28px;
}
.tagShort-dialog .el-dialog__body {
padding: 0 20px 30px 20px;
}
.tagShort-dialog .el-dialog__footer {
border-top: none;
border-top: 0px;
}
/* 选项 (固化值)*/
.checkboxOption-wrap {
width: 100%;
......
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