Commit 5ce79ab9 authored by pengguangpu's avatar pengguangpu

手动删除.tea文件夹;

parent 32d589a1
const g = typeof global !== 'undefined' ? global : self;
g.appXAppJson = {
"app": {
"$homepage": "pages/balance/balance"
}
};
{"layout":{"left":{"currentId":"scm_container","size":310},"right":{"currentId":""},"bottom":{"currentId":"devtools","size":164}},"storageVersion":"1.5.5"}
\ No newline at end of file
{ {
"pages": [ "pages": [
"pages/paysuccess/paysuccess",
"pages/balance/balance", "pages/balance/balance",
"pages/scan/scan", "pages/scan/scan",
"pages/paysuccess/paysuccess",
"pages/home/home", "pages/home/home",
"pages/login/login", "pages/login/login",
"pages/index/index" "pages/index/index"
......
...@@ -86,5 +86,5 @@ page { ...@@ -86,5 +86,5 @@ page {
align-content: center; align-content: center;
height: 100%; height: 100%;
margin-bottom: 0rpx; margin-bottom: 0rpx;
border: 2px solid red; /* border: 2px solid red; */
} }
\ No newline at end of file
...@@ -12,15 +12,15 @@ ...@@ -12,15 +12,15 @@
<view style="position:absolute;left:0rpx;top:0rpx;width:624rpx;height:430rpx;"> <view style="position:absolute;left:0rpx;top:0rpx;width:624rpx;height:430rpx;">
<view class="orderPrice"> <view class="orderPrice">
<text style="float:left;">订单总额</text> <text style="float:left;">订单总额</text>
<text style="font-weight:bold;float:right;">¥--.--</text> <text style="font-weight:bold;float:right;">¥{{orderPriceYuan}}</text>
</view> </view>
<view class="discount"> <view class="discount">
<text style="float:left;">商家优惠</text> <text style="float:left;">商家优惠</text>
<text style="font-weight:bold;float:right;">-¥--.--</text> <text style="font-weight:bold;float:right;">-¥{{couponPriceYuan}}</text>
</view> </view>
<view class="payPrice"> <view class="payPrice">
<text style="float:left;" decode=true>共计 {{}} 件&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;实付:</text> <text style="float:left;" decode=true>共计 {{}} 件&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;实付:</text>
<text style="font-weight:bold;float:right;color:#F72911;">-¥--.--</text> <text style="font-weight:bold;float:right;color:#F72911;">-¥{{payPriceYuan}}</text>
</view> </view>
</view> </view>
</view> </view>
......
Page({ Page({
data: {}, data: {
orderPriceYuan:"--.--",
couponPriceYuan:"--.--",
payPriceYuan:"--.--"
},
onLoad() {}, onLoad() {},
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment