Browse Source

修改提示

lex-xin 4 years ago
parent
commit
eae684cab6

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


+ 1 - 1
dist/static/css/chunk-21eba102.fc1eae64.css → dist/static/css/chunk-71b38ba0.bb27d388.css

@@ -1 +1 @@
-.newBand[data-v-78374f6c]{display:inline-block}[data-v-78374f6c] .el-input-number.is-controls-right .el-input__inner{text-align:left}.setWidth[data-v-78374f6c]{display:inline-block}.lookTitle[data-v-78374f6c]{height:40px;line-height:40px;font-weight:700;background-color:#edeef0;padding:0 20px;margin-bottom:20px}.showShop[data-v-78374f6c]{height:40px;line-height:40px;width:150px;background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed;color:#333;opacity:1;border-radius:4px;border:1px solid #dcdfe6;padding:0 15px;margin-right:10px}.shopListWrap[data-v-78374f6c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}
+.newBand[data-v-6fcf95dc]{display:inline-block}[data-v-6fcf95dc] .el-input-number.is-controls-right .el-input__inner{text-align:left}.setWidth[data-v-6fcf95dc]{display:inline-block}.lookTitle[data-v-6fcf95dc]{height:40px;line-height:40px;font-weight:700;background-color:#edeef0;padding:0 20px;margin-bottom:20px}.showShop[data-v-6fcf95dc]{height:40px;line-height:40px;width:150px;background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed;color:#333;opacity:1;border-radius:4px;border:1px solid #dcdfe6;padding:0 15px;margin-right:10px}.shopListWrap[data-v-6fcf95dc]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}

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


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-21eba102.88e19b6e.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-71b38ba0.b65cdd2d.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-a23e2ba4.cd5db44f.js


+ 5 - 1
src/views/businessManager/orderManager/financeManager.vue

@@ -894,7 +894,11 @@ export default {
           load.startLoading();
           axios(options).then((res) => {
             load.endLoading();
-            this.$message.info(res.data.data);
+            if(res.data.code == 200) {
+              this.$message.info(res.data.data);
+            } else {
+              this.$message.error(res.data.msg);
+            }
             // let blob = new Blob([res.data], {
             //   // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
             //   type: "application/vnd.ms-excel;charset=utf-8",

+ 5 - 1
src/views/businessManager/orderManager/income.vue

@@ -454,7 +454,11 @@ export default {
           axios(options)
             .then((res) => {
               load.endLoading();
-              this.$message.info(res.data.data);
+              if(res.data.code == 200) {
+                this.$message.info(res.data.data);
+              } else {
+                this.$message.error(res.data.msg);
+              }
               // this.$confirm(res.data.data, "提示", {
               //   confirmButtonText: "确定",
               //   cancelButtonText: "取消",

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