mirror of
https://github.com/dataease/dataease.git
synced 2025-02-25 03:52:59 +08:00
fix: css抽取顺序报错
This commit is contained in:
parent
b22a654bbb
commit
c5e274281c
@ -6,6 +6,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
|
"serves": "node --max_old_space_size=4096 node_modules/@vue/cli-service/bin/vue-cli-service.js build",
|
||||||
"build:prod": "vue-cli-service build",
|
"build:prod": "vue-cli-service build",
|
||||||
"build:stage": "vue-cli-service build --mode staging",
|
"build:stage": "vue-cli-service build --mode staging",
|
||||||
"dll": "webpack -p --progress --config ./webpack.dll.conf.js",
|
"dll": "webpack -p --progress --config ./webpack.dll.conf.js",
|
||||||
|
@ -79,9 +79,9 @@ export default {
|
|||||||
$namespace: "de";
|
$namespace: "de";
|
||||||
$state-prefix: "is-de-";
|
$state-prefix: "is-de-";
|
||||||
$modifier-separator: "--";
|
$modifier-separator: "--";
|
||||||
|
$B: null;
|
||||||
@mixin b($block) {
|
@mixin b($block) {
|
||||||
$B: $namespace + "-" + $block !global;
|
$B: $namespace + "-" + $block;
|
||||||
|
|
||||||
.#{$B} {
|
.#{$B} {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-col class="tree-style de-dataset-search">
|
<el-col class="de-dataset-search">
|
||||||
<!-- group -->
|
<!-- group -->
|
||||||
<el-col>
|
<el-col>
|
||||||
<div
|
<div
|
||||||
@ -1241,14 +1241,12 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.tree-style {
|
|
||||||
padding: 10px 15px;
|
|
||||||
height: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.de-dataset-search {
|
.de-dataset-search {
|
||||||
|
padding: 10px 24px;
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
.main-area-input {
|
.main-area-input {
|
||||||
.el-input-group__append {
|
.el-input-group__append {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<de-layout-content>
|
<de-layout-content>
|
||||||
<div class="organization">
|
<div class="de-task-record">
|
||||||
<el-tabs
|
<el-tabs
|
||||||
v-model="tabActive"
|
v-model="tabActive"
|
||||||
@tab-click="changeTab"
|
@tab-click="changeTab"
|
||||||
@ -120,32 +120,8 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.de-msg-radio-class {
|
|
||||||
padding: 0 5px;
|
|
||||||
::v-deep .el-radio-button__inner {
|
|
||||||
border-radius: 4px 4px 4px 4px !important;
|
|
||||||
border-left: 1px solid #dcdfe6 !important;
|
|
||||||
padding: 10px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .el-radio-button__orig-radio:checked + .el-radio-button__inner {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #0a7be0;
|
|
||||||
border-color: #0a7be0;
|
|
||||||
-webkit-box-shadow: 0px 0 0 0 #0a7be0;
|
|
||||||
box-shadow: 0px 0 0 0 #0a7be0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.de-msg-a:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
color: #0a7be0 !important;
|
|
||||||
cursor: pointer !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.organization {
|
.de-task-record {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: var(--MainBG, #f5f6f7);
|
background-color: var(--MainBG, #f5f6f7);
|
||||||
|
|
||||||
@ -155,11 +131,11 @@ export default {
|
|||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
>>> .el-tabs__header {
|
::v-deep.el-tabs__header {
|
||||||
margin: 0 0 12px;
|
margin: 0 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
>>> .el-tabs__item {
|
::v-deep.el-tabs__item {
|
||||||
height: 24px;
|
height: 24px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
margin-bottom: 9px;
|
margin-bottom: 9px;
|
||||||
|
Loading…
Reference in New Issue
Block a user