app-mob-select-vant.vue 6.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 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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
<template>
    <div class="app-mob-select-vant" @click="content_click" :data-tap-disabled="disabled? disabled:'false'">
        <div class="form-value-content app-mob-select-vant__value">{{visibleText}}</div><van-icon class="app-mob-select-vant__icon select-color" name="arrow" />
            <van-action-sheet
                class="app-mob-select-vant__sheet"
                get-container="#app"
                v-model="visible"
                :actions="options"
                cancel-text="取消"
                close-on-click-action
                @select="change"
                @cancel="onCancel"
            />
    </div>   
</template>

<script lang="ts">
import { Vue, Component, Prop, Provide, Emit, Watch, } from "vue-property-decorator";
import { CodeListService, ViewTool } from "ibiz-core";
import { LogUtil } from "ibiz-core";

@Component({
    components: {},
})
export default class AppSelectVant extends Vue {

    /**
     * 传入值
     *
     * @type {string}
     * @memberof AppSelectVant
     */
    @Prop() public value?: any;

    /**
     * 编辑器名称
     *
     * @type {string}
     * @memberof AppSelect
     */
    @Prop() public name?: string;     

    /**
     * 是否禁用
     *
     * @type {string}
     * @memberof AppSelectVant
     */
    @Prop({default:false}) public disabled?: boolean;

    /**
     * 代码表标识
     *
     * @type {string}
     * @memberof AppSelectVant
     */
    @Prop() public tag!: string;

    /**
     * 代码表类型
     * STATIC:静态
     * DYNAMIC:动态
     *
     * @type {('STATIC' | 'DYNAMIC')}
     * @memberof Login
     */
    @Prop() public codeListType!: 'STATIC' | 'DYNAMIC';

    /**
     * 传入表单数据
     *
     * @type {*}
     * @memberof AppSelectVant
     */
    @Prop() public data?: any;

    /**
     * 应用上下文
     *
     * @type {*}
     * @memberof AppSelectVant
     */
    @Prop({ default: {} }) protected context?: any;

    /**
     * 导航参数
     *
     * @type {*}
     * @memberof AppSelectVant
     */
    @Prop({ default: ()=>{} }) protected navigateParam?: any;

    /**
     * 导航上下文
     *
     * @type {*}
     * @memberof AppSelectVant
     */
    @Prop({ default: ()=>{} }) protected navigateContext?: any;

    /**
     * 代码表
     *
     * @type {string}
     * @memberof DropDownList
     */    
    @Prop() public codeList?: any;

    /**
     * 视图参数
     *
     * @type {*}
     * @memberof AppSelectVant
     */
    @Prop() public viewparams!: any;

    /**
     * 下拉数据数组
     *
     * @type {any[]}
     * @memberof AppSelectVant
     */
    public options: any[] = [];

    /**
     * 显示状态
     *
     * @type {CodeListService}
     * @memberof AppSelectVant
     */
    public visible:boolean = false;

    /**
     * 代码表服务对象
     *
     * @type {CodeListService}
     * @memberof AppSelectVant
     */
    public codeListService: CodeListService = new CodeListService({ $store: this.$store });
    
    /**
     * 参数缓存字符串
     *
     * @memberof AppSelectVant
     */
    public cachParamStr:string = "";

    /**
     * 显示文本
     *
     * @type {CodeListService}
     * @memberof AppSelectVant
     */
    get visibleText(){
        const item =  this.options.find((item:any)=>{return item.value === this.curValue});
        if(item){
            return item.label;
        }else{
            return '';
        }
    }

    /**
     * 当前选中值
     * @memberof AppSelectVant
     */
    get curValue() {
        if (this.options.length > 0 && this.value !== null && this.value !== "") {
            let isIncluded = this.options.some((option:any)=>{return option.value === this.value})
            if (isIncluded) {
                return this.value;
            }
        }
        return "";
    }

    /**
     * 监听表单数据
     *
     * @param {*} newVal
     * @param {*} val
     * @memberof AppSelectVant
     */
    @Watch('data',{deep:true})
    onDataChange(newVal: any, oldVal: any) {
        let param = {};
        this.handleOtherParam(param);
        if (newVal && !Object.is(JSON.stringify(param),this.cachParamStr)) {
            this.load();
        }
    }
    
    /**
     * change事件
     *
     * @memberof AppSelectVant
     */
    public change(data: any) {
        let devalue:any = data.value;
        if (devalue !== '') {
          for(let key in this.options){
            if (this.options[key].isValueNumber) {
              devalue = +devalue;
            }
          }
          if (Object.is(this.codeListType, 'DYNAMIC')) {
            for(let key in this.options){
              if (typeof this.options[key].id == 'number') {
                  devalue = +devalue;
              }
            }
          }
        }
        this.$emit("change", {name:this.name, value:devalue, event:data});
    }

    /**
     * mounted
     */
    public mounted() {
        if (Object.is(this.codeListType, "STATIC")) {
            this.codeListService.getDataItems({ tag: this.tag, type: 'STATIC', data: this.codeList, context:this.context, viewparam:null }).then((codelistItems: Array<any>) => {
                this.options = codelistItems;
                this.initOption();
            }).catch((error: any) => {
                LogUtil.log(`----${this.tag}----${this.$t('app.commonWords.codeNotExist')}`);
            })   
        } else {
            this.load();
        }
    }

    /**
     * 加载
     *
     * @returns {Promise<any>}
     * @memberof AppSelectVant
     */
    public async load(): Promise<any> {
        if (Object.is(this.codeListType, "STATIC")) {
            return;
        }
    
        // 处理导航参数、上下文参数
        let param: any = {};
        const bcancel: boolean =this.handleOtherParam(param);
        if(!bcancel){
            return
        }
        this.cachParamStr = JSON.stringify(param);
        let response: any = await this.codeListService.getItems(this.tag,  param.context, param.param);
        if (response) {
            this.options = response;
            this.initOption();
        } else {
            this.options = [];
        }
    }

    /**
     * 处理额外参数
     */
    public handleOtherParam(arg:any) {
        if (!this.data) {
            return false;
        }
        // 附加参数处理
        const {context, param} = ViewTool.formatNavigateParam( this.navigateContext, this.navigateParam, this.context, this.viewparams, this.data );
        arg.context = context;
        arg.param = param;
        return true;
    }

    /**
     * 点击事件
     */
    public content_click(){
        if(this.disabled){
            return;
        }
        this.visible = true;
    }

    /**
     * 初始化option
     */
    public initOption(){
        this.options.forEach((item:any)=>{item.name = item.text})
    }

    /**
     * 取消
     */
    public onCancel(){
        this.visible = false;
    }
}
</script>