Browse Source

商品0元问题

lex-xin 5 years ago
parent
commit
ef18d37bc7

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.16a8938f.css


+ 0 - 1
dist/static/css/chunk-2c7693d9.5b722d11.css

@@ -1 +0,0 @@
-.el-button--primary[data-v-15e68305],.el-button--primary[data-v-15e68305]:active,.el-button--primary[data-v-15e68305]:focus,.el-button--primary[data-v-15e68305]:hover{background:#14928a;border-color:#14928a;color:#fff}.el-row[data-v-15e68305]{margin-top:40px}.el-col[data-v-15e68305]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:50%}.el-input-group[data-v-15e68305]{width:200px;margin:0 20px}[data-v-15e68305] .el-tree-node__content{height:40px!important}[data-v-15e68305] .avatar-uploader .el-upload{border:1px dashed #d9d9d9;border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.avatar-uploader .el-upload[data-v-15e68305]:hover{border-color:#409eff}.avatar-uploader-icon[data-v-15e68305]{font-size:28px;color:#8c939d;width:120px;height:120px;line-height:120px;text-align:center}.avatar[data-v-15e68305]{width:120px;height:120px;display:block}

+ 1 - 0
dist/static/css/chunk-602db69c.68e604a4.css

@@ -0,0 +1 @@
+.el-button--primary[data-v-19289594],.el-button--primary[data-v-19289594]:active,.el-button--primary[data-v-19289594]:focus,.el-button--primary[data-v-19289594]:hover{background:#14928a;border-color:#14928a;color:#fff}.el-row[data-v-19289594]{margin-top:40px}.el-col[data-v-19289594]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:50%}.el-input-group[data-v-19289594]{width:200px;margin:0 20px}[data-v-19289594] .el-tree-node__content{height:40px!important}[data-v-19289594] .avatar-uploader .el-upload{border:1px dashed #d9d9d9;border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.avatar-uploader .el-upload[data-v-19289594]:hover{border-color:#409eff}.avatar-uploader-icon[data-v-19289594]{font-size:28px;color:#8c939d;width:120px;height:120px;line-height:120px;text-align:center}.avatar[data-v-19289594]{width:120px;height:120px;display:block}

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.4f10bb34.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.6672d7f2.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-2c7693d9.ba7cb7ad.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-5077f997.2abc6b46.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-602db69c.152cb4a3.js


+ 1 - 1
src/layout/components/Sidebar/index.vue

@@ -46,7 +46,7 @@ export default {
       if (meta.activeMenu) {
         return meta.activeMenu
       }
-      console.log(meta, path)
+      // console.log(meta, path)
       return path
     },
     showLogo () {

+ 3 - 2
src/views/businessManager/shopManager/shopOperation.vue

@@ -101,10 +101,11 @@ import { categoryListTree, goodsAdd, goodsUpdate, goodsSingleQuery } from '@/api
 // import store from '@/store'
 import { getToken } from '@/utils/auth'
 let validPrice = (rule, value, callback) => {
-  if (!value) {
+  // console.log(value)
+  if (value == '' && typeof value == 'string') {
     callback(new Error('请输入金额'))
   } else if (value < 0) {
-    callback(new Error('输入金额必须大于0'))
+    callback(new Error('输入金额必须大于或等于0'))
   } else if (value >= 100000) {
     callback(new Error('输入金额必须小于100000'))
   } else {

+ 6 - 6
src/views/teamDetail/teamCourseList.vue

@@ -194,7 +194,7 @@ export default {
         total: 0, // 总条数
         page_size: [10, 20, 40, 50] // 选择限制显示条数
       },
-      teacherList: [],
+      // teacherList: [],
       // classList: []
     }
 
@@ -205,11 +205,11 @@ export default {
   mounted () {
     this.getList();
     // 获取所有老师
-    getTeacher().then(res => {
-      if (res.code == 200) {
-        this.teacherList = res.data;
-      }
-    })
+    // getTeacher().then(res => {
+    //   if (res.code == 200) {
+    //     this.teacherList = res.data;
+    //   }
+    // })
 
     // 获取班级列表
     // getMusicGroupAllClass().then(res => {

+ 2 - 2
vue.config.js

@@ -18,10 +18,10 @@ const name = defaultSettings.title || '管乐迷后台管理系统' // page titl
 // //  https://online.dayaedu.com
 // let target = 'https://online.dayaedu.com' //线上
 // let target = 'http://testadm.dayaedu.com/' //test环境
-let target = 'http://192.168.3.27:8000' // 箭河
+// let target = 'http://192.168.3.27:8000' // 箭河
 // let target = 'http://192.168.3.28:8000' //邹璇
 // let target = 'http://192.168.3.8:18000' //勇哥
-// let target = 'http://admin.dayaedu.com/' // 测试服
+let target = 'http://admin.dayaedu.com' // 测试服
 // let target = 'http://192.168.3.48:8080' // 乔
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 module.exports = {

Some files were not shown because too many files changed in this diff