leisure-core 0.4.50 → 0.4.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -109,6 +109,17 @@
109
109
  :max="item.max || 9999999999"
110
110
  label="item.label||''"
111
111
  />
112
+ <el-radio-group
113
+ v-else-if="item.type === 'radio'"
114
+ v-model="formPop[item.prop]"
115
+ >
116
+ <el-radio
117
+ v-for="(option, index) in item.options"
118
+ :label="option.id"
119
+ :key="index + '_radio'"
120
+ >{{ option.label }}</el-radio
121
+ >
122
+ </el-radio-group>
112
123
  <el-select
113
124
  v-else-if="item.type === 'select'"
114
125
  v-model="formPop[item.prop]"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leisure-core",
3
- "version": "0.4.50",
3
+ "version": "0.4.51",
4
4
  "description": "leisure-core是leisure-ui-core的简称,是京心数据基于vue2.0开发的一套后台系统框架与js库,包含登录,首页框架等",
5
5
  "private": false,
6
6
  "author": "北方乐逍遥(zcx7878)",