提交 6f639373 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 00846261
.el-breadcrumb__inner, .el-breadcrumb__inner,
.el-breadcrumb__inner a { .el-breadcrumb__inner a {
font-weight: 400 !important; font-weight: 400 !important;
...@@ -6,19 +5,22 @@ ...@@ -6,19 +5,22 @@
.app-breadcrumb.el-breadcrumb { .app-breadcrumb.el-breadcrumb {
display: inline-block; display: inline-block;
font-size: 14px; font-size: 18px;
line-height: 50px;
margin-left: 8px; margin-left: 8px;
.no-redirect { .no-redirect {
color: #97a8be; color: var(--ey-color-black);
cursor: text; cursor: text;
.curselected{ .curselected{
color: #2196F3;
font-weight: bold; font-weight: bold;
} }
.app-breadcrumb-selected{ .app-breadcrumb-selected{
cursor: pointer; cursor: pointer;
} }
} }
.el-breadcrumb__inner a {
color: var(--ey-color-gray-100);
}
.el-breadcrumb__separator{
margin: 0 10px;
}
} }
\ No newline at end of file
.app-stepper{
.el-input-number__increase{
border-left: 1px solid #dcdfe6!important ;
}
}
<template> <template>
<app-index-view-layout-left :navModel="navModel" :collapseChange="collapseChange" :class="{ [themeClasses]: true, 'index': true }" :style="themeStyle"> <app-index-view-layout-top :class="{ [themeClasses]: true, 'index': true }" :style="themeStyle">
<template #siderTop> <template #headerLeft>
<div class="app-title"> <img class="app-icon" src="../../../assets/img/logo.png" />
<img class="app-icon" v-if="isEnableAppSwitch" src="../../../assets/img/logo2.png" @click="contextMenuDragVisiable=!contextMenuDragVisiable" /> <span class="app-caption">{{model.srfCaption}}</span>
<span class="app-caption" v-show="!collapseChange">{{model.srfCaption}}</span> </template>
</div> <template #headerRight>
</template> <view_appmenu
<template #siderContent>
<view_appmenu
:viewState="viewState" :viewState="viewState"
:viewparams="viewparams" :viewparams="viewparams"
:context="context" :context="context"
...@@ -25,27 +23,15 @@ ...@@ -25,27 +23,15 @@
ref='appmenu' ref='appmenu'
@closeview="closeView($event)"> @closeview="closeView($event)">
</view_appmenu> </view_appmenu>
<context-menu-drag v-if="isEnableAppSwitch" :contextMenuDragVisiable="contextMenuDragVisiable"></context-menu-drag> <app-user></app-user>
</template> <app-message-popover></app-message-popover>
<template #siderBottom> <app-help></app-help>
<i v-show="!collapseChange" class="collapse-icon ivu-icon el-icon-s-fold" @click="handleClick"></i> <app-lang></app-lang>
<i v-show="collapseChange" class="collapse-icon ivu-icon el-icon-s-unfold" @click="handleClick"></i> </template>
</template> <template #navPos>
<template #headerRight> <router-view></router-view>
<app-user></app-user> </template>
<app-message-popover></app-message-popover> </app-index-view-layout-top>
<app-help></app-help>
<app-lang></app-lang>
</template>
<template #tabPageExp>
<tab-page-exp v-if="Object.is(navModel,'tab')"></tab-page-exp>
</template>
<template #navPos>
<app-keep-alive :routerList="getRouterList">
<router-view :key="getRouterViewKey"></router-view>
</app-keep-alive>
</template>
</app-index-view-layout-left>
</template> </template>
// 基于 @VIEW/应用首页视图/VIEW-BASE.vue.ftl 生成 // 基于 @VIEW/应用首页视图/VIEW-BASE.vue.ftl 生成
...@@ -627,7 +613,7 @@ export default class IndexBase extends Vue { ...@@ -627,7 +613,7 @@ export default class IndexBase extends Vue {
* @type {string} * @type {string}
* @memberof IndexBase * @memberof IndexBase
*/ */
public mode: string ='vertical'; public mode: string ='horizontal';
/** /**
* 导航模式(route:面包屑模式、tab:分页导航模式) * 导航模式(route:面包屑模式、tab:分页导航模式)
......
...@@ -57,29 +57,33 @@ ...@@ -57,29 +57,33 @@
// 确认操作框 // 确认操作框
.ivu-modal-confirm{ .ivu-modal-confirm{
padding: 0; padding: 0;
margin: -30px -30px;
.ivu-modal-confirm-head{ .ivu-modal-confirm-head{
height: 50px;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--ey-color-gray-250);
.ivu-modal-confirm-head-icon{ .ivu-modal-confirm-head-icon{
font-size: 20px; display: none;
color: var(--app-color-red);
i::before{
content: "\F107";
}
} }
.ivu-modal-confirm-head-title{ .ivu-modal-confirm-head-title{
font-size: 16px; font-size: 18px;
color: var(--app-color-black); font-weight: bold;
color: var(--ey-color-black);
} }
} }
.ivu-modal-confirm-body{ .ivu-modal-confirm-body{
margin: 14px 0; margin: 30px 0;
padding-left: 0; padding: 0 35px;
font-size: 14px; font-size: 14px;
color: var(--app-color-gray-100); color: var(--ey-color-black);
text-align: center;
} }
.ivu-modal-confirm-footer{ .ivu-modal-confirm-footer{
margin-top: 0; margin: 0 0 30px;
display: flex; display: flex;
justify-content: flex-end; justify-content: center;
.ivu-btn { .ivu-btn {
height: var(--ey-confirm-button-height); height: var(--ey-confirm-button-height);
font-size: var(--ey-confirm-button-font-size); font-size: var(--ey-confirm-button-font-size);
......
...@@ -2,4 +2,16 @@ ...@@ -2,4 +2,16 @@
.el-input{ .el-input{
font-size: 14px; font-size: 14px;
} }
}
.el-autocomplete-suggestion{
.el-autocomplete-suggestion__list{
li{
color: var(--ey-color-gray-100);
}
li:hover{
color: var(--ey-color-black);
background-color: var(--ey-color-blue-green-110);
}
}
} }
\ No newline at end of file
...@@ -7,4 +7,5 @@ ...@@ -7,4 +7,5 @@
@import './table.scss'; @import './table.scss';
@import './upload.scss'; @import './upload.scss';
@import './tooltip.scss'; @import './tooltip.scss';
@import './popover.scss'; @import './popover.scss';
\ No newline at end of file @import './stepper.scss';
\ No newline at end of file
.el-input{ .el-input{
.el-input__inner{ .el-input__inner{
border-radius: 0; border-radius: 4px;
min-height: 34px; min-height: 34px;
line-height: 34px; line-height: 34px;
} }
// 悬浮 // 悬浮
.el-input__inner:hover{ .el-input__inner:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
&.is-disabled .el-input__inner:hover{ &.is-disabled .el-input__inner:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
//聚焦 //聚焦
.el-input__inner:focus { &.is-active .el-input__inner, .el-input__inner:focus{
box-shadow: 0 0 2px 0px #188ce5; border-color: var(--ey-color-blue-green);
box-shadow: none;
} }
// 占位 // 占位
.el-input__inner::-webkit-input-placeholder{ .el-input__inner::-webkit-input-placeholder{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
// 禁用 // 禁用
&.is-disabled .el-input__inner{ &.is-disabled .el-input__inner{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
background-color: var(--app-color-gray-250); background-color: var(--ey-color-gray-250);
} }
// 后缀图标 // 后缀图标
.el-input__suffix{ .el-input__suffix{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
} }
\ No newline at end of file
.el-select{ .el-select{
// 悬浮 select会压住input本身的 // 悬浮 select会压住input本身的
&:hover .el-input__inner{ &:hover .el-input__inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
.el-input.is-disabled .el-input__inner:hover{ .el-input.is-disabled .el-input__inner:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
} }
\ No newline at end of file
.el-slider__bar { .el-slider__bar {
background-color: var(--app-color-blue); background-color: var(--ey-color-blue-green);
} }
.el-slider__button{ .el-slider__button{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
\ No newline at end of file
.el-input-number { .el-input-number {
.el-input__inner:hover { .el-input__inner:hover {
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
&:hover{ &:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
} }
.el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled),
.el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled) {
border-color: var(--ey-color-blue-green);
}
\ No newline at end of file
.el-switch.is-checked .el-switch__core { .el-switch.is-checked .el-switch__core {
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
background-color: var(--app-color-blue); background-color: var(--ey-color-blue-green);
} }
\ No newline at end of file
// light样式 // light样式
.el-tooltip__popper.is-light{ .el-tooltip__popper.is-light{
background-color: var(--app-color-gray-100); background-color: var(--ey-color-gray-250);
box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08),
0px 3px 6px 0px rgba(0, 0, 0, 0.12); 0px 3px 6px 0px rgba(0, 0, 0, 0.12);
border-radius: 2px;
border: 0; border: 0;
color: var(--app-color-white); padding: 10px;
border-radius: 4px;
font-size: 14px;
color: var(--ey-color-black);
} }
.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=bottom-start] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=bottom-start] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=bottom-end] .popper__arrow{ .el-tooltip__popper.is-light[x-placement^=bottom-end] .popper__arrow{
border-bottom-color: var(--app-color-gray-100); border-bottom-color: var(--ey-color-gray-250);
&::after{ &::after{
border-bottom-color: var(--app-color-gray-100); border-bottom-color: var(--ey-color-gray-250);
} }
} }
.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=top] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=top-start] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=top-start] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=top-end] .popper__arrow{ .el-tooltip__popper.is-light[x-placement^=top-end] .popper__arrow{
border-top-color: var(--app-color-gray-100); border-top-color: var(--ey-color-gray-250);
&::after{ &::after{
border-top-color: var(--app-color-gray-100); border-top-color: var(--ey-color-gray-250);
} }
} }
.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=left] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=left-start] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=left-start] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=left-end] .popper__arrow{ .el-tooltip__popper.is-light[x-placement^=left-end] .popper__arrow{
border-left-color: var(--app-color-gray-100); border-left-color: var(--ey-color-gray-250);
&::after{ &::after{
border-left-color: var(--app-color-gray-100); border-left-color: var(--ey-color-gray-250);
} }
} }
.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=right] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=right-start] .popper__arrow, .el-tooltip__popper.is-light[x-placement^=right-start] .popper__arrow,
.el-tooltip__popper.is-light[x-placement^=right-end] .popper__arrow{ .el-tooltip__popper.is-light[x-placement^=right-end] .popper__arrow{
border-right-color: var(--app-color-gray-100); border-right-color: var(--ey-color-gray-250);
&::after{ &::after{
border-right-color: var(--app-color-gray-100); border-right-color: var(--ey-color-gray-250);
} }
} }
// dark样式 // dark样式
.el-tooltip__popper.is-dark{ .el-tooltip__popper.is-dark{
background-color: var(--app-color-gray-100); background-color: var(--ey-color-gray-250);
box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08),
0px 3px 6px 0px rgba(0, 0, 0, 0.12); 0px 3px 6px 0px rgba(0, 0, 0, 0.12);
border-radius: 2px;
border: 0; border: 0;
color: var(--app-color-white); padding: 10px;
border-radius: 4px;
font-size: 14px;
color: var(--ey-color-black);
} }
.el-tooltip__popper.is-dark[x-placement^=bottom] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=bottom] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=bottom-start] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=bottom-start] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=bottom-end] .popper__arrow{ .el-tooltip__popper.is-dark[x-placement^=bottom-end] .popper__arrow{
border-bottom-color: var(--app-color-gray-100); border-bottom-color: var(--ey-color-gray-250);
&::after{ &::after{
border-bottom-color: var(--app-color-gray-100); border-bottom-color: var(--ey-color-gray-250);
} }
} }
.el-tooltip__popper.is-dark[x-placement^=top] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=top] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=top-start] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=top-start] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=top-end] .popper__arrow{ .el-tooltip__popper.is-dark[x-placement^=top-end] .popper__arrow{
border-top-color: var(--app-color-gray-100); border-top-color: var(--ey-color-gray-250);
&::after{ &::after{
border-top-color: var(--app-color-gray-100); border-top-color: var(--ey-color-gray-250);
} }
} }
.el-tooltip__popper.is-dark[x-placement^=left] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=left] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=left-start] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=left-start] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=left-end] .popper__arrow{ .el-tooltip__popper.is-dark[x-placement^=left-end] .popper__arrow{
border-left-color: var(--app-color-gray-100); border-left-color: var(--ey-color-gray-250);
&::after{ &::after{
border-left-color: var(--app-color-gray-100); border-left-color: var(--ey-color-gray-250);
} }
} }
.el-tooltip__popper.is-dark[x-placement^=right] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=right] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=right-start] .popper__arrow, .el-tooltip__popper.is-dark[x-placement^=right-start] .popper__arrow,
.el-tooltip__popper.is-dark[x-placement^=right-end] .popper__arrow{ .el-tooltip__popper.is-dark[x-placement^=right-end] .popper__arrow{
border-right-color: var(--app-color-gray-100); border-right-color: var(--ey-color-gray-250);
&::after{ &::after{
border-right-color: var(--app-color-gray-100); border-right-color: var(--ey-color-gray-250);
} }
} }
\ No newline at end of file
...@@ -8,15 +8,21 @@ ...@@ -8,15 +8,21 @@
margin-top: 15px; margin-top: 15px;
.el-button{ .el-button{
width: 100%; width: 100%;
background: var(--app-color-white); background: var(--ey-color-white);
border: 1px solid var(--app-color-gray-235); border: 1px solid var(--ey-color-gray-250);
border-radius: 0; border-radius: 4px;
&:hover{
color: var(--ey-color-blue-green);
}
&:focus{
color: var(--ey-color-blue-green);
}
} }
} }
.el-upload-list{ .el-upload-list{
.el-upload-list__item{ .el-upload-list__item{
.el-upload-list__item-name{ .el-upload-list__item-name{
color: var(--app-color-blue); color: var(--ey-color-blue-green);
.el-icon-document{ .el-icon-document{
display: none; display: none;
} }
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
font-weight: 700; font-weight: 700;
display: flex; display: flex;
align-items: center; align-items: center;
color: var(--app-color-black); color: var(--ey-color-black);
border-bottom: 1px solid var(--app-color-gray-235); border-bottom: 1px solid var(--app-color-gray-235);
} }
&.ivu-card-bordered { &.ivu-card-bordered {
......
...@@ -7,13 +7,13 @@ ...@@ -7,13 +7,13 @@
margin-right: 6px; margin-right: 6px;
// 激活 // 激活
&.ivu-checkbox-checked{ &.ivu-checkbox-checked{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
background-color: var(--app-color-blue); background-color: var(--ey-color-blue-green);
} }
} }
// 悬浮 // 悬浮
.ivu-checkbox:hover .ivu-checkbox-inner{ .ivu-checkbox:hover .ivu-checkbox-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
// 禁用 // 禁用
.ivu-checkbox-disabled+span{ .ivu-checkbox-disabled+span{
......
...@@ -6,13 +6,13 @@ ...@@ -6,13 +6,13 @@
// 激活 // 激活
&.ivu-checkbox-checked { &.ivu-checkbox-checked {
.ivu-checkbox-inner{ .ivu-checkbox-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
background-color: var(--app-color-blue); background-color: var(--ey-color-blue-green);
} }
} }
} }
// 悬浮 // 悬浮
.ivu-checkbox:hover .ivu-checkbox-inner{ .ivu-checkbox:hover .ivu-checkbox-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
} }
\ No newline at end of file
.ivu-date-picker-transfer{ .ivu-date-picker-transfer{
.ivu-date-picker-cells-cell-selected:hover em, .ivu-date-picker-cells-cell-selected:hover em,
.ivu-date-picker-cells-cell-selected em{ .ivu-date-picker-cells-cell-selected em{
background: var(--app-color-blue); background: var(--ey-color-blue-green);
color: var(--app-color-white); color: var(--ey-color-white);
} }
.ivu-date-picker-cells-cell-selected em{ .ivu-date-picker-cells-cell-selected em{
box-shadow: inset 0 0 0 1px var(--app-color-blue) box-shadow: inset 0 0 0 1px var(--ey-color-blue-green)
} }
.ivu-date-picker-cells-cell-today em::after{ .ivu-date-picker-cells-cell-today em::after{
background-color: var(--app-color-blue); background-color: var(--ey-color-blue-green);
} }
.ivu-date-picker-cells-focused em{ .ivu-date-picker-cells-focused em{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
box-shadow: inset 0 0 0 1px var(--app-color-blue) box-shadow: inset 0 0 0 1px var(--ey-color-blue-green)
} }
.ivu-time-picker-cells-cell-selected{ .ivu-time-picker-cells-cell-selected{
color: var(--app-color-blue); color: var(--ey-color-blue-green);
} }
.ivu-picker-panel-body-wrapper{ .ivu-picker-panel-body-wrapper{
.ivu-picker-panel-body{ .ivu-picker-panel-body{
......
...@@ -2,25 +2,25 @@ ...@@ -2,25 +2,25 @@
padding: 0; padding: 0;
.ivu-date-picker-cells-cell-selected:hover em, .ivu-date-picker-cells-cell-selected:hover em,
.ivu-date-picker-cells-cell-selected em { .ivu-date-picker-cells-cell-selected em {
background: var(--app-color-blue); background: var(--ey-color-blue-green);
color: var(--app-color-white); color: var(--ey-color-white);
} }
.ivu-date-picker-cells-cell-selected em { .ivu-date-picker-cells-cell-selected em {
box-shadow: inset 0 0 0 1px var(--app-color-blue) box-shadow: inset 0 0 0 1px var(--ey-color-blue-green)
} }
.ivu-date-picker-cells-cell-today em::after { .ivu-date-picker-cells-cell-today em::after {
background-color: var(--app-color-blue); background-color: var(--ey-color-blue-green);
} }
.ivu-date-picker-cells-focused em { .ivu-date-picker-cells-focused em {
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
box-shadow: inset 0 0 0 1px var(--app-color-blue) box-shadow: inset 0 0 0 1px var(--ey-color-blue-green)
} }
.ivu-time-picker-cells-cell-selected { .ivu-time-picker-cells-cell-selected {
color: var(--app-color-blue); color: var(--ey-color-blue-green);
} }
.ivu-picker-panel-body-wrapper { .ivu-picker-panel-body-wrapper {
...@@ -60,4 +60,8 @@ ...@@ -60,4 +60,8 @@
} }
} }
} }
}
.ivu-date-picker-focused input{
box-shadow: none;
} }
\ No newline at end of file
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.ivu-input-suffix{ .ivu-input-suffix{
right: 5px; right: 5px;
i{ i{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
} }
} }
......
.ivu-form-item { .ivu-form-item {
margin-bottom: 10px; margin-bottom: 10px;
}
.ivu-form-item-error .ivu-input{
border:1px solid var(--app-color-red);
box-shadow: none;
}
.ivu-form-item-error .ivu-input:focus{
border:1px solid var(--app-color-red);
box-shadow: none;
} }
\ No newline at end of file
.ivu-input-number{ .ivu-input-number{
min-height: 34px; min-height: 34px;
line-height: 34px; line-height: 34px;
border-radius: 0; border-radius: 4px;
// 悬浮 // 悬浮
&:hover{ &:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
&[disabled]:hover{ &[disabled]:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
// 占位 // 占位
&::-webkit-input-placeholder{ &::-webkit-input-placeholder{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
// 禁用 // 禁用
&.ivu-input-number-disabled{ &.ivu-input-number-disabled{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
background-color: var(--app-color-gray-250); background-color: var(--ey-color-gray-250);
} }
//聚焦
&:focus {
border-color: var(--ey-color-blue-green);
box-shadow: none;
}
} }
\ No newline at end of file
.ivu-input{ .ivu-input{
min-height: 34px; min-height: 34px;
line-height: 34px; line-height: 34px;
border-radius: 0; border-radius: 4px;
// 悬浮 // 悬浮
&:hover{ &:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
&[disabled]:hover{ &[disabled]:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
//聚焦 //聚焦
&:focus { &:focus {
box-shadow: 0 0 2px 0px #188ce5; border-color: var(--ey-color-blue-green);
box-shadow: none;
} }
// 占位 // 占位
&::-webkit-input-placeholder{ &::-webkit-input-placeholder{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
// 禁用 // 禁用
&.ivu-input-disabled{ &.ivu-input-disabled{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
background-color: var(--app-color-gray-250); background-color: var(--ey-color-gray-250);
} }
} }
...@@ -28,7 +29,7 @@ ...@@ -28,7 +29,7 @@
.ivu-input-wrapper{ .ivu-input-wrapper{
.ivu-input-suffix{ .ivu-input-suffix{
i{ i{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
} }
} }
\ No newline at end of file
...@@ -5,23 +5,26 @@ ...@@ -5,23 +5,26 @@
margin-right: 6px; margin-right: 6px;
width: 16px; width: 16px;
height: 16px; height: 16px;
.ivu-radio-inner{
border-width: 5px;
}
// 激活 // 激活
&.ivu-radio-checked{ &.ivu-radio-checked{
.ivu-radio-inner{ .ivu-radio-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
&.ivu-radio-inner:after{ &.ivu-radio-inner:after{
background-color: var(--app-color-blue); display: none;
} }
} }
} }
} }
// 悬浮 // 悬浮
.ivu-radio:hover .ivu-radio-inner{ .ivu-radio:hover .ivu-radio-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
// 禁用 // 禁用
.ivu-radio-disabled+span{ .ivu-radio-disabled+span{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
} }
} }
} }
\ No newline at end of file
.ivu-select{ .ivu-select{
.ivu-select-selection{ .ivu-select-selection{
min-height: 34px; min-height: 34px;
border-radius: 0; border-radius: 4px;
// 占位 // 占位
.ivu-select-input::-webkit-input-placeholder{ .ivu-select-input::-webkit-input-placeholder{
color:var(--app-color-gray-200); color:var(--ey-color-gray-200);
} }
// 禁用 // 禁用
.ivu-select-input[disabled]{ .ivu-select-input[disabled]{
color: var(--app-color-gray-200); color: var(--ey-color-gray-200);
-webkit-text-fill-color: var(--app-color-gray-200); -webkit-text-fill-color: var(--ey-color-gray-250);
} }
} }
// 悬浮 // 悬浮
.ivu-select-selection:hover{ .ivu-select-selection:hover{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
} }
} }
.ivu-select-dropdown{ .ivu-select-dropdown{
padding: 10px 0 10px; padding: 10px 0 10px;
.ivu-select-dropdown-list{ .ivu-select-dropdown-list{
.ivu-select-item{ .ivu-select-item{
color: var(--ey-color-gray-100);
// 激活 // 激活
&.ivu-select-item-selected{ &.ivu-select-item-selected{
color: var(--app-color-blue); color: var(--ey-color-white);
background-color: transparent; background-color: var(--ey-color-blue-green);
}
// 悬浮
&:hover{
color: var(--ey-color-black);
background-color: var(--ey-color-blue-green-110);
} }
} }
} }
}
.ivu-select-dropdown.ivu-select-multiple{
.ivu-select-dropdown-list{
.ivu-select-item{
// 多选激活
&.ivu-select-item-selected{
color: var(--ey-color-blue-green);
background-color: var(--ey-color-white);
}
}
}
}
.ivu-select-visible .ivu-select-selection{
border-color: var(--ey-color-blue-green);
box-shadow: none;
} }
\ No newline at end of file
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
.ivu-steps-head{ .ivu-steps-head{
.ivu-steps-head-inner{ .ivu-steps-head-inner{
margin-right: 10px; margin-right: 10px;
border-color: var(--app-color-gray-200); border-color: var(--ey-color-gray-200);
background-color: #fff; background-color: #fff;
span{ span{
color: #fff; color: #fff;
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
.ivu-steps-main{ .ivu-steps-main{
.ivu-steps-title{ .ivu-steps-title{
font-size: 14px; font-size: 14px;
color: var(--app-color-black); color: var(--ey-color-black);
} }
} }
} }
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
.ivu-steps-item.ivu-steps-status-process{ .ivu-steps-item.ivu-steps-status-process{
.ivu-steps-head{ .ivu-steps-head{
.ivu-steps-head-inner{ .ivu-steps-head-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
span{ span{
color: #fff; color: #fff;
} }
...@@ -45,9 +45,9 @@ ...@@ -45,9 +45,9 @@
} }
.ivu-steps-head{ .ivu-steps-head{
.ivu-steps-head-inner{ .ivu-steps-head-inner{
border-color: var(--app-color-blue); border-color: var(--ey-color-blue-green);
.ivu-icon-ios-checkmark{ .ivu-icon-ios-checkmark{
color: var(--app-color-blue); color: var(--ey-color-blue-green);
transform: scale(1.5); transform: scale(1.5);
} }
} }
......
.ivu-tooltip-popper{ .ivu-tooltip-popper{
.ivu-tooltip-content{ .ivu-tooltip-content{
.ivu-tooltip-inner { .ivu-tooltip-inner {
padding: 4px 8px; padding: 10px;
font-size: 14px; font-size: 14px;
min-height: 31px; color: var(--ey-color-black);
background-color: var(--app-color-gray-100); background-color: var(--ey-color-gray-250);
box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08),
0px 3px 6px 0px rgba(0, 0, 0, 0.12); 0px 3px 6px 0px rgba(0, 0, 0, 0.12);
border-radius: 2px; border-radius: 4px;
} }
} }
} }
...@@ -15,20 +15,20 @@ ...@@ -15,20 +15,20 @@
.ivu-tooltip-popper[x-placement^=bottom] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=bottom] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=bottom-start] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=bottom-start] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=bottom-end] .ivu-tooltip-arrow{ .ivu-tooltip-popper[x-placement^=bottom-end] .ivu-tooltip-arrow{
border-bottom-color: var(--app-color-gray-100); border-bottom-color: var(--ey-color-gray-250);
} }
.ivu-tooltip-popper[x-placement^=top] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=top] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=top-start] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=top-start] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=top-end] .ivu-tooltip-arrow{ .ivu-tooltip-popper[x-placement^=top-end] .ivu-tooltip-arrow{
border-top-color: var(--app-color-gray-100); border-top-color: var(--ey-color-gray-250);
} }
.ivu-tooltip-popper[x-placement^=left] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=left] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=left-start] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=left-start] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=left-end] .ivu-tooltip-arrow{ .ivu-tooltip-popper[x-placement^=left-end] .ivu-tooltip-arrow{
border-left-color: var(--app-color-gray-100); border-left-color: var(--ey-color-gray-250);
} }
.ivu-tooltip-popper[x-placement^=right] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=right] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=right-start] .ivu-tooltip-arrow, .ivu-tooltip-popper[x-placement^=right-start] .ivu-tooltip-arrow,
.ivu-tooltip-popper[x-placement^=right-end] .ivu-tooltip-arrow{ .ivu-tooltip-popper[x-placement^=right-end] .ivu-tooltip-arrow{
border-right-color: var(--app-color-gray-100); border-right-color: var(--ey-color-gray-250);
} }
\ No newline at end of file
...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1429,7 +1429,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1429,7 +1429,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1499,7 +1499,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1499,7 +1499,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1607,7 +1607,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1607,7 +1607,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1799,7 +1799,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1799,7 +1799,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1395,7 +1395,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1395,7 +1395,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1465,7 +1465,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1465,7 +1465,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1573,7 +1573,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1573,7 +1573,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1765,7 +1765,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1765,7 +1765,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1499,7 +1499,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1499,7 +1499,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1569,7 +1569,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1569,7 +1569,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1677,7 +1677,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1677,7 +1677,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1869,7 +1869,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1869,7 +1869,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -542,7 +542,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -542,7 +542,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public async load(data: any) { public async load(data: any) {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKMEditView9' + (this.$t('app.multiEditView.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2MEditView9_layout' + (this.$t('app.multiEditView.notConfig.fetchAction') as string) });
return; return;
} }
let arg: any = {}; let arg: any = {};
...@@ -593,7 +593,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -593,7 +593,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public handleAdd(){ public handleAdd(){
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKMEditView9' + (this.$t('app.multiEditView.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2MEditView9_layout' + (this.$t('app.multiEditView.notConfig.loaddraftAction') as string) });
return; return;
} }
const promice: Promise<any> = this.service.loadDraft(this.loaddraftAction,JSON.parse(JSON.stringify(this.context)),{viewparams:this.viewparams}, this.showBusyIndicator); const promice: Promise<any> = this.service.loadDraft(this.loaddraftAction,JSON.parse(JSON.stringify(this.context)),{viewparams:this.viewparams}, this.showBusyIndicator);
......
<template> <template>
<i-form :model="this.data" class='app-search-form' ref='searchform' style=""> <i-form :model="this.data" class='app-search-form' ref='quicksearchform' style="">
<input style="display:none;"/> <input style="display:none;"/>
<row> <row>
<i-col span="20" class="form-content"> <i-col span="20" class="form-content">
...@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
* @memberof QUICKSEARCHFORMBase * @memberof QUICKSEARCHFORMBase
*/ */
public formValidateStatus(): boolean { public formValidateStatus(): boolean {
const form: any = this.$refs.searchform; const form: any = this.$refs.quicksearchform;
let validatestate: boolean = true; let validatestate: boolean = true;
form.validate((valid: boolean) => { form.validate((valid: boolean) => {
validatestate = valid ? true : false; validatestate = valid ? true : false;
...@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}, isReset: boolean = false): Promise<any> { public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
...@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){ if(item.ibizbook){
......
...@@ -70,11 +70,6 @@ export default class Usr4Model { ...@@ -70,11 +70,6 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like', prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{ {
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
}, },
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPINDEXVIEWS/index.json", "dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPINDEXVIEWS/index.json",
"mOSFilePath" : "pssysapps/Web/psappindexviews/index", "mOSFilePath" : "pssysapps/Web/psappindexviews/index",
"mainMenuAlign" : "LEFT", "mainMenuAlign" : "TOP",
"name" : "index", "name" : "index",
"getPSAppModule" : { "getPSAppModule" : {
"modelref" : true, "modelref" : true,
......
...@@ -18334,7 +18334,7 @@ ...@@ -18334,7 +18334,7 @@
}, },
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPINDEXVIEWS/index.json", "dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPINDEXVIEWS/index.json",
"mOSFilePath" : "pssysapps/Web/psappindexviews/index", "mOSFilePath" : "pssysapps/Web/psappindexviews/index",
"mainMenuAlign" : "LEFT", "mainMenuAlign" : "TOP",
"name" : "index", "name" : "index",
"getPSAppModule" : { "getPSAppModule" : {
"modelref" : true, "modelref" : true,
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册