ssvfdn пре 3 месеци
родитељ
комит
d9c3cc0168

+ 1 - 0
apps/web-antd/src/views/game_control/game_config/index.vue

@@ -27,6 +27,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 80
 	},
 	// 提交函数
 	handleSubmit: onSubmit,

+ 1 - 0
apps/web-antd/src/views/log/agent/login/index.vue

@@ -19,6 +19,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 80
 	},
 	// 提交函数
 	handleSubmit: onSubmit,

+ 1 - 0
apps/web-antd/src/views/log/agent/operation/index.vue

@@ -19,6 +19,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 80
 	},
 	// 提交函数
 	handleSubmit: onSubmit,

+ 1 - 0
apps/web-antd/src/views/player_data/funds_change/index.vue

@@ -36,6 +36,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 80
 	},
 	// 提交函数
 	handleSubmit: onSubmit,

+ 1 - 0
apps/web-antd/src/views/player_data/game_records/index.vue

@@ -36,6 +36,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 80
 	},
 	// 提交函数
 	handleSubmit: onSubmit,

+ 5 - 4
apps/web-antd/src/views/player_data/player_list/index.vue

@@ -36,6 +36,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 50
 	},
 	// 提交函数
 	handleSubmit: onSubmit,
@@ -178,21 +179,21 @@ const playerInfo = (row) => {
 			<QueryForm>
 				<template #search_text="slotProps">
 					<Input-Group compact>
-						<Select name="search_type" style="width: 30%" v-model:value="filterData.search_type">
+						<Select name="search_type" style="width: 110px;" v-model:value="filterData.search_type">
 							<Select-Option value="uname">{{$t('player_data.search.uname')}}</Select-Option>
 							<Select-Option value="nickname">{{$t('player_data.search.nickname')}}</Select-Option>
 							<Select-Option value="user_id">{{$t('player_data.search.user_id')}}</Select-Option>
 						</Select>
-						<Input name="search_text" allowClear :placeholder="$t('player_data.placeholder') + '' + $t('player_data.search[\''+filterData.search_type+'\']')" v-bind="slotProps" style="width:70%"></Input>
+						<Input name="search_text" allowClear :placeholder="$t('player_data.placeholder') + '' + $t('player_data.search[\''+filterData.search_type+'\']')" v-bind="slotProps" style="width:calc(100% - 110px)"></Input>
 					</Input-Group>
 				</template>
 				<template #ip_text="slotProps">
 					<Input-Group compact>
-						<Select name="search_type" style="width: 30%" v-model:value="filterData.ip_type">
+						<Select name="search_type" style="width: 110px;" v-model:value="filterData.ip_type">
 							<Select-Option value="login_ip">{{$t('player_data.search.login_ip')}}</Select-Option>
 							<Select-Option value="reg_ip">{{$t('player_data.search.reg_ip')}}</Select-Option>
 						</Select>
-						<Input name="ip_text" allowClear :placeholder="$t('player_data.placeholder') + '' + $t('player_data.search[\''+filterData.ip_type+'\']')"  v-bind="slotProps" style="width:70%"></Input>
+						<Input name="ip_text" allowClear :placeholder="$t('player_data.placeholder') + '' + $t('player_data.search[\''+filterData.ip_type+'\']')"  v-bind="slotProps" style="width:calc(100% - 110px"></Input>
 					</Input-Group>
 				</template>
 			</QueryForm>

+ 1 - 0
apps/web-antd/src/views/player_data/transform_records/index.vue

@@ -26,6 +26,7 @@ const [QueryForm, formApi] = useVbenForm({
 		componentProps: {
 			class: 'w-full',
 		},
+		labelWidth: 80
 	},
 	// 提交函数
 	handleSubmit: onSubmit,