|
|
@@ -97,7 +97,7 @@ const getdefaultdata = () => {
|
|
|
dashboardObj.date_type = CheckboxGroup2.value
|
|
|
}
|
|
|
const changeCheckboxGroup1 = (val: any) => {
|
|
|
- if (val.length == 3) {
|
|
|
+ if (val.length == 4) {
|
|
|
checkboxGroup1.value = ['All']
|
|
|
}
|
|
|
if (val.length == 0) {
|
|
|
@@ -213,7 +213,12 @@ const guideStore = useGuideStore()
|
|
|
size="large"
|
|
|
:disabled="checkboxDisabled"
|
|
|
>
|
|
|
- <el-checkbox-button class="filter_button" v-for="item in shipper" :key="item" :value="item">
|
|
|
+ <el-checkbox-button
|
|
|
+ class="filter_button"
|
|
|
+ v-for="item in shipper"
|
|
|
+ :key="item"
|
|
|
+ :value="item"
|
|
|
+ >
|
|
|
{{ item }}
|
|
|
</el-checkbox-button>
|
|
|
</el-checkbox-group>
|