Commit 73797d81 by 冷斌

fix bug

parent 4f6756fd
<include file="__THEME__/public_header_w3g" /> <include file="__THEME__/public_header_w3g" />
<style> <style>
body { body {
padding: 0 !important; padding: 0 !important;
} }
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
</div> </div>
<div class="layout_h_v_c fixed_bottom_bar"> <div class="layout_h_v_c fixed_bottom_bar">
<span class="text_14_600 color_333333" style="margin-right: 0.5rem;">合计</span> <span class="text_14_600 color_333333" style="margin-right: 0.5rem;">合计</span>
<span class="text_14_600 color_FF3B3B">111</span> <span class="text_14_600 color_FF3B3B">{$price}</span>
<div class="weight_full layout_h_r"> <div class="weight_full layout_h_r">
<div @click="onBuy" class="vip_buy_pay_button layout_center"><span class="text_14_400 color_white">确认支付</span></div> <div @click="onBuy" class="vip_buy_pay_button layout_center"><span class="text_14_400 color_white">确认支付</span></div>
</div> </div>
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
} }
}, },
created:function(){ created:function(){
}, },
computed: { computed: {
totalPrice: function() { totalPrice: function() {
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
success: function(data){ success: function(data){
let res = JSON.parse(data) let res = JSON.parse(data)
if(res.status == 1) { if(res.status == 1) {
} else { } else {
ui.error(res.data) ui.error(res.data)
} }
......
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