step1.vue
2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<template>
<div>
<Row>
<div class="create-group">
<span class="create-group-indicator"></span>
<span class="create-group-title">类目选择</span>
<span class="create-group-sub-title">(指定商品的类目)</span>
</div>
</Row>
<Form ref="formData" :model="formData" :label-width="70" :rules="ruleValidate">
<Form-item label="品牌" prop="brandId">
<select-brand v-model="formData.brandId" @change="selectBrand" :selectWhenOnlyOne="true" style="width: 300px;"></select-brand>
</Form-item>
<Form-item label="销售类型" prop="sellType">
<select-sell-type v-model="formData.sellType" style="width: 300px;"
:brandId="formData.brandId"
@change="selectSellType"
:selectWhenOnlyOne="true">
</select-sell-type>
</Form-item>
<Form-item label="类目" prop="sortId">
<select-category :value="formData.sortId" @input="selectSort" style="width: 300px;">
</select-category>
</Form-item>
</Form>
<Button type="primary" @click="nextStep">下一步</Button>
</div>
</template>
<script>
import {step1} from '../store';
export default {
props: ['step', 'product'],
data() {
return step1.call(this);
},
methods: {
nextStep: function() {
this.$refs.formData.validate((valid) => {
if (valid) {
this.goNext();
} else {
this.$Message.error('请填写必填项!');
}
});
},
goNext: function() {
this.step.value = 1;
this.$router.push({name: 'product.create.step2'});
},
selectBrand(brand) {
this.product.brandId = brand.brandId;
this.product.brandName = brand.brandName;
},
selectSort(sorts) {
this.formData.sortId = sorts;
this.product.maxSortId = sorts[0].value;
this.product.middleSortId = sorts[1].value;
this.product.smallSortId = sorts[2].value;
this.product.maxSortName = sorts[0].label;
this.product.middleSortName = sorts[1].label;
this.product.smallSortName = sorts[2].label;
},
selectSellType(sellerType) {
this.product.sellType = sellerType;
}
}
};
</script>
<style lang="scss" scoped>
$prefix: product-create;
.#{product-create}__step1-next {
text-align: center;
display: block;
margin: 20px 0;
}
</style>