VIEW-BASE.vue.ftl 8.1 KB
Newer Older
1 2 3 4
<#ibizinclude>
../@MACRO/LAYOUTPANEL_VIEW.template.ftl
</#ibizinclude>

tony001's avatar
tony001 committed
5
<#assign import_block>
6
import CodeListService from "@/codelist/codelist-service";
tony001's avatar
tony001 committed
7 8 9 10 11 12
<#if view.getPSSysCounterRef?? && view.getPSSysCounterRef()?? && view.getPSSysCounterRef().getPSAppCounter()??>
<#assign appCounter = view.getPSSysCounterRef().getPSAppCounter() />
import  ${srfclassname('${appCounter.getCodeName()}')}CounterService  from '@/counter/${srffilepath2(appCounter.getCodeName())}/${srffilepath2(appCounter.getCodeName())}-counter';
</#if>
</#assign>

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<#ibizinclude>
../@MACRO/VIEW_HEADER-BASE.vue.ftl
</#ibizinclude>

<#assign created_block>
        if(this.formDruipart){
            this.formDruipartEvent = this.formDruipart.subscribe((res:any) =>{
                if(Object.is(res.action,'load')){
        <#if view.getXDataPSControl?? && view.getXDataPSControl()??>
        <#assign xDataControl = view.getXDataPSControl() />
                (this.$refs.${xDataControl.getName()} as any).refresh();
        </#if>
                }
            });
        }
</#assign>

tony001's avatar
tony001 committed
30 31 32 33
<#assign mounted_block>
<#if view.isEnableQuickGroup()>_this.loadQuickGroupModel();</#if>
</#assign>

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
<#ibizinclude>
../@MACRO/VIEW_CONTENT-BASE.vue.ftl
</#ibizinclude>

    /**
    * 界面关系通讯对象
    *
    * @type {Subject<ViewState>}
    * @memberof ${srfclassname('${view.name}')}Base
    */
    @Prop() public formDruipart?: Subject<ViewState>;

    /**
     * 视图状态事件
     *
     * @protected
     * @type {(any | undefined)}
     * @memberof ${srfclassname('${view.name}')}Base
     */
    protected formDruipartEvent: any | undefined;

tony001's avatar
tony001 committed
55 56 57 58
    /**
     * 搜索值
     *
     * @type {string}
59
     * @memberof ${srfclassname('${view.name}')}Base
tony001's avatar
tony001 committed
60 61 62 63 64 65 66
     */
    public query: string = '';

    /**
     * 是否展开搜索表单
     *
     * @type {boolean}
67
     * @memberof ${srfclassname('${view.name}')}Base
tony001's avatar
tony001 committed
68 69 70 71 72 73 74
     */
    public isExpandSearchForm: boolean = ${view.isExpandSearchForm()?c};

    /**
     * 快速搜索
     *
     * @param {*} $event
75
     * @memberof ${srfclassname('${view.name}')}Base
tony001's avatar
tony001 committed
76 77 78 79 80 81 82 83 84 85 86 87
     */
    public onSearch($event: any): void {
        const refs: any = this.$refs;
        if (refs.calendar) {
            refs.calendar.refresh();
        }
    }

    /**
     * calendar 的 beforeload 事件
     *
     * @param {*} arg
88
     * @memberof ${srfclassname('${view.name}')}Base
tony001's avatar
tony001 committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102
     */
    public onBeforeLoad(arg: any){
        let _this:any = this;
        if (_this.viewparams && Object.keys(_this.viewparams).length > 0) {
            Object.assign(arg, _this.viewparams);
        }
        if (_this.$refs.searchform && _this.isExpandSearchForm) {
            Object.assign(arg, _this.$refs.searchform.getData());
        }
        if (_this && !_this.isExpandSearchForm) {
            Object.assign(arg, { query: _this.query });
        }
        // 快速分组和快速搜索栏
        let otherQueryParam:any = {};
103 104
        if(_this && (_this.quickGroupData as any)){
            Object.assign(otherQueryParam,_this.quickGroupData);
tony001's avatar
tony001 committed
105
        }
106 107
        if(_this && _this.quickFormData){
            Object.assign(otherQueryParam,_this.quickFormData);
tony001's avatar
tony001 committed
108 109 110 111 112 113 114 115
        }
        Object.assign(arg,{viewparams:otherQueryParam});
    }

    /**
     * searchform 部件 search 事件
     *
     * @param {*} $event
116
     * @memberof ${srfclassname('${view.name}')}Base
tony001's avatar
tony001 committed
117 118 119 120 121 122 123 124 125
     */
    public searchform_search($event: any) {
        this.onSearch($event);
    }

    /**
     * searchform 部件 load 事件
     *
     * @param {*} $event
126
     * @memberof ${srfclassname('${view.name}')}Base
tony001's avatar
tony001 committed
127 128 129 130 131 132 133 134 135 136 137 138 139
     */
    public searchform_load($event: any) {
        this.onSearch($event);
    }

    <#if view.getPSSysCounterRef?? && view.getPSSysCounterRef()?? && view.getPSSysCounterRef().getPSAppCounter()??>
    <#assign appCounter = view.getPSSysCounterRef().getPSAppCounter() />
    /**
     * ${srfclassname('${appCounter.getCodeName()}')}CounterService计数器服务对象
     *
     * @type {${srfclassname('${appCounter.getCodeName()}')}CounterService}
     * @memberof ${srfclassname('${view.name}')}Base
     */
RedPig97's avatar
RedPig97 committed
140
    public ${appCounter.getCodeName()?lower_case}counterservice: ${srfclassname('${appCounter.getCodeName()}')}CounterService = new ${srfclassname('${appCounter.getCodeName()}')}CounterService({ context:this.context,viewparams:this.viewparams });
tony001's avatar
tony001 committed
141 142 143 144 145 146 147 148 149 150
    </#if>

<#if view.isEnableQuickGroup()>

    /**
     * 代码表服务对象
     *
     * @type {CodeListService}
     * @memberof ${srfclassname('${view.name}')}Base
     */  
RedPig97's avatar
RedPig97 committed
151
    public codeListService:CodeListService = new CodeListService();
tony001's avatar
tony001 committed
152 153 154 155 156 157

    /**
     * 快速分组数据对象
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
158
    public quickGroupData:any;
tony001's avatar
tony001 committed
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231

    /**
     * 快速分组是否有抛值
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
    public isEmitQuickGroupValue:boolean = false;

    /**
     * 快速分组模型
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
    public quickGroupModel:Array<any> = [];

    /**
     * 加载快速分组模型
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
    public loadQuickGroupModel(){
        <#if view.getQuickGroupPSCodeList()??>
        <#assign codelist=view.getQuickGroupPSCodeList() />
        let quickGroupCodeList:any = {tag:'${codelist.codeName}',codelistType:'${codelist.getCodeListType()}'};
        if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"STATIC")){
            const codelist = this.$store.getters.getCodeList(quickGroupCodeList.tag);
            if (codelist) {
                this.quickGroupModel = [...this.handleDynamicData(JSON.parse(JSON.stringify(codelist.items)))];
            } else {
                <#noparse>console.log(`----${quickGroupCodeList.tag}----代码表不存在`);</#noparse>
            }
        }else if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"DYNAMIC")){
            this.codeListService.getItems(quickGroupCodeList.tag,{},{}).then((res:any) => {
                this.quickGroupModel = res;
            }).catch((error:any) => {
                <#noparse>console.log(`----${quickGroupCodeList.tag}----代码表不存在`);</#noparse>
            });
        }
        </#if>
    }

    /**
     * 处理快速分组模型动态数据部分(%xxx%)
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
    public handleDynamicData(inputArray:Array<any>){
        if(inputArray.length >0){
            inputArray.forEach((item:any) =>{
               if(item.data && Object.keys(item.data).length >0){
                   Object.keys(item.data).forEach((name:any) =>{
                        let value: any = item.data[name];
                        if (value && typeof(value)=='string' && value.startsWith('%') && value.endsWith('%')) {
                            const key = (value.substring(1, value.length - 1)).toLowerCase();
                            if (this.context[key]) {
                                value = this.context[key];
                            } else if(this.viewparams[key]){
                                value = this.viewparams[key];
                            }
                        }
                        item.data[name] = value;
                   })
               }
            })
        }
        return inputArray;
    }

    /**
     * 快速分组值变化
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
232
    public quickGroupValueChange($event:any){
233
        if($event){
234
            this.quickGroupData = $event.data;
tony001's avatar
tony001 committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248
            if(this.isEmitQuickGroupValue){
                this.onSearch($event);
            }
        }
        this.isEmitQuickGroupValue = true;
    }
</#if>
<#if view.getQuickPSDESearchForm()??>

    /**
     * 快速搜索栏数据对象
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
249
    public quickFormData:any;
tony001's avatar
tony001 committed
250 251 252 253 254 255

    /**
     * 快速搜索栏值变化
     *
     * @memberof ${srfclassname('${view.name}')}Base
     */
256 257
    public quickFormValueChange($event:any){
        this.quickFormData = $event;
tony001's avatar
tony001 committed
258 259 260
        this.onSearch($event);
    }
</#if>
261 262 263 264 265 266 267 268

<#ibizinclude>
../@MACRO/VIEW_BOTTOM-BASE.vue.ftl
</#ibizinclude>

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