mo 1 year ago
parent
commit
630b444665

+ 2 - 2
config/index.js

@@ -9,7 +9,7 @@ module.exports = {
 
 
     // Paths
     // Paths
     assetsSubDirectory: 'static',
     assetsSubDirectory: 'static',
-    assetsPublicPath: './',
+    assetsPublicPath: '/',
     proxyTable: {
     proxyTable: {
       '/api-mall-admin': {
       '/api-mall-admin': {
         target: proxyUrl,
         target: proxyUrl,
@@ -58,7 +58,7 @@ module.exports = {
     // Paths
     // Paths
     assetsRoot: path.resolve(__dirname, '../dist'),
     assetsRoot: path.resolve(__dirname, '../dist'),
     assetsSubDirectory: 'static',
     assetsSubDirectory: 'static',
-    assetsPublicPath: './',
+    assetsPublicPath: '/',
 
 
     /**
     /**
      * Source Maps
      * Source Maps

+ 9 - 9
src/views/pms/product/add.vue

@@ -1,12 +1,12 @@
-<template> 
-  <product-detail :is-edit='true'></product-detail>
+<template>
+   
+  <product-detail :is-edit="true" :is-add="true"></product-detail>
 </template>
 </template>
 <script>
 <script>
-  import ProductDetail from './components/ProductDetail'
-  export default {
-    name: 'addProduct',
-    components: { ProductDetail }
-  }
+import ProductDetail from "./components/ProductDetail";
+export default {
+  name: "addProduct",
+  components: { ProductDetail },
+};
 </script>
 </script>
-<style>
-</style>
+<style></style>

+ 17 - 14
src/views/pms/product/components/ProductDetail.vue

@@ -11,6 +11,7 @@
       v-show="showStatus[0]"
       v-show="showStatus[0]"
       v-model="productParam"
       v-model="productParam"
       :is-edit="isEdit"
       :is-edit="isEdit"
+      :is-add="isAdd"
       @nextStep="nextStep"
       @nextStep="nextStep"
     >
     >
     </product-info-detail>
     </product-info-detail>
@@ -18,6 +19,7 @@
       v-if="showStatus[1]"
       v-if="showStatus[1]"
       v-model="productParam"
       v-model="productParam"
       :is-edit="isEdit"
       :is-edit="isEdit"
+      :is-add="isAdd"
       @nextStep="nextStep"
       @nextStep="nextStep"
       @prevStep="prevStep"
       @prevStep="prevStep"
     >
     >
@@ -26,9 +28,10 @@
       v-if="showStatus[2]"
       v-if="showStatus[2]"
       v-model="productParam"
       v-model="productParam"
       :is-edit="isEdit"
       :is-edit="isEdit"
+      :is-add="isAdd"
       @nextStep="nextStep"
       @nextStep="nextStep"
-       @prevStep="prevStep"
-       @finishCommit="finishCommit"
+      @prevStep="prevStep"
+      @finishCommit="finishCommit"
     >
     >
     </product-attr-detail>
     </product-attr-detail>
     <!-- <product-relation-detail
     <!-- <product-relation-detail
@@ -122,6 +125,10 @@ export default {
       type: Boolean,
       type: Boolean,
       default: false,
       default: false,
     },
     },
+    isAdd: {
+      type: Boolean,
+      default: false,
+    },
   },
   },
   data() {
   data() {
     return {
     return {
@@ -167,16 +174,14 @@ export default {
           cancelButtonText: "取消",
           cancelButtonText: "取消",
           type: "warning",
           type: "warning",
         }).then(() => {
         }).then(() => {
-          updateProduct(this.$route.query.id, this.productParam).then(
-            (response) => {
-              this.$message({
-                type: "success",
-                message: "提交成功",
-                duration: 1000,
-              });
-              this.$router.back();
-            }
-          );
+          updateProduct(this.$route.query.id, this.productParam).then((response) => {
+            this.$message({
+              type: "success",
+              message: "提交成功",
+              duration: 1000,
+            });
+            this.$router.back();
+          });
         });
         });
       } else if (!this.$route.query.id && isEdit) {
       } else if (!this.$route.query.id && isEdit) {
         this.$confirm("是否要提交该产品", "提示", {
         this.$confirm("是否要提交该产品", "提示", {
@@ -205,5 +210,3 @@ export default {
   width: 800px;
   width: 800px;
 }
 }
 </style>
 </style>
-
-

+ 7 - 0
src/views/pms/product/components/ProductInfoDetail.vue

@@ -124,6 +124,10 @@ export default {
       type: Boolean,
       type: Boolean,
       default: false,
       default: false,
     },
     },
+    isAdd: {
+      type: Boolean,
+      default: false,
+    },
   },
   },
   data() {
   data() {
     return {
     return {
@@ -160,6 +164,9 @@ export default {
     };
     };
   },
   },
   async created() {
   async created() {
+    if (this.isAdd) {
+      this.showCascader = true;
+    }
     await this.getProductCateList();
     await this.getProductCateList();
     await this.getBrandList();
     await this.getBrandList();
   },
   },