fix: 统计

This commit is contained in:
wanglei
2024-06-28 10:38:07 +08:00
parent 9c5f594a58
commit 77664107fa

View File

@@ -41,13 +41,13 @@
<template #left>
<ai-select
v-model="form.operatorType"
@change="(form.current = 1), getList1()"
@change="(form.current = 1), getList2()"
placeholder="经营类型"
:selectList="$dict.getDict('operatorType')">
</ai-select>
<ai-select
v-model="form.girdCode"
@change="(form.current = 1), getList1()"
@change="(form.current = 1), getList2()"
placeholder="所属网格"
:selectList="gridList">
</ai-select>
@@ -56,16 +56,16 @@
<el-input
v-model="form.shopName"
size="small"
v-throttle="() => {form.current = 1, getList1()}"
v-throttle="() => {form.current = 1, getList2()}"
placeholder="请输入门店名称"
clearable
@clear="form.current = 1, form.shopName = '', getList1()"
@clear="form.current = 1, form.shopName = '', getList2()"
suffix-icon="iconfont iconSearch">
</el-input>
</template>
</ai-search-bar>
<ai-table
:tableData="colConfigs1"
:tableData="tableData1"
:col-configs="colConfigs1"
:total="total"
:current.sync="search.current"
@@ -76,7 +76,7 @@
slot="pic"
align="left">
<template v-slot="{ row }">
<img :src="row.fileUrl" alt="" v-viewer>
<img class="shop-img" :src="row.fileUrl" v-if="row.fileUrl" alt="" v-viewer>
</template>
</el-table-column>
@@ -170,6 +170,7 @@ export default {
this.girdList()
this.queryShopDetail()
this.getList()
this.getList2()
this.countByFiveStars()
})
},
@@ -409,5 +410,10 @@ export default {
width: 100%;
flex: 1;
}
.shop-img{
width: 120px;
height: 120px;
}
}
</style>