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

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

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