Ver código fonte

样式调整

ith5 5 meses atrás
pai
commit
4261281eb4

+ 1 - 1
src/views/v1/gameLog/activeDay/index.vue

@@ -40,7 +40,7 @@ const gameList = ref([])
 const searchForm = ref({
   game_id: '',
   reg_date: [],
-  days: '',
+  days: '1',
 })
 
 const days_options = ref([

+ 1 - 1
src/views/v1/gameLog/regDay/index.vue

@@ -45,7 +45,7 @@ const searchForm = ref({
 const options = reactive({
   api: api.getRegDayDataList,
   pk: 'id',
-  rowSelection: { showCheckedAll: true },
+  singleLine: true,
   showSummary: true,
   operationColumn: false,
   showSort: false,

+ 1 - 1
src/views/v1/gameLog/regHour/index.vue

@@ -47,9 +47,9 @@ const searchForm = ref({
 const options = reactive({
   api: api.getRegHourDataList,
   pk: 'tdate',
-  rowSelection: { showCheckedAll: true },
   showSort: false,
   showSummary: true,
+  singleLine: true,
   summary: [
     {
       action: 'totalRow',

+ 2 - 2
src/views/v1/gameLog/sdkLoginLog/index.vue

@@ -52,12 +52,12 @@
         </a-col>
         <a-col :sm="8" :xs="24">
           <a-form-item label="登录日期" field="login_time">
-            <a-range-picker class="w-full" v-model="searchForm.login_time" placeholder="请选择登录日期" />
+            <a-range-picker class="w-full" v-model="searchForm.login_time" :clearable="false" />
           </a-form-item>
         </a-col>
         <a-col :sm="8" :xs="24">
           <a-form-item label="注册日期" field="reg_time">
-            <a-range-picker class="w-full" v-model="searchForm.reg_time" placeholder="请选择注册日期" />
+            <a-range-picker class="w-full" v-model="searchForm.reg_time" />
           </a-form-item>
         </a-col>
       </template>