Browse Source

H5:商品详情样式

panyong 3 years ago
parent
commit
c15755c21a

+ 6 - 0
htmldev/dashboard/src/router/index.js

@@ -176,6 +176,12 @@ const router = new VueRouter({
     })
   }
 })
+const originalPush = VueRouter.prototype.push
+
+VueRouter.prototype.push = function push (location, onResolve, onReject) {
+  if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
+  return originalPush.call(this, location).catch(err => err)
+}
 
 router.beforeEach((to, from, next) => {
   updateWechatToken()

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

@@ -296,7 +296,7 @@ export default {
     flex-flow: row wrap;
 
     span {
-      width: 98px;
+      min-width: 98px;
       height: 32px;
       border-radius: 16px;
       border: 1px solid #F2F2F2;
@@ -306,6 +306,8 @@ export default {
       color: #1F1E1E;
       line-height: 32px;
       text-align: center;
+      padding: 0 10px;
+      white-space: nowrap;
 
       &:nth-of-type(3n+1) {
         margin-left: 0;