CONTROL-BASE.vue.ftl 31.5 KB
Newer Older
1 2 3
<#ibizinclude>
../@MACRO/CONTROL/LANGBASE.vue.ftl
</#ibizinclude>
4
<template>  
5
<#if ctrl.getBatchPSDEToolbar?? && ctrl.getBatchPSDEToolbar()??>
6
<div>
7
</#if>
8
    <div :class="['app-list',<#if ctrl.getPSSysCss?? && ctrl.getPSSysCss()??><#assign singleCss = ctrl.getPSSysCss()>'${singleCss.getCssName()}',</#if>this.items.length > 0 ? '' : 'app-list-empty' ]">
tony001's avatar
tony001 committed
9
        <div v-if="items.length > 0">
10 11
<#if ctrl.render??>
            ${ctrl.render.code}
Shine-zwj's avatar
Shine-zwj committed
12
<#elseif ctrl.isEnableGroup?? && !ctrl.isEnableGroup()>                 
tony001's avatar
tony001 committed
13
            <div v-for = "item in items" :key="item.srfkey"  :class="['app-list-item', {'isSelect': item.isselected === true ? true : false}]" @click="handleClick(item)"  @dblclick="handleDblClick(item)">
14 15 16 17 18 19 20 21
  <#if ctrl.getItemPSLayoutPanel()??>
    <#assign panel = ctrl.getItemPSLayoutPanel()>
                <@ibizindent blank=16>
                ${P.getCtrlCode(panel, 'CONTROL.html').code}
                </@ibizindent>
  <#elseif ctrl.itemRender??>
                ${ctrl.itemRender.code}
  <#else>
22 23 24 25
                <div class="app-list-item-content">{{item.srfmajortext}}</div>
                <div calss="app-list-item-action">
                    <template v-for="(action,index) in Object.keys(ActionModel)">
                        <a :key="index" style="display: inline-block;margin: 0 12px;" @click="uiAction(item, action, $event)">
26
                            <i :class="ActionModel[action].icon" style="margin-right:2px;"></i>
27 28 29 30
                            <span>{{ActionModel[action].caption}}</span>
                        </a>
                    </template>
                </div>
31
  </#if>
32
            </div>
Shine-zwj's avatar
Shine-zwj committed
33
<#elseif ctrl.isEnableGroup?? && ctrl.isEnableGroup()>
Shine-zwj's avatar
Shine-zwj committed
34
            <el-collapse>
35 36 37 38
               <el-collapse-item v-for="(group,index) in groupData" :key="index">
                    <template slot="title">
                    <div style="margin: 0 0 0 12px;"><b>{{group.group}}</b></div>
                    </template>
39
                    <div v-if="group.children.length > 0" style="margin: 0 0 0 32px;">
Shine-zwj's avatar
Shine-zwj committed
40 41 42 43 44 45 46 47 48
                        <div v-for="item in group.children" :key="item.srfkey"  :class="['app-list-item', {'isSelect': item.isselected === true ? true : false}]" @click="handleClick(item)"  @dblclick="handleDblClick(item)">
                        <#if ctrl.getItemPSLayoutPanel()??>
                            <#assign panel = ctrl.getItemPSLayoutPanel()>
                                <@ibizindent blank=16>
                                ${P.getCtrlCode(panel, 'CONTROL.html').code}
                                </@ibizindent>
                        <#elseif ctrl.itemRender??>
                                ${ctrl.itemRender.code}
                        <#else>
49 50 51 52 53 54 55 56 57
                                <div class="app-list-item-content">{{item.srfmajortext}}</div>
                                <div calss="app-list-item-action">
                                    <template v-for="(action,index) in Object.keys(ActionModel)">
                                        <a :key="index" style="display: inline-block;margin: 0 12px;" @click="uiAction(item, action, $event)">
                                            <i :class="ActionModel[action].icon" style="margin-right:2px;"></i>
                                            <span>{{ActionModel[action].caption}}</span>
                                        </a>
                                    </template>
                                </div>
Shine-zwj's avatar
Shine-zwj committed
58 59 60
                        </#if>
                        </div>
                    </div>
61
                    <div v-else style="text-align: center;">
62
                        {{ $t('<#if langbase??>${langbase}.nodata</#if>') }}
Shine-zwj's avatar
Shine-zwj committed
63 64 65
                    </div>
                </el-collapse-item>
            </el-collapse>
66
</#if>
67
            <template v-if="isScrollBar">
Mosher's avatar
Mosher committed
68 69
            <div v-if="totalRecord>items.length" class="loadmore">{{ this.$t('app.commonWords.loadmore') }}</div>
            <div v-else class="loadmore">{{ this.$t('app.commonWords.nomore') }}</div>
70
            </template>
71 72
        </div>
        <div v-else>
73
            {{ $t('<#if langbase??>${langbase}.nodata</#if>') }}
74 75 76 77 78 79 80 81
            <#if ctrl.getQuickPSDEToolbar?? && ctrl.getQuickPSDEToolbar()??>
            <span class="quick-toolbar">
                <#assign quickToolbar = ctrl.getQuickPSDEToolbar()/>
                <@ibizindent blank=12>
                ${P.getCtrlCode(quickToolbar, 'CONTROL.html').code}
                </@ibizindent>
            </span>
            </#if>
82
        </div>
83
        <el-backtop target=".content-container .app-list"></el-backtop>
84
    </div>
85 86 87 88 89 90 91 92 93 94 95
<#if ctrl.getBatchPSDEToolbar?? && ctrl.getBatchPSDEToolbar()??>
    <row class='list-pagination' v-if="selections.length > 0">
        <span class="batch-toolbar">
          <#assign batchToolbar = ctrl.getBatchPSDEToolbar()/>
          <@ibizindent blank=12>
        ${P.getCtrlCode(batchToolbar, 'CONTROL.html').code}
          </@ibizindent>
        </span>
    </row>
</div>
</#if>
96
</template>
Shine-zwj's avatar
Shine-zwj committed
97
<#assign import_block>
98
import CodeListService from "@/codelist/codelist-service";
Shine-zwj's avatar
Shine-zwj committed
99
</#assign>
100 101 102 103 104 105 106 107
<#ibizinclude>
../@MACRO/CONTROL/CONTROL_HEADER-BASE.vue.ftl
</#ibizinclude>

    /**
     * 获取多项数据
     *
     * @returns {any[]}
KK's avatar
KK committed
108
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
109 110 111 112 113 114 115 116 117
     */
    public getDatas(): any[] {
        return this.selections;
    }

    /**
     * 获取单项树
     *
     * @returns {*}
KK's avatar
KK committed
118
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
119 120 121 122 123 124 125 126 127
     */
    public getData(): any {
        return null;
    }

    /**
     * 是否默认选中第一条数据
     *
     * @type {boolean}
KK's avatar
KK committed
128
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
129
     */
130
    @Prop({ default: false }) public isSelectFirstDefault!: boolean;
131 132 133 134 135

    /**
     * 显示处理提示
     *
     * @type {boolean}
KK's avatar
KK committed
136
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
137
     */
138
    @Prop({ default: true }) public showBusyIndicator?: boolean;
139 140 141 142 143

    /**
     * 部件行为--create
     *
     * @type {string}
KK's avatar
KK committed
144
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
145
     */
146
    @Prop() public createAction!: string;
147 148 149 150 151

    /**
     * 部件行为--remove
     *
     * @type {string}
KK's avatar
KK committed
152
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
153
     */
154
    @Prop() public removeAction!: string;
155 156 157 158 159

    /**
     * 部件行为--update
     *
     * @type {string}
KK's avatar
KK committed
160
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
161
     */
162
    @Prop() public updateAction!: string;
163 164 165 166 167

    /**
     * 部件行为--fetch
     *
     * @type {string}
KK's avatar
KK committed
168
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
169
     */
170
    @Prop() public fetchAction!: string;
171

tony001's avatar
tony001 committed
172 173 174 175 176 177 178
<#if view.getPSAppViewLogics?? && view.getPSAppViewLogics()??>
  <#list view.getPSAppViewLogics() as logic>
    <#if logic.getPFLogicCodeType() == 'APP_NEWDATA'>
    /**
     * 打开新建数据视图
     *
     * @type {any}
KK's avatar
KK committed
179
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
tony001's avatar
tony001 committed
180 181 182 183 184 185 186 187
     */
    @Prop() public newdata: any;
    </#if>
    <#if logic.getPFLogicCodeType() == 'APP_OPENDATA'>
    /**
     * 打开编辑数据视图
     *
     * @type {any}
KK's avatar
KK committed
188
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
tony001's avatar
tony001 committed
189 190 191 192 193 194 195 196 197 198
     */
    @Prop() public opendata: any;
    </#if>
  </#list>
</#if>

    /**
     * this引用
     *
     * @type {number}
KK's avatar
KK committed
199
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
tony001's avatar
tony001 committed
200 201 202
     */
    public thisRef: any = this;

Shine-zwj's avatar
Shine-zwj committed
203
<#if ctrl.isEnableGroup?? && ctrl.isEnableGroup()>
Shine-zwj's avatar
Shine-zwj committed
204 205 206 207 208 209
    /**
     * 分组属性
     * 
     * @type {string}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
210 211 212 213 214 215 216 217 218
    public groupField: string = "<#if ctrl.getGroupPSDEField?? && ctrl.getGroupPSDEField()??>${ctrl.getGroupPSDEField().getCodeName()?lower_case}</#if>";

    /**
     * 分组数据
     * 
     * @type {Array<any>}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public groupData: Array<any> = [];
219

220 221 222 223 224 225
    /**
     * 分组模式
     * 
     * @type {string}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
226
    public groupMode: string = "<#if ctrl.getGroupMode?? && ctrl.getGroupMode()??>${ctrl.getGroupMode()}</#if>";
227

228 229 230 231 232 233
    /**
     * 分组方法
     * 
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public group(){
234 235 236 237 238 239
        let _this:any = this;
        if(_this.drawGroup && _this.drawGroup instanceof Function && Object.is(_this.groupMode,"AUTO")){
            _this.drawGroup();
        }else if(_this.drawCodelistGroup && _this.drawCodelistGroup instanceof Function && Object.is(_this.groupMode,"CODELIST")){
            _this.drawCodelistGroup();
        }
240
    }
Shine-zwj's avatar
Shine-zwj committed
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
</#if>

<#if ctrl.getGroupMode?? && ctrl.getGroupMode() == 'CODELIST'>
    /**
     * 代码表服务对象
     *
     * @type {CodeListService}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */  
    public codeListService:CodeListService = new CodeListService({ $store: this.$store });

    /**
     * 分组代码表标识
     * 
     * @type {string}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public tag: string = "<#if ctrl.getGroupPSCodeList?? && ctrl.getGroupPSCodeList()??>${ctrl.getGroupPSCodeList().getCodeName()}</#if>";

    /**
     * 分组代码表类型
     * 
     * @type {string}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public codelistType: string = "<#if ctrl.getGroupPSCodeList?? && ctrl.getGroupPSCodeList()??>${ctrl.getGroupPSCodeList().getCodeListType()}</#if>";

    /**
     * 根据分组代码表绘制分组列表
     * 
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public async drawCodelistGroup(){
        let groups: Array<any> = [];
        let groupTree:Array<any> = [];
        let data:Array<any> = [...this.items];
        // 动态代码表
        if (Object.is(this.codelistType, "DYNAMIC")) {
            groups = await this.codeListService.getItems(this.tag);
        // 静态代码表
        } else if(Object.is(this.codelistType, "STATIC")){
282
            groups = this.$store.getters.getCodeListItems(this.tag);
Shine-zwj's avatar
Shine-zwj committed
283
        }
284 285 286
        if(groups.length == 0){
            console.warn("分组数据无效");
        }
Shine-zwj's avatar
Shine-zwj committed
287 288 289
        groups.forEach((group: any,i: number)=>{
            let children:Array<any> = [];
            data.forEach((item: any,j: number)=>{
290
                if(Object.is(group.label,item[this.groupField])){
Shine-zwj's avatar
Shine-zwj committed
291 292 293 294
                    children.push(item);
                }
            });
            const tree: any ={
Shine-zwj's avatar
Shine-zwj committed
295
                group: group.label,
Shine-zwj's avatar
Shine-zwj committed
296 297 298 299 300 301
                children: children
            }
            groupTree.push(tree);
        });
        let child:Array<any> = [];
        data.forEach((item: any)=>{
302
            let i = groups.findIndex((group: any)=>Object.is(group.label,item[this.groupField]));
Shine-zwj's avatar
Shine-zwj committed
303 304 305 306 307 308 309 310
            if(i < 0){
                child.push(item);
            }
        })
        const Tree: any = {
            group: this.$t('app.commonWords.other'),
            children: child
        }
311 312 313
        if(child && child.length > 0){
            groupTree.push(Tree);
        }
314
        this.groupData = [...groupTree];
Shine-zwj's avatar
Shine-zwj committed
315 316 317 318 319 320 321 322 323 324 325 326 327
    }
</#if>

<#if ctrl.getGroupMode?? && ctrl.getGroupMode() == 'AUTO'>
    /**
     * 绘制分组列表
     * 
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public drawGroup(){
        let data:Array<any> = [...this.items];
        let groups:Array<any> = [];
        data.forEach((item: any)=>{
328 329
            if(item.hasOwnProperty(this.groupField)){
                groups.push(item[this.groupField]);
Shine-zwj's avatar
Shine-zwj committed
330 331 332
            }
        });
        groups = [...new Set(groups)];
333 334 335
        if(groups.length == 0){
            console.warn("分组数据无效");
        }
Shine-zwj's avatar
Shine-zwj committed
336 337 338 339
        let groupTree:Array<any> = [];
        groups.forEach((group: any,i: number)=>{
            let children:Array<any> = [];
            data.forEach((item: any,j: number)=>{
340
                if(Object.is(group,item[this.groupField])){
Shine-zwj's avatar
Shine-zwj committed
341 342 343
                    children.push(item);
                }
            });
344
            group = group ? group : this.$t('app.commonWords.other');
Shine-zwj's avatar
Shine-zwj committed
345 346 347 348 349 350
            const tree: any ={
                group: group,
                children: children
            }
            groupTree.push(tree);
        });
351
        this.groupData = [...groupTree];
Shine-zwj's avatar
Shine-zwj committed
352 353 354
    }
</#if>

355 356 357 358 359 360 361 362 363 364
    <#if ctrl.getQuickPSDEToolbar?? && ctrl.getQuickPSDEToolbar()??>
      <#assign quickToolbar = ctrl.getQuickPSDEToolbar()/>
      ${P.getCtrlCode(quickToolbar, 'CONTROL.vue').code}
    </#if>

    <#if ctrl.getBatchPSDEToolbar?? && ctrl.getBatchPSDEToolbar()??>
      <#assign batchToolbar = ctrl.getBatchPSDEToolbar()/>
      ${P.getCtrlCode(batchToolbar, 'CONTROL.vue').code}
    </#if>

365 366 367 368
    /**
     * 当前页
     *
     * @type {number}
KK's avatar
KK committed
369
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
370
     */
371
    public curPage: number = 1;
372 373 374 375 376

    /**
     * 数据
     *
     * @type {any[]}
KK's avatar
KK committed
377
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
378
     */
379
    public items: any[] = [];
380 381 382 383 384

    /**
     * 是否支持分页
     *
     * @type {boolean}
KK's avatar
KK committed
385
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
386
     */
387
    public isEnablePagingBar: boolean = true;
388 389 390 391 392

    /**
     * 分页条数
     *
     * @type {number}
KK's avatar
KK committed
393
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
394
     */
tony001's avatar
tony001 committed
395
    public limit: number = ${ctrl.getPagingSize()?c};
396 397 398 399 400

    /**
     * 总条数
     *
     * @type {number}
KK's avatar
KK committed
401
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
402
     */
403
    public totalRecord: number = 0;
404

tony001's avatar
tony001 committed
405 406 407 408
    /**
     * 加载的数据是否附加在items之后
     *
     * @type {boolean}
KK's avatar
KK committed
409
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
tony001's avatar
tony001 committed
410 411 412
     */
    public isAddBehind:boolean = false;

413 414 415 416 417 418 419 420
    /**
     * 是否有滚动条
     *
     * @type {boolean}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public isScrollBar: boolean = false;

421 422 423 424
    /**
     * 排序方向
     *
     * @type {string}
KK's avatar
KK committed
425
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
426 427 428 429 430 431 432
     */    
    public sortDir:string = '<#if ctrl.getMinorSortDir()??>${ctrl.getMinorSortDir()?lower_case}</#if>';

    /**
     * 排序字段
     *
     * @type {string}
KK's avatar
KK committed
433
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
434 435 436
     */    
    public sortField: string = '<#if ctrl.getMinorSortPSDEF()??>${ctrl.getMinorSortPSDEF().getCodeName()?lower_case}</#if>';

437 438 439
    /**
     * 选中数组
     * @type {Array<any>}
KK's avatar
KK committed
440
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
441
     */
442
    public selections: Array<any> = [];
443

444 445 446 447 448 449 450 451 452
    /**
     * 应用状态事件
     *
     * @public
     * @type {(Subscription | undefined)}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public appStateEvent: Subscription | undefined;

453 454 455
     /**
     * Vue声明周期,组件挂载完毕
     *
KK's avatar
KK committed
456
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
457
     */
458
    public mounted () {
459 460 461 462 463 464
        this.afterMounted();
    }

    /**
     * 执行mounted后的逻辑
     *
KK's avatar
KK committed
465
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
466
     */
467
    public afterMounted () {
tony001's avatar
tony001 committed
468
        const loadMoreCallBack:any = this.throttle(this.loadMore,3000);
469
        this.$el.addEventListener('scroll', ()=> {
470
            if(this.$el.scrollHeight > this.$el.clientHeight) {
471
                this.isScrollBar = true;
472
            } else {
473
                this.isScrollBar = false;
474
            }
475
            if( this.$el.scrollTop +  this.$el.clientHeight  >=  this.$el.scrollHeight) {
tony001's avatar
tony001 committed
476
                loadMoreCallBack();
477 478 479 480 481 482 483
            }
        })
    }

    /**
     * Vue声明周期,组件创建完毕
     *
KK's avatar
KK committed
484
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
485
     */
486
    public created() {
487 488 489 490 491 492
        this.afterCreated()
    }

    /**
     * 执行created后的逻辑
     *
KK's avatar
KK committed
493
     *  @memberof ${srfclassname('${ctrl.codeName}')}Base
494
     */    
495
    public afterCreated(){
496 497 498 499 500
        if (this.viewState) {
            this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => {
                if (!Object.is(this.name, tag)) {
                    return;
                }
501
                if (Object.is(action,'load')) {
tony001's avatar
tony001 committed
502 503 504 505 506 507
                    this.curPage = 1;
                    this.items = [];
                    this.load(data);
                }
                if (Object.is(action,'refresh')) {
                    this.refresh(data);
508 509 510
                }
            });
        }
511 512 513 514 515 516 517 518 519 520
        if(AppCenterService && AppCenterService.getMessageCenter()){
            this.appStateEvent = AppCenterService.getMessageCenter().subscribe(({ name, action, data }) =>{
                if(!Object.is(name,"${ctrl.getPSAppDataEntity().getCodeName()}")){
                    return;
                }
                if(Object.is(action,'appRefresh')){
                    this.refresh([data]);
                }
            })
        }
521 522 523 524 525
    }    

    /**
     * vue 生命周期
     *
KK's avatar
KK committed
526
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
527
     */
528
    public destroyed() {
529 530 531 532 533 534
        this.afterDestroy();
    }

    /**
     * 执行destroyed后的逻辑
     *
KK's avatar
KK committed
535
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
536
     */
537
    public afterDestroy() {
538 539 540
        if (this.viewStateEvent) {
            this.viewStateEvent.unsubscribe();
        }
541 542 543
        if(this.appStateEvent){
            this.appStateEvent.unsubscribe();
        }
544 545 546 547 548 549 550 551
        <#if destroyed_block??>
        ${destroyed_block}
        </#if>
    }    

    /**
    * 加载更多
    *
KK's avatar
KK committed
552
    * @memberof ${srfclassname('${ctrl.codeName}')}Base
553
    */
554
    public loadMore(){
tony001's avatar
tony001 committed
555
        if(this.totalRecord>this.items.length){
556
            this.curPage = ++this.curPage;
tony001's avatar
tony001 committed
557
            this.isAddBehind = true;
558 559 560 561 562 563 564
            this.load({});
        }
    }

    /**
     * 刷新
     *
565
     * @param {*} [args={}]
566 567
     * @memberof Main
     */
568
    public refresh(args?: any) {
tony001's avatar
tony001 committed
569
        this.isAddBehind = true;
570
        this.load(args);
571 572 573 574 575
    }

    /**
     * 列表数据加载
     *
576
     * @public
577
     * @param {*} [arg={}]
KK's avatar
KK committed
578
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
579
     */
580
    public load(opt: any = {}): void {
581
        if(!this.fetchAction){
Mosher's avatar
Mosher committed
582
            this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.fetchAction') as string) });
583 584 585 586 587 588 589
            return;
        }        
        const arg: any = {...opt};
        const page: any = {};
        if (this.isEnablePagingBar) {
            Object.assign(page, { page: this.curPage-1, size: this.limit });
        }
590 591 592 593 594
        // 设置排序
        if (!Object.is(this.sortDir, '') && !Object.is(this.sortField, '')) {
          const sort: string = this.sortField+","+this.sortDir;
            Object.assign(page, { sort: sort });
        }
595 596 597 598
        Object.assign(arg, page);
        const parentdata: any = {};
        this.$emit('beforeload', parentdata);
        Object.assign(arg, parentdata);
599
        let tempViewParams:any = parentdata.viewparams?parentdata.viewparams:{};
tony001's avatar
tony001 committed
600 601 602
        if(this.viewparams){
            Object.assign(tempViewParams,JSON.parse(JSON.stringify(this.viewparams)));
        }
603
        Object.assign(arg,{viewparams:tempViewParams});
604 605 606 607
        const post: Promise<any> = this.service.search(this.fetchAction, this.context?JSON.parse(JSON.stringify(this.context)):{}, arg, this.showBusyIndicator);
        post.then((response: any) => {
            if (!response || response.status !== 200) {
                if (response.errorMessage) {
Mosher's avatar
Mosher committed
608
                    this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: response.errorMessage });
609 610 611 612
                }
                return;
            }
            const data: any = response.data;
tony001's avatar
tony001 committed
613 614 615
            if(!this.isAddBehind){
                this.items = [];
            }
tony001's avatar
tony001 committed
616
            if (data && data.length > 0) {
617 618 619 620 621 622
                let datas = JSON.parse(JSON.stringify(data));
                datas.map((item: any) => {
                    Object.assign(item, { isselected: false });
                });
                this.totalRecord = response.total;
                this.items.push(...datas);
tony001's avatar
tony001 committed
623
                this.items = this.arrayNonRepeatfy(this.items);
624
            }
tony001's avatar
tony001 committed
625
            this.isAddBehind = false;
626
            this.$emit('load', this.items);
627
            //在导航视图中,如已有选中数据,则右侧展开已选中数据的视图,如无选中数据则默认选中第一条
628
            if(this.isSelectFirstDefault){
629 630 631 632 633 634 635 636 637 638
                if(this.selections && this.selections.length > 0){
                    this.selections.forEach((select: any)=>{
                        const index = this.items.findIndex((item:any) => Object.is(item.srfkey,select.srfkey));
                        if(index != -1){
                            this.handleClick(this.items[index]);
                        }
                    })
                }else{
                    this.handleClick(this.items[0]);
                } 
639
            }
640 641
            <#if ctrl.isEnableGroup?? && ctrl.isEnableGroup()>
            this.group();
Shine-zwj's avatar
Shine-zwj committed
642
            </#if>
643 644 645 646
        }, (response: any) => {
            if (response && response.status === 401) {
                return;
            }
Mosher's avatar
Mosher committed
647
            this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: response.errorMessage });
648 649 650
        });
    }

tony001's avatar
tony001 committed
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
    /**
     * 列表数据去重
     *
     * @param {Array<any>} [arr]
     * @returns {void}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public arrayNonRepeatfy(arr:Array<any>) {
        let map = new Map();
        let array = new Array();
        for (let i = 0; i < arr.length; i++) {
            map .set(arr[i].srfkey, arr[i]); 
        }
        map.forEach((value:any, key:string, map:any) => {
            array.push(value);
        });
        return array ;
    }

    /**
     * 节流
     *
     * @param {Array<any>} [arr]
     * @returns {void}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
    public throttle(fn:any, wait:number){
        let time = 0;
        return () =>{
          let now = Date.now()
          let args = arguments;
          if(now - time > wait){
            fn.apply(this, args)
            time = now;
          }
        }
    }

689 690 691 692 693
    /**
     * 删除
     *
     * @param {any[]} datas
     * @returns {Promise<any>}
KK's avatar
KK committed
694
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
695
     */
696
    public async remove(datas: any[]): Promise<any> {
697
        if(!this.removeAction){
Mosher's avatar
Mosher committed
698
            this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.removeAction') as string) });
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
            return;
        }
        if (datas.length === 0) {
            return;
        }
        let dataInfo = '';
        datas.forEach((record: any, index: number) => {
            let srfmajortext = record.srfmajortext;
            if (index < 5) {
                if (!Object.is(dataInfo, '')) {
                    dataInfo += '、';
                }
                dataInfo += srfmajortext;
            } else {
                return false;
            }
        });

        if (datas.length < 5) {
            dataInfo = dataInfo + ' 共' + datas.length + '条数据';
        } else {
            dataInfo = dataInfo + '...' + ' 共' + datas.length + '条数据';
        }

        const removeData = () => {
            let keys: any[] = [];
            datas.forEach((data: any) => {
726
                keys.push(data.srfkey); 
727
            });
WodahsOrez's avatar
WodahsOrez committed
728
            let _removeAction = keys.length > 1 ? 'removeBatch' : this.removeAction ;
729
            const context:any = JSON.parse(JSON.stringify(this.context));
730
            const post: Promise<any> = this.service.delete(_removeAction,Object.assign(context,{ ${ctrl.getPSAppDataEntity().codeName?lower_case}: keys.join(';') }),Object.assign({ ${ctrl.getPSAppDataEntity().codeName?lower_case}: keys.join(';') },{viewparams:this.viewparams}), this.showBusyIndicator);
731 732 733
            return new Promise((resolve: any, reject: any) => {
                post.then((response: any) => {
                    if (!response || response.status !== 200) {
Mosher's avatar
Mosher committed
734
                        this.$Notice.error({ title: '', desc: (this.$t('app.commonWords.delDataFail') as string) + ',' + response.info });
735 736
                        return;
                    } else {
Mosher's avatar
Mosher committed
737
                        this.$Notice.success({ title: '', desc: (this.$t('app.commonWords.deleteSuccess') as string) });
738 739 740
                    }
                    //删除items中已删除的项
                    datas.forEach((data: any) => {
741 742 743
                        this.items.some((item:any,index:number)=>{
                            if(Object.is(item.srfkey,data.srfkey)){
                                this.items.splice(index,1);
744 745
                                <#if ctrl.isEnableGroup?? && ctrl.isEnableGroup()>
                                this.group();
746
                                </#if>
747 748 749 750 751 752 753 754 755 756 757 758
                                return true;
                            }
                        });
                    });
                    this.$emit('remove', null);
                    this.selections = [];
                    resolve(response);
                }).catch((response: any) => {
                    if (response && response.status === 401) {
                        return;
                    }
                    if (!response || !response.status || !response.data) {
Mosher's avatar
Mosher committed
759
                        this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: (this.$t('app.commonWords.sysException') as string) });
760 761 762 763 764 765 766 767 768 769
                        reject(response);
                        return;
                    }
                    reject(response);
                });
            });
        }

        dataInfo = dataInfo.replace(/[null]/g, '').replace(/[undefined]/g, '').replace(/[ ]/g, '');
        this.$Modal.confirm({
Mosher's avatar
Mosher committed
770 771
            title: (this.$t('app.commonWords.warning') as string),
            content: (this.$t('app.list.confirmDel') as string) + ' ' + dataInfo + ',' + (this.$t('app.list.notRecoverable') as string) ,
772 773 774 775 776 777 778 779
            onOk: () => {
                removeData();
            },
            onCancel: () => { }
        });
        return removeData;
    }

780 781 782 783 784
    /**
     * 保存
     *
     * @param {*} $event
     * @returns {Promise<any>}
KK's avatar
KK committed
785
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
786 787 788 789 790 791 792 793 794 795
     */
    public async save(args: any[], params?: any, $event?: any, xData?: any){
        let _this = this;
        let successItems:any = [];
        let errorItems:any = [];
        let errorMessage:any = [];
        for (const item of _this.items) {
            try {
                if(Object.is(item.rowDataState, 'create')){
                    if(!this.createAction){
Mosher's avatar
Mosher committed
796
                        this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.createAction') as string) });
797 798 799 800 801 802 803
                    }else{
                      Object.assign(item,{viewparams:this.viewparams});
                      let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
                      successItems.push(JSON.parse(JSON.stringify(response.data)));
                    }
                }else if(Object.is(item.rowDataState, 'update')){
                    if(!this.updateAction){
Mosher's avatar
Mosher committed
804
                        this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.updateAction') as string) });
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
                    }else{
                        Object.assign(item,{viewparams:this.viewparams});
<#if de??>
                        if(item.${appde.getCodeName()?lower_case}){
                            Object.assign(this.context,{${appde.getCodeName()?lower_case}:item.${appde.getCodeName()?lower_case}});
                        }
</#if>
                        let response = await this.service.add(this.updateAction,JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
                        successItems.push(JSON.parse(JSON.stringify(response.data)));
                    }
                }
            } catch (error) {
                errorItems.push(JSON.parse(JSON.stringify(item)));
                errorMessage.push(error);
            }
        }
        this.$emit('save', successItems);
        this.refresh();
        if(errorItems.length === 0){
Mosher's avatar
Mosher committed
824
            this.$Notice.success({ title: '', desc: (this.$t('app.commonWords.saveSuccess') as string) });
825 826
        }else{
          errorItems.forEach((item:any,index:number)=>{
Mosher's avatar
Mosher committed
827
            this.$Notice.error({ title: (this.$t('app.commonWords.saveFailed') as string), desc: item.majorentityname+ (this.$t('app.commonWords.saveFailed') as string) + '!' });
828 829 830 831 832 833
            console.error(errorMessage[index]);
          });
        }
        return successItems;
    }

834 835 836 837 838
    /**
     * 面板数据变化处理事件
     * @param {any} item 当前列数据
     * @param {any} $event 面板事件数据
     *
KK's avatar
KK committed
839
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
840 841 842 843 844
     */
    public onPanelDataChange(item:any,$event:any) {
        Object.assign(item, $event, {rowDataState:'update'});
    }

845 846
    /**
     * 选择数据
KK's avatar
KK committed
847
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
848 849
     *
     */
850
    public handleClick(args: any) {
851 852 853 854 855 856 857
        this.clearSelection();
        args.isselected = !args.isselected;
        this.selectchange();
    }

    /**
     * 双击数据
KK's avatar
KK committed
858
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
859 860
     *
     */
861
    public handleDblClick(args: any) {
862 863 864 865 866
        this.$emit('rowdblclick', args);
    }

    /**
     * 触发事件
KK's avatar
KK committed
867
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
868 869
     *
     */
870
    public selectchange() {
871 872 873 874 875 876 877 878 879 880 881 882
        this.selections = [];
        this.items.map((item: any) => {
            if (item.isselected) {
                this.selections.push(item);
            }
        });
        this.$emit('selectionchange', this.selections);
    }

    /**
     * 清除当前所有选中状态
     *
KK's avatar
KK committed
883
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
884
     */
885
    public clearSelection(){
886 887 888 889 890
        this.items.map((item: any) => {
            Object.assign(item, { isselected: false });
        }); 
    }

891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
    /**
     * 操作栏模型数据
     *
     * @type {*}
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */ 
    public ActionModel:any ={
    <#if ctrl.getPSAppViewUIActions?? && ctrl.getPSAppViewUIActions()??>
    <#list ctrl.getPSAppViewUIActions() as viewUIAction>
        <#if viewUIAction.getPSUIAction?? && viewUIAction.getPSUIAction()??>
        <#assign UIAction = viewUIAction.getPSUIAction() />
        "${UIAction.getUIActionTag()}":{name:"${UIAction.getUIActionTag()}",icon:"<#if UIAction.getPSSysImage()??><#assign img=UIAction.getPSSysImage() /><#if img.getCssClass()?? && (img.getCssClass()?length gt 0)>${img.getCssClass()}</#if></#if>",caption:"${UIAction.getCaption()}",disabled: false, visabled: true,noprivdisplaymode:<#if UIAction.getNoPrivDisplayMode(view)??>${UIAction.getNoPrivDisplayMode(view)}</#if>,dataaccaction: "<#if UIAction.getDataAccessAction()??>${UIAction.getDataAccessAction()}</#if>", actiontarget: "${UIAction.getActionTarget()}"}<#if viewUIAction_has_next>,</#if>
        </#if>
    </#list>
    </#if>
    };

tony001's avatar
tony001 committed
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
    /**
     * 操作列界面行为
     *
     * @param {*} data
     * @param {*} tag
     * @param {*} $event
     * @memberof ${srfclassname('${ctrl.codeName}')}Base
     */
	public uiAction(data: any, tag: any, $event: any) {
        $event.stopPropagation();
        <#if ctrl.getPSAppViewLogics()??>
        <#list ctrl.getPSAppViewLogics() as logic>
        <#if logic.getPSAppViewUIAction().getPSUIAction()??>
        <#assign action = logic.getPSAppViewUIAction().getPSUIAction()>
        if(Object.is('${action.getUIActionTag()}', tag)) {
            this.${logic.getName()}(data, tag, $event);
        }
        </#if>
        </#list>
        </#if>
    }

930 931 932 933 934 935 936
<#ibizinclude>
../@MACRO/CONTROL/CONTROL_BOTTOM-BASE.vue.ftl
</#ibizinclude>

<#ibizinclude>
../@MACRO/CONTROL/CONTROL-BASE.style.ftl
</#ibizinclude>