Sfoglia il codice sorgente

H5:商品下单-桌号扫码输入数据解析

panyong 3 anni fa
parent
commit
a33f7bf764

+ 6 - 2
htmldev/dashboard/src/views/sell/editTableNum/index.vue

@@ -74,7 +74,7 @@ export default {
           success: function (result) {
             setTimeout(() => {
               const { resultStr } = result
-              vm.placeNum = resultStr
+              vm.placeNum = resultStr && JSON.parse(resultStr).place_number
             }, 1000)
           },
           fail: err => {
@@ -88,7 +88,7 @@ export default {
           }, function (result) {
             const { codeContent } = result
             if (codeContent) {
-              vm.placeNum = codeContent
+              vm.placeNum = codeContent && JSON.parse(codeContent).place_number
             }
           })
         } else {
@@ -99,6 +99,10 @@ export default {
       }
     },
     onsubmit () {
+      if (!this.placeNum) {
+        Toast('请输入桌号')
+        return
+      }
       this.showFlag = false
       this.$router.push({ name: 'SellPay' })
     }

+ 3 - 3
htmldev/dashboard/src/views/sell/food/food.vue

@@ -241,6 +241,7 @@ export default {
 
   .food-content {
     min-height: 90%;
+    padding-top: 8px;
     padding-bottom: 100px;
     border-radius: 16px 16px 0 0;
     background: #fff;
@@ -248,10 +249,9 @@ export default {
 
   .image-header {
     position: relative;
-    width: 100%;
+    width: calc(100% - 16px);
     height: 210px;
-    border-radius: 16px 16px 0 0;
-    box-shadow: 0 -2px 4px 0 rgba(13, 13, 13, 0.37);
+    margin: 0 auto;
     overflow: hidden;
 
     img {

+ 2 - 2
htmldev/dashboard/src/views/sell/shopcart/shopcart.vue

@@ -139,7 +139,7 @@ export default {
       fold: true,
       scroll: null,
       pagenum: 1,
-      pagesize: 20,
+      pagesize: 100,
       numFetchStatus: 0, // 购物车列表加载状态
       arrFetchStatus: ['正在努力加载~', '到底了'],
       booFetchData: false // 页面第一次获取数据是否成功
@@ -198,7 +198,7 @@ export default {
     init () {
       this.selectFoods = []
       this.pagenum = 1
-      this.pagesize = 20
+      this.pagesize = 100
       this.numFetchStatus = 0
       this.booFetchData = false