Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
8c498094
提交
8c498094
编写于
12月 21, 2020
作者:
tony001
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev'
上级
bdb5a1ee
dd819706
变更
9
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
50 行增加
和
12 行删除
+50
-12
CONTROL-BASE.vue.ftl
@CONTROL/列表/CONTROL-BASE.vue.ftl
+11
-5
CONTROL.html.ftl
@CONTROL/列表/CONTROL.html.ftl
+1
-1
CONTROL-BASE.vue.ftl
@CONTROL/列表导航/CONTROL-BASE.vue.ftl
+9
-0
CONTROL-BASE.vue.ftl
@CONTROL/看板视图/CONTROL-BASE.vue.ftl
+3
-3
CONTROL.less.ftl
@CONTROL/看板视图/CONTROL.less.ftl
+6
-1
LIST_VIEW.vue.ftl
@VIEW/@MACRO/LIST_VIEW.vue.ftl
+8
-0
VIEW-BASE.vue.ftl
@VIEW/实体列表视图(部件视图)/VIEW-BASE.vue.ftl
+8
-0
en-US-base.ts.ftl
APP/src/locale/lang/en-US-base.ts.ftl
+2
-1
zh-CN-base.ts.ftl
APP/src/locale/lang/zh-CN-base.ts.ftl
+2
-1
未找到文件。
@CONTROL/列表/CONTROL-BASE.vue.ftl
浏览文件 @
8c498094
...
...
@@ -213,12 +213,12 @@ import CodeListService from "@/codelist/codelist-service";
@Prop() public fetchAction!: string;
/**
*
是否单选
*
父引用类型
*
* @type {boolean}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
@Prop({default:true}) public
isSingleSelect?: boolean
;
@Prop({default:true}) public
parentType: any;
;
<#if view.getPSAppViewLogics?? && view.getPSAppViewLogics()??>
<#list view.getPSAppViewLogics() as logic>
...
...
@@ -918,11 +918,17 @@ import CodeListService from "@/codelist/codelist-service";
*
*/
public handleClick(args: any) {
// this.clearSelection();
if(this.isSingleSelect){
if(this.parentType && this.parentType === "listExpBar") {
const flag = args.isselected;
this.clearSelection();
if(!flag) {
args.isselected = !args.isselected;
} else {
args.isselected = flag;
}
} else {
args.isselected = !args.isselected;
}
args.isselected = !args.isselected;
this.selectchange();
}
...
...
@CONTROL/列表/CONTROL.html.ftl
浏览文件 @
8c498094
...
...
@@ -8,7 +8,7 @@
<#if view.getViewType() == 'DELISTEXPVIEW'>
:isSelectFirstDefault="true"
</#if>
:
isSingleSelect="isSingleSelect
"
:
parentType="controlType
"
<#if view.getPSAppViewLogics?? && view.getPSAppViewLogics()??>
<#list view.getPSAppViewLogics() as logic>
<#if logic.getPFLogicCodeType() == 'APP_NEWDATA'>
...
...
@CONTROL/列表导航/CONTROL-BASE.vue.ftl
浏览文件 @
8c498094
...
...
@@ -173,6 +173,15 @@ import ${srfclassname('${appCounter.getCodeName()}')}CounterService from '@/co
*/
public searchText:string = "";
/**
* 部件类型
*
* @public
* @type {(string)}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public controlType: string = "listExpBar";
/**
* 分割宽度
*
...
...
@CONTROL/看板视图/CONTROL-BASE.vue.ftl
浏览文件 @
8c498094
...
...
@@ -21,12 +21,12 @@ ${ctrl.render.code}
</div>
</div>
</draggable>
<div :key="group + index" class="dataview-group-content dataview-group-kanban" style="<#if ctrl.getGroupWidth() gt 0>width: ${ctrl.getGroupWidth()?c}px;<#else>flex-grow: 1;</#if>">
<div
v-show="group.folding"
:key="group + index" class="dataview-group-content dataview-group-kanban" style="<#if ctrl.getGroupWidth() gt 0>width: ${ctrl.getGroupWidth()?c}px;<#else>flex-grow: 1;</#if>">
<div class="dataview-group-header<#if ctrl.getGroupPSSysCss()??> ${ctrl.getGroupPSSysCss().getCssName()}</#if>">
<div class="fold-icon" @click="onClick(group,index)">
<i class="el-icon-s-fold" :title="$t('app.kanban.fold')"></i>
</div>
<span>
<span
class="fold-text"
>
{{ getGroupText(group.value) }}
</span>
<#if ctrl.getGroupPSUIActionGroup()??>
...
...
@@ -53,7 +53,7 @@ ${ctrl.render.code}
</Poptip>
</#if>
</div>
<draggable
v-show="group.folding"
:list="group.items" group="${ctrl.name}" class="dataview-group-items" @change="onDragChange($event, group.value)">
<draggable :list="group.items" group="${ctrl.name}" class="dataview-group-items" @change="onDragChange($event, group.value)">
<div v-for="(item, i) in group.items" :key="i" :class="{'dataview-group-item': true, 'is-select': item.isselected}" @click="handleClick(item)" @dblclick="handleDblClick(item)">
<#if ctrl.getItemPSLayoutPanel()??>
<#assign panel = ctrl.getItemPSLayoutPanel()>
...
...
@CONTROL/看板视图/CONTROL.less.ftl
浏览文件 @
8c498094
...
...
@@ -10,7 +10,6 @@
width: 40px;
background-color: #d8d8d8;
color: #a5a5a5;
display: none;
.unfold-icon {
padding: 3px 0;
font-size: 20px;
...
...
@@ -39,6 +38,9 @@
color:#a5a5a5;
position: absolute;
}
.fold-text {
margin-left: 24px;
}
.group-action {
.group-action-item:nth-child(1) + .group-action-item {
margin-top: 5px;
...
...
@@ -90,6 +92,9 @@
border: none !important;
padding: 0px !important;
height: 0px !important;
width: 10px !important;
color: #fff;
overflow: hidden;
.app-layoutpanel {
.app-layoutpanel-container {
padding: 0px !important;
...
...
@VIEW/@MACRO/LIST_VIEW.vue.ftl
浏览文件 @
8c498094
...
...
@@ -30,6 +30,14 @@ import ${srfclassname('${appCounter.getCodeName()}')}CounterService from '@/co
*/
public query: string = '';
/**
* 视图类型
*
* @type {string}
* @memberof ${srfclassname('${view.name}')}
*/
public controlType: string = "view";
/**
* 是否展开搜索表单
*
...
...
@VIEW/实体列表视图(部件视图)/VIEW-BASE.vue.ftl
浏览文件 @
8c498094
...
...
@@ -45,6 +45,14 @@
*/
protected query: string = '';
/**
* 视图类型
*
* @type {string}
* @memberof ${srfclassname('${view.name}')}
*/
public controlType: string = "view";
/**
* 是否展开搜索表单
*
...
...
APP/src/locale/lang/en-US-base.ts.ftl
浏览文件 @
8c498094
...
...
@@ -36,7 +36,8 @@ function getAppLocale(){
startsuccess:"Start successful",
loadmore:"Load more",
nomore:"No more",
other:"other"
other:"other",
valueNotEmpty:"The value cannot be null",
},
local:{
new: "New",
...
...
APP/src/locale/lang/zh-CN-base.ts.ftl
浏览文件 @
8c498094
...
...
@@ -36,7 +36,8 @@ function getAppLocale(){
startsuccess:"启动成功",
loadmore:"加载更多",
nomore:"没有更多了",
other:"其他"
other:"其他",
valueNotEmpty:"值不能为空",
},
local:{
new: "新建",
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录