ソースを参照

ソース対応

liuxf 4 ヶ月 前
コミット
bb669ae20f
2 ファイル変更5 行追加5 行削除
  1. 2 2
      src/components/PublicRange.vue
  2. 3 3
      src/views/fcbi/sales/sumSettings.vue

+ 2 - 2
src/components/PublicRange.vue

@@ -81,12 +81,12 @@ const props = defineProps({
   // 業種显示控制
   showBusinessType: {
     type: Boolean,
-    default: true
+    default: false
   },
   // FC显示控制
   showFc: {
     type: Boolean,
-    default: true
+    default: false
   },
   // エリア显示控制
   showArea: {

+ 3 - 3
src/views/fcbi/sales/sumSettings.vue

@@ -64,7 +64,7 @@
           :yamada-fc-brand="yamadaFcBrand"
           :yamada-business-type="yamadaBusinessType"
           @check-change="handleCheckChange"
-          :show-business-type="true"
+          :show-fc="true"
       />
       <div class="btn-section">
         <el-button class="btn-aggregation" @click="handleAggregate" v-hasPermi="['fcbi:sales:sum']">集計</el-button>
@@ -112,13 +112,13 @@ const selectedRegions = ref([]);
 const data = reactive({
   // 検索条件を格納するオブジェクト
   queryParams: {
-    brandCode: [],
-    businessTypeCode: [],
     targetPeriodType: TARGET_PERIOD_TYPE.MONTHLY,
     aggregationType: AGGREGATION_TYPE.FC,
     startYear: null,
     startMonth: null,
     annual: null,
+    brandCode: [],
+    businessTypeCode: [],
     regions: []
   }
 });