90 lines
2.4 KiB
Vue
90 lines
2.4 KiB
Vue
|
|
<template>
|
||
|
|
<div class="app-container">
|
||
|
|
<el-row>
|
||
|
|
<el-col :span="24">
|
||
|
|
<el-form :inline="true" :model="dataForm">
|
||
|
|
<el-form-item label="分类">
|
||
|
|
<category-cascader :catelogPath.sync="catelogPath"></category-cascader>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="品牌">
|
||
|
|
<brand-select style="width:160px"></brand-select>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="状态">
|
||
|
|
<el-select style="width:160px" v-model="dataForm.status" clearable>
|
||
|
|
<el-option label="新建" :value="0"></el-option>
|
||
|
|
<el-option label="上架" :value="1"></el-option>
|
||
|
|
<el-option label="下架" :value="2"></el-option>
|
||
|
|
</el-select>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="检索">
|
||
|
|
<el-input style="width:160px" v-model="dataForm.key" clearable></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item>
|
||
|
|
<el-button type="primary" @click="searchSpuInfo">查询</el-button>
|
||
|
|
</el-form-item>
|
||
|
|
</el-form>
|
||
|
|
</el-col>
|
||
|
|
<el-col :span="24">
|
||
|
|
<spuinfo :catId="catId"></spuinfo>
|
||
|
|
</el-col>
|
||
|
|
</el-row>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import CategoryCascader from '../../../components/mall/category-cascader'
|
||
|
|
import BrandSelect from "../../../components/mall/brand-select";
|
||
|
|
import Spuinfo from "./spuinfo";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
//import引入的组件需要注入到对象中才能使用
|
||
|
|
components: {CategoryCascader, Spuinfo, BrandSelect},
|
||
|
|
props: {},
|
||
|
|
name: "SpuList",
|
||
|
|
data() {
|
||
|
|
//这里存放数据
|
||
|
|
return {
|
||
|
|
catId: 0,
|
||
|
|
catelogPath: [],
|
||
|
|
dataForm: {
|
||
|
|
status: "",
|
||
|
|
key: "",
|
||
|
|
brandId: 0,
|
||
|
|
catelogId: 0
|
||
|
|
},
|
||
|
|
catPathSub: null,
|
||
|
|
brandIdSub: null
|
||
|
|
|
||
|
|
};
|
||
|
|
},
|
||
|
|
computed: {},
|
||
|
|
//监控data中的数据变化
|
||
|
|
watch: {},
|
||
|
|
//方法集合
|
||
|
|
methods: {
|
||
|
|
searchSpuInfo() {
|
||
|
|
console.log("搜索条件", this.dataForm);
|
||
|
|
this.PubSub.publish("dataForm", this.dataForm);
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
},
|
||
|
|
mounted() {
|
||
|
|
this.catPathSub = PubSub.subscribe("catPath", (msg, val) => {
|
||
|
|
this.dataForm.catelogId = val[val.length - 1];
|
||
|
|
});
|
||
|
|
this.brandIdSub = PubSub.subscribe("brandId", (msg, val) => {
|
||
|
|
this.dataForm.brandId = val;
|
||
|
|
});
|
||
|
|
},
|
||
|
|
|
||
|
|
beforeDestroy() {
|
||
|
|
PubSub.unsubscribe(this.catPathSub);
|
||
|
|
PubSub.unsubscribe(this.brandIdSub);
|
||
|
|
},
|
||
|
|
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
<style scoped>
|
||
|
|
</style>
|