|
|
@ -85,7 +85,7 @@ |
|
|
|
|
|
|
|
总价: <span class="import-text total-price">{{ totalPrice }}</span> (不含运费) |
|
|
|
</div> |
|
|
|
<el-button type="primary" @click="handleCheckout" :disabled="selectedRows.length === 0">去结算</el-button> |
|
|
|
<el-button type="primary" :disabled="selectedRows.length === 0">去结算</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -179,7 +179,7 @@ export default { |
|
|
|
}, |
|
|
|
// 判断全选 |
|
|
|
judgeSelectAll() { |
|
|
|
this.selectedRows = [] |
|
|
|
// this.selectedRows = [] |
|
|
|
this.list.forEach(v=>{ |
|
|
|
if (v.goods.some(x=>x.sku.flag=='on')) { |
|
|
|
if(v.goods.some(x=>x.sku.flag=="on"&&!x.selected) ) { |
|
|
|