mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-19 09:46:40 +08:00
94 lines
2.1 KiB
Vue
94 lines
2.1 KiB
Vue
<template>
|
|
<view class="u-flex-1">
|
|
<u-radio-group v-model="options.value" :disabled="disabled" @change="change">
|
|
<u-radio v-for="(item, index) in options.items" :key="index"
|
|
:name="item.value"> {{item.label}}</u-radio>
|
|
</u-radio-group>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
/**
|
|
* 单选框组件
|
|
* @property {Object} value 用于双向绑定选择框的值,返回选择框的 Value
|
|
* @property {Boolean} disabled 是否禁用模式,是否只读模式
|
|
* @property {String} dictType 字典类型,从字典里获取,自动设置 items、itemLabel、itemValue
|
|
* @property {String} items 列表数据,可接受对象集合,如:[{name: '是', value: '否'}]
|
|
* @property {String} itemLabel 指定列表数据中的什么属性名作为 option 的标签名,如 name
|
|
* @property {String} itemValue 指定列表数据中的什么属性名作为 option 的 value 值,如 value
|
|
* @example <js-radio v-model="model.type" dict-type="sys_yes_no"></js-radio>
|
|
* @description Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
|
* @author ThinkGem
|
|
* @version 2021-3-11
|
|
*/
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
dictType: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
items: {
|
|
type: Array,
|
|
default() {
|
|
return [];
|
|
}
|
|
},
|
|
itemLabel: {
|
|
type: String,
|
|
default: 'name'
|
|
},
|
|
itemValue: {
|
|
type: String,
|
|
default: 'value'
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
options: {
|
|
value: this.value,
|
|
items: this.items
|
|
}
|
|
};
|
|
},
|
|
watch: {
|
|
value(val, oldVal) {
|
|
this.options.value = val;
|
|
},
|
|
items(val, oldVal){
|
|
this.options.items = val;
|
|
}
|
|
},
|
|
created() {
|
|
this.loadData();
|
|
},
|
|
methods: {
|
|
loadData(){
|
|
if (this.dictType !== ''){
|
|
this.$u.api.dictData({type: this.dictType}).then(res => {
|
|
if (typeof res === 'object' && res.result === 'login'){
|
|
return;
|
|
}
|
|
this.options.items = res.data;
|
|
});
|
|
}else{
|
|
this.options.items = this.items;
|
|
}
|
|
},
|
|
change(val){
|
|
// console.log(val);
|
|
this.$emit('input', val);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|