<!--menu.wxml-->
|
|
<view class="loading" wx:if="{{!((!loading_1)&&(!lodding_2))}}">加载中</view>
|
|
<view class="page">
|
|
<view class="profile">
|
|
<!-- <view wx:if="{{time_type==0}}">
|
|
<view>菜谱1</view>
|
|
</view> -->
|
|
<view >
|
|
{{detailed_name}}
|
|
</view>
|
|
</view>
|
|
|
|
<view style="position: fixed;left:4%;top:3%" bindtap="back_dishes" hover-class="back">
|
|
<text style="font-size: 60rpx;padding-left: 10rpx;padding-right:20rpx;background-color: rgba(255, 255, 255, 0.5);border-radius: 20%;box-shadow: 0px 0px 20px 0 rgba(136, 134, 118, 0.37);color:peru;" decode="true"><</text>
|
|
</view>
|
|
|
|
<!--菜谱结果陈列-->
|
|
<view class="TotalTime sameStyle">
|
|
<view >
|
|
{{detailed_time}}分钟
|
|
</view>
|
|
<!-- <view>风味:咸</view> -->
|
|
</view>
|
|
|
|
<view class="material sameStyle">
|
|
|
|
<view class="title">
|
|
原材料
|
|
</view>
|
|
<scroll-view scroll-y="true" class="materialHeight">
|
|
<view wx:for="{{detailed_material}}" data-product="{{item}}">
|
|
{{item.name}} {{item.amount}}
|
|
</view>
|
|
<!-- <view class="item">
|
|
小麦淀粉30g
|
|
</view> -->
|
|
</scroll-view>
|
|
</view>
|
|
<view class="step sameStyle">
|
|
|
|
<view class="title title1">
|
|
步骤
|
|
</view>
|
|
<scroll-view scroll-y="true" class="materialHeight1">
|
|
<view class="items" >
|
|
<!-- <view class="top"> -->
|
|
<view wx:for="{{detailed_steps}}" data-product="{{item}}" >
|
|
步骤{{item.order}}
|
|
<view class="time" >总耗时 {{item.time}}</view>
|
|
<view class="bot" >
|
|
{{item.text}}
|
|
</view>
|
|
</view>
|
|
<!-- </view> -->
|
|
</view>
|
|
<!-- <view class="items">
|
|
<view class="top">
|
|
<view>步骤二</view>
|
|
<view class="time">总耗时 05:00</view>
|
|
</view>
|
|
<view class="bot">
|
|
水与麦苗进行煮,并加入10g的白砂糖。麦苗煮烂,采用料理机搅拌搅碎也可以。过筛,滤出麦苗渣子。
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="top">
|
|
<view>步骤三</view>
|
|
<view class="time">总耗时 05:00</view>
|
|
</view>
|
|
<view class="bot">
|
|
水与麦苗进行煮,并加入10g的白砂糖。麦苗煮烂,采用料理机搅拌搅碎也可以。过筛,滤出麦苗渣子。
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="top">
|
|
<view>步骤四</view>
|
|
<view class="time">总耗时 05:00</view>
|
|
</view>
|
|
<view class="bot">
|
|
水与麦苗进行煮,并加入10g的白砂糖。麦苗煮烂,采用料理机搅拌搅碎也可以。过筛,滤出麦苗渣子。
|
|
</view>
|
|
</view> -->
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<view bindtap="back" class="bottom_button" hover-class="bottom_button_press">
|
|
做菜结束
|
|
</view>
|
|
|
|
|
|
</view>
|