Commit c7303a54 by 施宇

11

parent 5d4dd074
...@@ -86,6 +86,10 @@ ...@@ -86,6 +86,10 @@
<p class="mui-col-sm-4 mui-col-xs-4" v-else>- -</p> <p class="mui-col-sm-4 mui-col-xs-4" v-else>- -</p>
</template> </template>
</template> </template>
<template v-else-if="itemchild.ac_type==6">
<p class="mui-col-sm-6 mui-col-xs-6" v-html="itemPrice.purchases+'+'"></p>
<p class="mui-col-sm-6 mui-col-xs-6">{{itemPrice.price_ac}}</p>
</template>
<template v-else> <template v-else>
<p class="mui-col-sm-6 mui-col-xs-6" v-html="itemPrice.purchases+'+'"></p> <p class="mui-col-sm-6 mui-col-xs-6" v-html="itemPrice.purchases+'+'"></p>
<p class="mui-col-sm-6 mui-col-xs-6">{{itemPrice.price_cn}}</p> <p class="mui-col-sm-6 mui-col-xs-6">{{itemPrice.price_cn}}</p>
......
...@@ -135,7 +135,7 @@ ...@@ -135,7 +135,7 @@
<span v-html="v.purchases+'+'"></span> <span v-html="v.purchases+'+'"></span>
</td> </td>
<td class="xs-6"> <td class="xs-6">
<span v-html="'¥'+v.price_cn"></span> <span v-html="'¥'+(goodDetail.ac_type==6?v.price_ac:v.price_cn)"></span>
</td> </td>
</template> </template>
</tr> </tr>
...@@ -339,8 +339,9 @@ export default { ...@@ -339,8 +339,9 @@ export default {
if (data.tiered) { if (data.tiered) {
for (let i = 0; i < data.tiered.length; i++) { for (let i = 0; i < data.tiered.length; i++) {
let singleData = data.tiered[i]; let singleData = data.tiered[i];
let acType = this.goodDetail.ac_type;
this.zyladderArr.push({ this.zyladderArr.push({
price: Number(singleData.price_cn).toFixed(4), price: Number((acType==6?singleData.price_ac:singleData.price_cn)).toFixed(4),
num: util.aggxde(singleData.purchases) num: util.aggxde(singleData.purchases)
}); });
if (singleData.price_ac != null) { if (singleData.price_ac != null) {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
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 sign in to comment