提交 42455ce3 编写于 作者: ibizdev's avatar ibizdev

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

上级 fc2c1d46
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
<template> <template>
<div class="view-container dempickupview ibizcustomer-intfmpickup-view"> <app-mpickup-view-layout class="view-container dempickupview ibizcustomer-intfmpickup-view">
<card class='view-card view-no-caption view-no-toolbar' :dis-hover="true" :padding="0" :bordered="false"> <template #headerTop>
<div class="content-container pickup-view"> </template>
<div class="translate-contant"> <template #contentTop>
</template>
<template #default>
<div class="translate-contant">
<div class="center" :style="{width : !isShowButton ? '100%' : ''}"> <div class="center" :style="{width : !isShowButton ? '100%' : ''}">
<view_pickupviewpanel <view_pickupviewpanel
:viewState="viewState" :viewState="viewState"
...@@ -21,21 +24,21 @@ ...@@ -21,21 +24,21 @@
</div> </div>
<div v-if="isShowButton" class="translate-buttons"> <div v-if="isShowButton" class="translate-buttons">
<div class="buttons"> <div class="buttons">
<i-button type="primary" :title="this.containerModel.view_rightbtn.text" <i-button type="primary" :title="containerModel.view_rightbtn.text"
:disabled="this.containerModel.view_rightbtn.disabled" :disabled="containerModel.view_rightbtn.disabled"
@click="onCLickRight"> @click="onCLickRight">
<i class="el-icon-arrow-right"></i> <i class="el-icon-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_leftbtn.text" <i-button type="primary" :title="containerModel.view_leftbtn.text"
:disabled="this.containerModel.view_leftbtn.disabled" :disabled="containerModel.view_leftbtn.disabled"
@click="onCLickLeft"> @click="onCLickLeft">
<i class="el-icon-arrow-left"></i> <i class="el-icon-arrow-left"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allrightbtn.text" <i-button type="primary" :title="containerModel.view_allrightbtn.text"
@click="onCLickAllRight"> @click="onCLickAllRight">
<i class="el-icon-d-arrow-right"></i> <i class="el-icon-d-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allleftbtn.text" <i-button type="primary" :title="containerModel.view_allleftbtn.text"
@click="onCLickAllLeft"> @click="onCLickAllLeft">
<i class="el-icon-d-arrow-left"></i> <i class="el-icon-d-arrow-left"></i>
</i-button> </i-button>
...@@ -49,16 +52,18 @@ ...@@ -49,16 +52,18 @@
</div> </div>
</div> </div>
</div> </div>
<card v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> </div>
<row :style="{ textAlign: 'right' }"> </template>
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <template #contentBottom>
&nbsp;&nbsp; </template>
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
</row> <row :style="{ textAlign: 'right' }">
</card> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
</div> &nbsp;&nbsp;
</card> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</div> </row>
</template>
</app-mpickup-view-layout>
</template> </template>
// 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成 // 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成
......
<template> <template>
<div class="view-container dempickupview ibizcustomer-mpickup-view"> <app-mpickup-view-layout class="view-container dempickupview ibizcustomer-mpickup-view">
<card class='view-card view-no-caption view-no-toolbar' :dis-hover="true" :padding="0" :bordered="false"> <template #headerTop>
<div class="content-container pickup-view"> </template>
<div class="translate-contant"> <template #contentTop>
</template>
<template #default>
<div class="translate-contant">
<div class="center" :style="{width : !isShowButton ? '100%' : ''}"> <div class="center" :style="{width : !isShowButton ? '100%' : ''}">
<view_pickupviewpanel <view_pickupviewpanel
:viewState="viewState" :viewState="viewState"
...@@ -21,21 +24,21 @@ ...@@ -21,21 +24,21 @@
</div> </div>
<div v-if="isShowButton" class="translate-buttons"> <div v-if="isShowButton" class="translate-buttons">
<div class="buttons"> <div class="buttons">
<i-button type="primary" :title="this.containerModel.view_rightbtn.text" <i-button type="primary" :title="containerModel.view_rightbtn.text"
:disabled="this.containerModel.view_rightbtn.disabled" :disabled="containerModel.view_rightbtn.disabled"
@click="onCLickRight"> @click="onCLickRight">
<i class="el-icon-arrow-right"></i> <i class="el-icon-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_leftbtn.text" <i-button type="primary" :title="containerModel.view_leftbtn.text"
:disabled="this.containerModel.view_leftbtn.disabled" :disabled="containerModel.view_leftbtn.disabled"
@click="onCLickLeft"> @click="onCLickLeft">
<i class="el-icon-arrow-left"></i> <i class="el-icon-arrow-left"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allrightbtn.text" <i-button type="primary" :title="containerModel.view_allrightbtn.text"
@click="onCLickAllRight"> @click="onCLickAllRight">
<i class="el-icon-d-arrow-right"></i> <i class="el-icon-d-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allleftbtn.text" <i-button type="primary" :title="containerModel.view_allleftbtn.text"
@click="onCLickAllLeft"> @click="onCLickAllLeft">
<i class="el-icon-d-arrow-left"></i> <i class="el-icon-d-arrow-left"></i>
</i-button> </i-button>
...@@ -49,16 +52,18 @@ ...@@ -49,16 +52,18 @@
</div> </div>
</div> </div>
</div> </div>
<card v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> </div>
<row :style="{ textAlign: 'right' }"> </template>
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <template #contentBottom>
&nbsp;&nbsp; </template>
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
</row> <row :style="{ textAlign: 'right' }">
</card> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
</div> &nbsp;&nbsp;
</card> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</div> </row>
</template>
</app-mpickup-view-layout>
</template> </template>
// 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成 // 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
<template> <template>
<div class="view-container dempickupview ibizcustomer-usr2-mpickup-view"> <app-mpickup-view-layout class="view-container dempickupview ibizcustomer-usr2-mpickup-view">
<card class='view-card view-no-caption view-no-toolbar' :dis-hover="true" :padding="0" :bordered="false"> <template #headerTop>
<div class="content-container pickup-view"> </template>
<div class="translate-contant"> <template #contentTop>
</template>
<template #default>
<div class="translate-contant">
<div class="center" :style="{width : !isShowButton ? '100%' : ''}"> <div class="center" :style="{width : !isShowButton ? '100%' : ''}">
<view_pickupviewpanel <view_pickupviewpanel
:viewState="viewState" :viewState="viewState"
...@@ -21,21 +24,21 @@ ...@@ -21,21 +24,21 @@
</div> </div>
<div v-if="isShowButton" class="translate-buttons"> <div v-if="isShowButton" class="translate-buttons">
<div class="buttons"> <div class="buttons">
<i-button type="primary" :title="this.containerModel.view_rightbtn.text" <i-button type="primary" :title="containerModel.view_rightbtn.text"
:disabled="this.containerModel.view_rightbtn.disabled" :disabled="containerModel.view_rightbtn.disabled"
@click="onCLickRight"> @click="onCLickRight">
<i class="el-icon-arrow-right"></i> <i class="el-icon-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_leftbtn.text" <i-button type="primary" :title="containerModel.view_leftbtn.text"
:disabled="this.containerModel.view_leftbtn.disabled" :disabled="containerModel.view_leftbtn.disabled"
@click="onCLickLeft"> @click="onCLickLeft">
<i class="el-icon-arrow-left"></i> <i class="el-icon-arrow-left"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allrightbtn.text" <i-button type="primary" :title="containerModel.view_allrightbtn.text"
@click="onCLickAllRight"> @click="onCLickAllRight">
<i class="el-icon-d-arrow-right"></i> <i class="el-icon-d-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allleftbtn.text" <i-button type="primary" :title="containerModel.view_allleftbtn.text"
@click="onCLickAllLeft"> @click="onCLickAllLeft">
<i class="el-icon-d-arrow-left"></i> <i class="el-icon-d-arrow-left"></i>
</i-button> </i-button>
...@@ -49,16 +52,18 @@ ...@@ -49,16 +52,18 @@
</div> </div>
</div> </div>
</div> </div>
<card v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> </div>
<row :style="{ textAlign: 'right' }"> </template>
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <template #contentBottom>
&nbsp;&nbsp; </template>
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
</row> <row :style="{ textAlign: 'right' }">
</card> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
</div> &nbsp;&nbsp;
</card> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</div> </row>
</template>
</app-mpickup-view-layout>
</template> </template>
// 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成 // 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
<template> <template>
<div class="view-container dempickupview ibizsample0002-mpickup-view"> <app-mpickup-view-layout class="view-container dempickupview ibizsample0002-mpickup-view">
<card class='view-card view-no-caption view-no-toolbar' :dis-hover="true" :padding="0" :bordered="false"> <template #headerTop>
<div class="content-container pickup-view"> </template>
<div class="translate-contant"> <template #contentTop>
</template>
<template #default>
<div class="translate-contant">
<div class="center" :style="{width : !isShowButton ? '100%' : ''}"> <div class="center" :style="{width : !isShowButton ? '100%' : ''}">
<view_pickupviewpanel <view_pickupviewpanel
:viewState="viewState" :viewState="viewState"
...@@ -21,21 +24,21 @@ ...@@ -21,21 +24,21 @@
</div> </div>
<div v-if="isShowButton" class="translate-buttons"> <div v-if="isShowButton" class="translate-buttons">
<div class="buttons"> <div class="buttons">
<i-button type="primary" :title="this.containerModel.view_rightbtn.text" <i-button type="primary" :title="containerModel.view_rightbtn.text"
:disabled="this.containerModel.view_rightbtn.disabled" :disabled="containerModel.view_rightbtn.disabled"
@click="onCLickRight"> @click="onCLickRight">
<i class="el-icon-arrow-right"></i> <i class="el-icon-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_leftbtn.text" <i-button type="primary" :title="containerModel.view_leftbtn.text"
:disabled="this.containerModel.view_leftbtn.disabled" :disabled="containerModel.view_leftbtn.disabled"
@click="onCLickLeft"> @click="onCLickLeft">
<i class="el-icon-arrow-left"></i> <i class="el-icon-arrow-left"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allrightbtn.text" <i-button type="primary" :title="containerModel.view_allrightbtn.text"
@click="onCLickAllRight"> @click="onCLickAllRight">
<i class="el-icon-d-arrow-right"></i> <i class="el-icon-d-arrow-right"></i>
</i-button> </i-button>
<i-button type="primary" :title="this.containerModel.view_allleftbtn.text" <i-button type="primary" :title="containerModel.view_allleftbtn.text"
@click="onCLickAllLeft"> @click="onCLickAllLeft">
<i class="el-icon-d-arrow-left"></i> <i class="el-icon-d-arrow-left"></i>
</i-button> </i-button>
...@@ -49,16 +52,18 @@ ...@@ -49,16 +52,18 @@
</div> </div>
</div> </div>
</div> </div>
<card v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> </div>
<row :style="{ textAlign: 'right' }"> </template>
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <template #contentBottom>
&nbsp;&nbsp; </template>
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
</row> <row :style="{ textAlign: 'right' }">
</card> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
</div> &nbsp;&nbsp;
</card> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</div> </row>
</template>
</app-mpickup-view-layout>
</template> </template>
// 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成 // 基于 @VIEW/实体数据多项选择视图/VIEW-BASE.vue.ftl 生成
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
</template> </template>
<template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <template #footer v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer">
<row :style="{ textAlign: 'right' }"> <row :style="{ textAlign: 'right' }">
<i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button type="primary" :disabled="viewSelections.length > 0 ? false : true" @click="onClickOk">{{containerModel.view_okbtn.text}}</i-button>
&nbsp;&nbsp; &nbsp;&nbsp;
<i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> <i-button @click="onClickCancel">{{containerModel.view_cancelbtn.text}}</i-button>
</row> </row>
</template> </template>
</app-pickup-view-layout> </app-pickup-view-layout>
......
...@@ -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_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (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_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -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: 'IBIZBOOKListView' + (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: 'IBIZBOOKListView' + (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 } ;
......
...@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) { if (!this.fetchAction) {
this.$Notice.error({ this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string, title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string), desc: "IBIZOrderDetailSGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
}); });
return; return;
} }
...@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) { if (!this.removeAction) {
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string) desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
}); });
return; return;
} }
...@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public addBatch(arg: any = {}): void { public addBatch(arg: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(!arg){ if(!arg){
...@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2082,7 +2082,7 @@ export default class MainBase 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: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2091,7 +2091,7 @@ export default class MainBase 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: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string) desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
}); });
return; return;
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册