app-field-image-dynamic.vue 2.9 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
<template>
    <div :class="curClassName" :style="curStyle">
        <img :src="imgUrl" />
    </div>
</template>
<script lang = 'ts'>
import { Vue, Component, Prop, Watch } from 'vue-property-decorator';
import { Environment } from "@/environments/environment";
@Component({})
export default class AppFieldImageDynamic extends Vue {
    /**
     * 名称
     *
     * @type {*}
     * @memberof AppRawItemImage
     */
    @Prop() public name!: string;

    /**
     * 模型
     *
     * @type {*}
     * @memberof AppRawItemImage
     */
    @Prop() public layoutModelDetails!: any;

    /**
     * 输入值
     *
     * @type {string}
     * @memberof AppFieldImageDynamic
     */
    @Prop() public value: any;

    /**
     * 下标
     *
     * @type {number}
     * @memberof AppFieldImageDynamic
     */
    @Prop() public index?: number;

    /**
     * 值变更
     *
     * @memberof AppFieldImageDynamic
     */
    @Watch('value',{immediate: true})
    onValueChange(newVal: any, oldVal: any) {
        this.handleDynaImg();
    }

    /**
     * 项名称
     *
     * @type {*}
     * @memberof AppFieldImageDynamic
     */
    get itemName() {
        return (this.index || this.index === 0) ? `${this.name}_${this.index}` : this.name;
    }

    /**
     * 动态图片路径
     *
     * @memberof AppFieldImageDynamic
     */
    protected dynaImgUrl: string = '';

    /**
    * 下载文件路径
    *
    * @memberof AppFieldImageDynamic
    */
    public downloadUrl = Environment.ExportFile;

    /**
     * 图片路径
     *
     * @memberof AppFieldImageDynamic
     */
    get imgUrl(): string {
        return this.dynaImgUrl;
    }

    /**
     * 类名
     *
     * @memberof AppFieldImageDynamic
     */
    get curClassName() {
        const layoutModel = this.layoutModelDetails[this.itemName];
        if (layoutModel) {
            return `app-field-image-dynamic ${this.itemName} ${layoutModel.sysCss}`;
        }
    }

    /**
     * 当前容器样式
     * 
     * @memberof AppFieldImageDynamic
     */
    get curStyle() {
        const layoutModel = this.layoutModelDetails[this.itemName];
        if (layoutModel) {
            return layoutModel.getElementStyle();
        }
    }

    /**
    * 处理动态图片
    *
    * @memberof AppFieldImageDynamic
    */
    protected handleDynaImg() {
        if (this.value && typeof this.value == "string") {
            // 默认识别文件对象形式,识别失败则为全路径模式
            try {
                const _files = JSON.parse(this.value);
                const file = _files instanceof Array ? _files[0] : null;
                const url = file && file.id ? `${this.downloadUrl}/${file.id}` : "";
                this.dynaImgUrl = url;
            } catch (error) {
                this.dynaImgUrl = this.value;
            }
        }
    }
}
</script>
130 131
<style lang="scss">
@import './app-field-image-dynamic.scss';
132
</style>