mo-bai 4 years ago
parent
commit
02f60d454a
2 changed files with 5 additions and 2 deletions
  1. 2
      apis/orderApi.js
  2. 5
      pages/cart/index.vue

2
apis/orderApi.js

@ -61,7 +61,7 @@ export const submitClientOrder = (data) => {
*/
export const getClientOrderInfo = (data) => {
return http.get({
url: '/base-paper-trading/get/customer/order/details1',
url: '/base-paper-trading/get/customer/order/details',
data
})
}

5
pages/cart/index.vue

@ -88,6 +88,9 @@ import { getShoppingCarList, removeShoppingCar, closePaperReserve } from '@/apis
import noData from './no-data.vue'
import { round } from '@/utils/index.js'
export default {
components: {
noData
},
data() {
return {
option: {
@ -264,7 +267,7 @@ export default {
isShopSelectedAll(products) {
let tempArr = true
for (let product of products) {
if (product.checked) {
if (!product.checked) {
tempArr = false
break
}

Loading…
Cancel
Save