|
@@ -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>
|
|
-
|
|
|
|
-
|
|
|