|
@@ -6,44 +6,19 @@
|
|
|
<image mode="scaleToFill" src="/image/close-blue.png" class="close-stle"/>
|
|
|
</view>
|
|
|
<!--服务列表-->
|
|
|
- <view class="setting-list">
|
|
|
+ <view class="setting-list" a:for="{{servantlist}}" key="{{index}}">
|
|
|
<view class="setting-list-title">
|
|
|
- 做饭类<text>1/6</text>
|
|
|
+ {{item.subjectType}}<text>1/ {{servantlist.length}}</text>
|
|
|
</view>
|
|
|
- <view class="setting-list-item">
|
|
|
- <text class="item-title">1.您家人喜欢的菜系是那种?</text>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="0" checked="true" class="item-body-checkbox"/><text>粤菜</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="1" class="item-body-checkbox"/><text>川菜</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="3" class="item-body-checkbox"/><text>本帮菜</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="5" class="item-body-checkbox"/><text>自定义</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <textarea placeholder="请输入文字"></textarea>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="setting-list-item">
|
|
|
- <text class="item-title">1.您家人喜欢的菜系是那种?</text>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="0" checked="true" class="item-body-checkbox"/><text>粤菜</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="1" class="item-body-checkbox"/><text>川菜</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="3" class="item-body-checkbox"/><text>本帮菜</text>
|
|
|
- </view>
|
|
|
- <view class="item-body">
|
|
|
- <checkbox value="5" class="item-body-checkbox"/><text>自定义</text>
|
|
|
+ <view class="setting-list-item" a:for="{{item.subjectList}}" a:for-item="subjectitem" key="{{subjectindex}}">
|
|
|
+ <view a:if="{{subjectitem.isChoose}}">
|
|
|
+ <text class="item-title">{{subjectitem.subject}}</text>
|
|
|
+ <view class="item-body" a:for="{{subjectitem.answer}}" a:for-item="answeritem" key="{{answerindex}}">
|
|
|
+ <checkbox value="{{answeritem.value}}" checked="true" class="item-body-checkbox"/><text>{{answeritem.key}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="item-body">
|
|
|
- <textarea placeholder="请输入文字"></textarea>
|
|
|
+ <textarea placeholder="请输入文字"></textarea>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|