12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <view class="quantifyContainer">
-
-
- <view class="quantifyBox">
-
- <view class="oilInfoBox">
- <image src="../../images/oil.svg" mode="aspectFill" />
- <view class="oilInfo">
- <text class="oil">{{nozzleInfo.productName}}油品</text>
- <text class="price">¥{{nozzleInfo.productPrice}}/升</text>
- </view>
- </view>
-
- <view class="inputBox">
-
- <view class="input">
- <text>{{inputTip}}</text>
- <input type="digit" placeholder="0.00" value="{{inputValue}}" bindinput="onInputChange" />
- <text>{{quantify}}</text>
- </view>
-
- <view class="line" />
-
- <view class="fastInput">
- <text class="fastItem" wx:for="{{fastInputs}}" wx:key="index" bindtap="onFastInputClick" data-id="{{item}}">{{item}}{{quantify}}</text>
- </view>
-
- <radio-group class="typeSelect" bindchange="onTypeChange">
- <radio wx:for="{{type}}" wx:key="index" checked="{{item.checked}}" color="#d81e07" value="{{item.name}}">{{item.name}}</radio>
- </radio-group>
- </view>
- </view>
- <text class="anthorization" bind:tap="toAuthorization">授权</text>
- </view>
|