|
@@ -149,11 +149,11 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
|
|
|
|
|
|
<template>
|
|
|
<div class="flex gap-2.5 flex-wrap">
|
|
|
- <el-input v-model="platformNumberList" class="flex-item" clearable placeholder="平台编号" style="width: 150px;"
|
|
|
+ <el-input v-model="platformNumberList" class="flex-item" clearable placeholder="平台编号" style="width: 150px;height: 30px"
|
|
|
@change="emitChange"></el-input>
|
|
|
- <el-input v-model="platformNameList" class="flex-item" clearable placeholder="平台名称" style="width: 150px;"
|
|
|
+ <el-input v-model="platformNameList" class="flex-item" clearable placeholder="平台名称" style="width: 150px;height: 30px"
|
|
|
@change="emitChange"></el-input>
|
|
|
- <el-input v-model="operationList" class="flex-item" clearable placeholder="运营" style="width: 150px;" @change="emitChange"></el-input>
|
|
|
+ <el-input v-model="operationList" class="flex-item" clearable placeholder="运营" style="width: 150px;height: 30px" @change="emitChange"></el-input>
|
|
|
<el-select
|
|
|
v-model="usersList"
|
|
|
class="flex-item"
|
|
@@ -162,7 +162,7 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
|
|
|
clearable
|
|
|
collapse-tags
|
|
|
placeholder="填写人"
|
|
|
- style="width: 180px;"
|
|
|
+ style="width: 160px;"
|
|
|
>
|
|
|
<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="国家" style="width: 150px;">
|
|
|
+ <el-select v-model="countryList" class="flex-item" clearable collapse-tags collapse-tags-tooltip multiple placeholder="国家" style="width: 160px;">
|
|
|
<el-option v-for="item in countryOptions" :key="item" :label="item" :value="item" />
|
|
|
<template #footer>
|
|
|
<el-button text size="small" @click="selectCommonGroup1">美洲区</el-button>
|