提交一下
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
<template>
|
||||
<el-select v-model="value" placeholder="品类" size="small">
|
||||
<section class="AppSelect" >
|
||||
<div class="label">类型</div>
|
||||
<el-select v-model="value" placeholder="全部" size="small" @change="handleSearch">
|
||||
<el-option
|
||||
v-for="item in options"
|
||||
:key="item.value"
|
||||
@@ -7,6 +9,7 @@
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -15,16 +18,39 @@ export default {
|
||||
label: "下拉菜单",
|
||||
data() {
|
||||
return {
|
||||
options: [],
|
||||
options: $dicts.类型,
|
||||
value: ''
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
refs: v => v.$parent.getItemRefs(),
|
||||
},
|
||||
methods: {
|
||||
handleSearch(v) {
|
||||
const list = this.refs['6e6c93d7-5b24-4d75-a0d0-4beb130045ed'].$refs.main
|
||||
list.search.type = v
|
||||
list.getData()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
:deep(.el-input__inner) {
|
||||
.AppSelect {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.AppSelect .el-input__inner {
|
||||
background: linear-gradient(180deg, rgba(12, 53, 111, 0) 0%, #0C356F 100%);
|
||||
border: 1px solid #1760AE;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.AppSelect .label {
|
||||
white-space: nowrap;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -87,11 +87,14 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
getData() {
|
||||
const {$http, $waitFor} = window
|
||||
$waitFor($http).then(() => Promise.all([this.getCameras(), this.getStoreKeyGoods(), this.getCategorySales()])).then(() => {
|
||||
this.stores = this.stores.map(({storeName, storeCode, storeCameraVOList = []}) => {
|
||||
const keyGoods = this.storeKeyGoods.filter(e => e.storeCode == storeCode)
|
||||
const categorySale = this.categorySales.filter(e => e.storeCode == storeCode)
|
||||
return {storeCode, storeName, camera: storeCameraVOList.map(e => e.url), keyGoods, categorySale}
|
||||
})
|
||||
})
|
||||
},
|
||||
getCameras() {
|
||||
return $http.post("/data-boot/la/screen/multipleStoreBoard/storeCamera", {
|
||||
@@ -122,15 +125,14 @@ export default {
|
||||
},
|
||||
gotoDetail(store) {
|
||||
$glob.query = {storeCode: store.storeCode}
|
||||
$glob.group = "9f299712-5549-413b-a93b-7c3e3b5bfadb"
|
||||
const sid = "9f299712-5549-413b-a93b-7c3e3b5bfadb"
|
||||
$glob.group = sid
|
||||
this.refs["ff6a5ca5-8cca-4fad-8058-a2ab2388236c"].$refs.main.groupId = sid
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.height = `${this.$el.clientHeight}px`
|
||||
setTimeout(() => {
|
||||
const {$http, $waitFor} = window
|
||||
$waitFor($http).then(() => Promise.all([this.getCameras(), this.getStoreKeyGoods(), this.getCategorySales()])).then(() => this.getData())
|
||||
}, 2000)
|
||||
this.getData()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user