|
|
@ -7,13 +7,18 @@ |
|
|
|
<a-col :span="8" v-for="group in params" :key="group.name" class="p-1"> |
|
|
|
<fieldset class="border"> |
|
|
|
<legend>{{ group.name }}</legend> |
|
|
|
<div class="p-1" v-for="item in group.items" :key="item.key"> |
|
|
|
<service-configuration-param-value-edit |
|
|
|
:param="item" |
|
|
|
v-model:value="item.value" |
|
|
|
@save-request="actionServiceParamSave" |
|
|
|
></service-configuration-param-value-edit> |
|
|
|
</div> |
|
|
|
<table class="w-full"> |
|
|
|
<tr v-for="item in group.items" :key="item.key"> |
|
|
|
<td class="p-1">{{ item.name }} : </td> |
|
|
|
<td class="p-1"> |
|
|
|
<service-configuration-param-value-edit |
|
|
|
:param="item" |
|
|
|
v-model:value="item.value" |
|
|
|
@save-request="actionServiceParamSave" |
|
|
|
></service-configuration-param-value-edit> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
</fieldset> |
|
|
|
</a-col> |
|
|
|
</a-row> |
|
|
|