修复BUG: 系统配置中,radio保存的值错误
parent
cf6c7814b6
commit
e1ee69da94
|
@ -256,6 +256,8 @@ class InitSettingsViewSet(APIView):
|
|||
:param data:
|
||||
:return:
|
||||
"""
|
||||
if not self.request.query_params.get('key', ''):
|
||||
return data
|
||||
new_data = {}
|
||||
for key in self.request.query_params.get('key', '').split('|'):
|
||||
if key:
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
<el-radio
|
||||
v-for="item in dictionary(item.setting) || []"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:label="item.value"
|
||||
:value="item.value">
|
||||
{{ item.label }}
|
||||
</el-radio>
|
||||
|
|
Loading…
Reference in New Issue