MDControlBase.tsx 5.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 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 232 233 234 235 236 237 238 239 240 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
import { Prop } from 'vue-property-decorator';
import CodeListService from '@/service/app/codelist-service';
import { MainControlBase } from './MainControlBase';

/**
 * 多数据部件基类
 *
 * @export
 * @class MDControlBase
 * @extends {MainControlBase}
 */
export class MDControlBase extends MainControlBase {

    /**
     * 代码表服务
     *
     * @type {CodeListService}
     * @memberof MDControlBase
     */
    public codeListService: CodeListService = new CodeListService({ $store: this.$store });

    /**
     * 打开新建数据视图
     *
     * @type {*}
     * @memberof MDControlBase
     */
    @Prop()
    public newdata: any;

    /**
     * 打开编辑数据视图
     *
     * @type {*}
     * @memberof MDControlBase
     */
    @Prop()
    public opendata: any;

    /**
     * 部件行为--update
     *
     * @type {string}
     * @memberof MDControlBase
     */
    @Prop()
    public updateAction!: string;

    /**
     * 部件行为--fetch
     *
     * @type {string}
     * @memberof MDControlBase
     */
    @Prop()
    public fetchAction!: string;

    /**
     * 部件行为--remove
     *
     * @type {string}
     * @memberof MDControlBase
     */
    @Prop()
    public removeAction!: string;

    /**
     * 部件行为--load
     *
     * @type {string}
     * @memberof MDControlBase
     */
    @Prop()
    public loadAction!: string;

    /**
     * 部件行为--loaddraft
     *
     * @type {string}
     * @memberof MDControlBase
     */
    @Prop()
    public loaddraftAction!: string;

    /**
     * 部件行为--create
     *
     * @type {string}
     * @memberof MDControlBase
     */
    @Prop()
    public createAction!: string;

    /**
     * 是否默认选中第一条数据
     *
     * @type {boolean}
     * @memberof MDControlBase
     */
    @Prop({ default: false })
    public isSelectFirstDefault!: boolean;

    /**
     * 是否支持分页
     *
     * @type {boolean}
     * @memberof MDControlBase
     */
    public isEnablePagingBar: boolean = true;

    /**
     * 是否禁用排序
     *
     * @type {boolean}
     * @memberof MDControlBase
     */
    public isNoSort: boolean = false;

    /**
     * 排序方向
     *
     * @type {string}
     * @memberof MDControlBase
     */
    public minorSortDir: string = '';

    /**
     * 排序字段
     *
     * @type {string}
     * @memberof MDControlBase
     */
    public minorSortPSDEF: string = '';

    /**
     * 分页条数
     *
     * @type {number}
     * @memberof MDControlBase
     */
    public limit: number = 20;

    /**
     * 总条数
     *
     * @type {number}
     * @memberof MDControlBase
     */
    public totalRecord: number = 0;

    /**
     * 选中行数据
     *
     * @type {any[]}
     * @memberof MDControlBase
     */
    public selections: any[] = [];

    /**
     * 是否启用快速分组
     *
     * @type {boolean}
     * @memberof MDControlBase
     */
    public isEnableQuickGroup: boolean = false;

    /**
     * 当前页
     *
     * @type {number}
     * @memberof MDControlBase
     */
    public curPage: number = 1;

    /**
     * 数据
     *
     * @type {any[]}
     * @memberof MDControlBase
     */
    public items: any[] = [];

    /**
     * 获取多项数据
     *
     * @returns {any[]}
     * @memberof MDControlBase
     */
    public getDatas(): any[] {
        return this.selections;
    }

    /**
     * 获取单项树
     *
     * @returns {*}
     * @memberof MDControlBase
     */
    public getData(): any {
        return this.selections[0];
    }

    /**
     * 部件创建完毕
     *
     * @protected
     * @memberof MDControlBase
     */
    protected ctrlCreated(): void {
        this.accLocalTags.push(this.$acc.commandLocal((data: any) => {
            if (data && data.srfkey) {
                const i = this.items.findIndex((item: any) => Object.is(item.srfkey, data.srfkey));
                if (i !== -1) {
                    this.accChange(data)
                }
            }
        }, 'all', this.appDeName.toUpperCase()));
    }

    /**
     * 消息中心
     *
     * @protected
     * @param {*} data
     * @memberof MDControlBase
     */
    protected accChange(data: any): void { }

    /**
     * 选择数据
     *
     * @param {*} args
     * @memberof MDControlBase
     */
    public handleClick(args: any): void {
        this.clearSelection();
        args.isselected = !args.isselected;
        this.selectchange();
    }

    /**
     * 双击数据
     *
     * @param {*} args
     * @memberof MDControlBase
     */
    public handleDblClick(args: any): void {
        this.$emit('rowdblclick', args);
    }

    /**
     * 触发事件
     *
     * @memberof MDControlBase
     */
    public selectchange(): void {
        this.selections = [];
        this.items.map((item: any) => {
            if (item.isselected) {
                this.selections.push(item);
            }
        });
        this.$emit('selectionchange', this.selections);
    }

    /**
     * 清除当前所有选中状态
     *
     * @memberof MDControlBase
     */
    public clearSelection(): void {
        this.items.map((item: any) => {
            Object.assign(item, { isselected: false });
        });
    }

}