10 lines
431 B
XML
10 lines
431 B
XML
<!-- index.wxml -->
|
|
<view class="page-body">
|
|
<t-radio-group bind:change="bindRadioChange">
|
|
<block wx:for="{{relations}}" wx:key="index">
|
|
<t-radio value="{{item}}" label="{{t(entity + ':r.' + item)}}" />
|
|
</block>
|
|
</t-radio-group>
|
|
<view style="flex: 1" />
|
|
<t-button style="margin: 16rpx" theme="primary" block size="large" bind:tap="confirm" content="{{t('common:action.confirm')}}" />
|
|
</view> |