|
@@ -148,10 +148,10 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
- <div class="flex-container">
|
|
|
- <el-input v-model="platformNumberList" class="flex-item" clearable placeholder="平台编号"
|
|
|
+ <div class="flex gap-2.5 flex-wrap">
|
|
|
+ <el-input v-model="platformNumberList" class="flex-item" clearable placeholder="平台编号" style="width: 150px;"
|
|
|
@change="emitChange"></el-input>
|
|
|
- <el-input v-model="platformNameList" class="flex-item" clearable placeholder="平台名称"
|
|
|
+ <el-input v-model="platformNameList" class="flex-item" clearable placeholder="平台名称" style="width: 200px;"
|
|
|
@change="emitChange"></el-input>
|
|
|
<el-input v-model="operationList" class="flex-item" clearable placeholder="运营" @change="emitChange"></el-input>
|
|
|
<el-select
|
|
@@ -162,7 +162,7 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
|
|
|
clearable
|
|
|
collapse-tags
|
|
|
placeholder="填写人"
|
|
|
- style="width: 300px;"
|
|
|
+ style="width: 280px;"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in usersOptions"
|
|
@@ -171,7 +171,7 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
|
|
|
:value="item.value"
|
|
|
/>
|
|
|
</el-select>
|
|
|
- <el-select v-model="countryList" class="flex-item" clearable collapse-tags collapse-tags-tooltip multiple placeholder="国家">
|
|
|
+ <el-select v-model="countryList" class="flex-item" clearable collapse-tags collapse-tags-tooltip multiple placeholder="国家" style="width: 280px;">
|
|
|
<el-option v-for="item in countryOptions" :key="item" :label="item" :value="item" />
|
|
|
<template #footer>
|
|
|
<el-button text size="small" @click="selectCommonGroup1">美洲区</el-button>
|
|
@@ -192,7 +192,7 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
|
|
|
<style scoped>
|
|
|
.flex-container {
|
|
|
display: flex;
|
|
|
- flex-wrap: nowrap;
|
|
|
+ /* flex-wrap: wrap; */
|
|
|
gap: 14.5px; /* 控制间距 */
|
|
|
}
|
|
|
|