Compare commits

...

3 Commits

18 changed files with 47 additions and 27 deletions

View File

@ -205,11 +205,11 @@ const saveSelfSubject = () => {
}
:deep(.ed-radio__input.is-checked + .ed-radio__label) {
color: #1f2329 !important;
color: #fff ;
}
:deep(.ed-radio__input.is-disabled + span.ed-radio__label) {
color: var(--ed-text-color-placeholder) !important;
color: #fff !important;
}
:deep(.ed-collapse-item.ed-collapse--light .ed-collapse-item__content) {

View File

@ -355,6 +355,7 @@ const onComponentNameChange = () => {
.ed-popper.is-light {
border: 1px solid #434343 !important;
background: rgba(41, 41, 41, 1) !important;
color: #ffffff ;
}
.ed-popper[data-popper-placement^=bottom] .ed-popper__arrow::before {
background: rgba(41, 41, 41, 1) !important;

View File

@ -742,4 +742,12 @@ strong {
}
.de-el-dropdown-menu-fixed .de-panel .mod-left .ed-input__wrapper{
background-color: rgba(37, 38, 38, 0) !important;
}
.form-draggable-title{
color: #ffffff;
}
.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell{
background-color: rgba(37, 38, 38, 0) !important;
}

View File

@ -56,3 +56,11 @@
color: #fff ;
}
:deep(.ed-row.drag-data.padding-lr svg){
width: 100%;
height: 100%;
}
:deep(.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell){
background-color: rgba(37, 38, 38, 0) !important;
}

View File

@ -801,7 +801,7 @@ span {
.item-span-style {
display: flex;
max-width: 170px;
color: #1f2329;
color: #fff;
margin-left: 4px;
&.hidden-status,

View File

@ -409,7 +409,7 @@ span {
.item-span-style {
display: flex;
max-width: 170px;
color: #1f2329;
color: #fff;
margin-left: 4px;
&.sort-status {

View File

@ -201,7 +201,7 @@ span {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
color: #1f2329;
color: #fff;
margin-left: 4px;
}

View File

@ -951,7 +951,7 @@ span {
.item-span-style {
display: flex;
max-width: 170px;
color: #1f2329;
color: #fff;
margin-left: 4px;
.item-name {

View File

@ -279,10 +279,12 @@ const del = (index, child) => {
.ed-popper.is-light{
border:1px solid #434343;
background: rgba(41, 41, 41, 1);
color: #ffffff ;
}
.ed-popper.is-light .ed-popper__arrow::before{
background:rgba(41, 41, 41, 1);
border: 1px solid rgba(70, 70, 70, 1);
color: #ffffff ;
}
</style>

View File

@ -4145,7 +4145,7 @@ const deleteChartFieldItem = id => {
.editor-light {
border-left: solid 1px @side-outline-border-color-light !important;
color: @canvas-main-font-color-light!important;
background-color: @side-area-background-light!important;
// background-color: @side-area-background-light!important;
:deep(.ed-tabs__header) {
border-top: solid 1px @side-outline-border-color-light !important;
}
@ -4172,18 +4172,18 @@ const deleteChartFieldItem = id => {
background-color: @side-outline-border-color-light !important;
}
:deep(.item-span-style) {
color: @canvas-main-font-color-light!important;
color: #fff!important;
}
:deep(.editor-title) {
color: #1f2329 !important;
}
:deep(.collapse-title) {
color: #1f2329 !important;
}
:deep(.collapse-icon) {
color: #646a73 !important;
}
// :deep(.editor-title) {
// color: #1f2329 !important;
// }
// :deep(.collapse-title) {
// color: #1f2329 !important;
// }
// :deep(.collapse-icon) {
// color: #646a73 !important;
// }
.query-style-tab {
width: 100%;
border-top: solid 1px @side-outline-border-color-light !important;
@ -4564,6 +4564,7 @@ span {
display: flex;
flex-direction: row;
align-items: center;
color: #fff;
:deep(.required::after) {
content: '*';
color: var(--ed-color-danger);
@ -4767,7 +4768,7 @@ span {
justify-content: space-between;
height: 40px;
padding: 0 6px;
color: #fff;
.margin20-radio {
margin-right: 20px;
}

View File

@ -461,7 +461,6 @@ const nextOne = () => {
}
const templateApply = template => {
debugger
state.curApplyTemplate = template
state.dvCreateForm.name = template.title
state.dvCreateForm.nodeType = template.templateType

View File

@ -88,7 +88,7 @@ function handleNodeClick(e) {
busiFlag.value = 'dataV'
loading.value = false
loadCanvasData(e.id, 9, 0)
} else if (e.type == '04' || e.type == '05' || e.type == '06') {
} else if (e.type == '04' || e.type == '05' || e.type == '06'||e.type == '09') {
moduleInfo.value = e
isFormCreate.value = true
loading.value = false

View File

@ -93,7 +93,7 @@ const handleNodeClick = (e: any) => {
}else if(e.type == '03'){
busiFlag.value = 'dataV'
loadCanvasData(e.id,9,0)
}else if(e.type == '04'||e.type == '05'||e.type == '06'){
}else if(e.type == '04'||e.type == '05'||e.type == '06'||e.type == '09'){
moduleInfo.value = e
isFormCreate.value = true
} else if(e.type == '02'){

View File

@ -94,7 +94,7 @@ function handleNodeClick(e){
}else if(e.type == '03'){
busiFlag.value = 'dataV'
loadCanvasData(e.id,9,0)
}else if(e.type == '09'){
}else if(e.type == '04'||e.type == '05'||e.type == '06'||e.type == '09'){
moduleInfo.value = e
isFormCreate.value = true
} else if(e.type == '02'){

View File

@ -43,7 +43,7 @@ function designClick(){
window.open('/#/dvsCanvas?dvId=' + treeInfo.value.id+'&appId=' + projectInfo.value.id, '_blank');
}else if(treeInfo.value.type == '0301'){
window.open('/#/dashboard?resourceId=' + treeInfo.value.id + '&appId='+projectInfo.value.id, '_blank');
}else if(treeInfo.value.type == '04'||treeInfo.value.type == '05'||treeInfo.value.type == '06'){
}else if(treeInfo.value.type == '04'||treeInfo.value.type == '05'||treeInfo.value.type == '06'|| treeInfo.value.type == '09'){
window.open('/#/formcreatedesigner?moduleId=' +treeInfo.value.id + '&appId='+projectInfo.value.id, '_blank');
}else if(treeInfo.value.type == '01'){
window.open('/#/editLogin?dvId=' +treeInfo.value.id + '&appId='+projectInfo.value.id+ '&name='+projectInfo.value.name+ '&appname='+projectInfo.value.name, '_blank');

View File

@ -125,7 +125,7 @@ function handleNodeClick(e){
}else if(e.type == '03'){
busiFlag.value = 'dataV'
loadCanvasData(e.id,9,0)
}else if(e.type == '04'||e.type == '05'||e.type == '06'){
}else if(e.type == '04'||e.type == '05'||e.type == '06'||e.type == '09'){
moduleInfo.value = e
isFormCreate.value = true
} else if(e.type == '02'){

View File

@ -218,9 +218,9 @@ function menuclick(name){
box-shadow:none;
border: 1px solid #f54a45;
}
:deep(.ed-pagination__total){
color: #1f2329 !important;
}
// :deep(.ed-pagination__total){
// color: #1f2329 !important;
// }
:deep(.ed-checkbox__inner){
background-color: #ffffff !important;
border:1px solid #bbbfc4 !important;

View File

@ -1750,6 +1750,7 @@ const mousedownDrag = () => {
.ed-popper.is-light {
border: 1px solid #434343;
background: rgba(41, 41, 41, 1) !important;
color: #ffffff ;
}
.ed-tree-node__content:hover{
background-color: #434343;