|
@@ -1,21 +1,32 @@
|
|
|
<template>
|
|
|
- <el-select
|
|
|
- v-model="proxyValue"
|
|
|
- multiple
|
|
|
- filterable
|
|
|
- remote
|
|
|
- reserve-keyword
|
|
|
- placeholder="请选择平台"
|
|
|
- :remote-method="remoteMethod"
|
|
|
- :loading="loading"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in options"
|
|
|
- :key="item.id"
|
|
|
- :label="item.platform_name"
|
|
|
- :value="item.id"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
+ <div class="select-plat__wrapper" style="width:100%">
|
|
|
+ <el-select
|
|
|
+ v-model="proxyValue"
|
|
|
+ style="width:100%"
|
|
|
+ multiple
|
|
|
+ filterable
|
|
|
+ remote
|
|
|
+ reserve-keyword
|
|
|
+ placeholder="请选择平台"
|
|
|
+ :remote-method="remoteMethod"
|
|
|
+ :loading="loading"
|
|
|
+ @change="updateCacheValue"
|
|
|
+ @visible-change="handleInit"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in options"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.platform_name"
|
|
|
+ :value="item.id"
|
|
|
+ >
|
|
|
+ <p @click="toggle(item)">{{ item.platform_name }}</p>
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+
|
|
|
+ <div class="tags" style="display:flex;gap:5px;margin-top:10px">
|
|
|
+ <el-tag v-for="item in cacheValues" :key="item.id" size="mini" closable @close="handleClose(item)">{{ item.platform_name }}</el-tag>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -24,6 +35,7 @@ export default {
|
|
|
props: ['value', 'plat_options', 'allowInit'],
|
|
|
data() {
|
|
|
return {
|
|
|
+ cacheValues: [],
|
|
|
options: [],
|
|
|
list: [],
|
|
|
loading: false,
|
|
@@ -42,7 +54,9 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
plat_options: {
|
|
|
- handler() { this.options = this.plat_options },
|
|
|
+ handler() {
|
|
|
+ this.cacheValues = this.plat_options || []
|
|
|
+ },
|
|
|
deep: true,
|
|
|
immediate: true
|
|
|
},
|
|
@@ -53,11 +67,26 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleInit(visible) {
|
|
|
+ // 关闭后初始化
|
|
|
+ visible && this.remoteMethod()
|
|
|
+ },
|
|
|
+ handleClose(tag) {
|
|
|
+ const { id } = tag
|
|
|
+ const _cacheIndex = this.cacheValues.findIndex(({ id: _id }) => _id === id)
|
|
|
+ const _sourceIndex = this.proxyValue.findIndex(v => v === id)
|
|
|
+ this.cacheValues.splice(_cacheIndex, 1)
|
|
|
+ this.proxyValue.splice(_sourceIndex, 1)
|
|
|
+ },
|
|
|
+ toggle(item) {
|
|
|
+ const { id } = item
|
|
|
+ const findIndex = this.cacheValues.findIndex(({ id: _id }) => _id === id)
|
|
|
+ if (findIndex >= 0) return this.cacheValues.splice(findIndex, 1)
|
|
|
+ this.cacheValues.push(item)
|
|
|
+ },
|
|
|
async remoteMethod(platform_name) {
|
|
|
this.selectLoading = true
|
|
|
this.options = []
|
|
|
- // this.proxyValue = []
|
|
|
-
|
|
|
const { code, data, message } = await asyncRequest.platlist({ platform_name })
|
|
|
if (code === 0) {
|
|
|
const { list } = data
|
|
@@ -72,3 +101,23 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.select-plat__wrapper{
|
|
|
+ ::v-deep(.el-tag){
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tags{
|
|
|
+ gap:5px;
|
|
|
+ display:flex;
|
|
|
+ margin-top:10px;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ ::v-deep(.el-tag){
|
|
|
+ display: flex !important;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|