在这里插入图片描述
在这里插入图片描述
基本用法 使用isshow控制。有数据了才显示控件。

设置 localdata 属性后,组件会通过数据渲染出对应的内容

<template>
  <view>
    <uni-data-select
      v-model="value"
      :localdata="range"
      v-if="isshow"
      @change="change"
    ></uni-data-select>
  </view>
</template>
export default {
  data() {
    return {
      value: 0,
      range: [  ],
      isshow:false,
    };
  },
  methods: {
  async getRefundsReasonList() {
				const res = await this.$myRequest({
					url: '/siboasi-portal/refundsApply/getRefundsReasonList?orgId=1'
				})
				if (res.code == 200) {
                    this.range= res.data
					for(var i=0;i<this.ReasonList.length;i++){
						this.range[i].text = this.ReasonList[i].name;
						this.range[i].ReasonListid = this.ReasonList[i].id;
					} 
					this.show= true
				}
				console.log(this.ReasonList);
			},
  },
};
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐