调整下名字
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="AppSelect">
|
<section class="AppRemoteSelect">
|
||||||
<div class="label">课长</div>
|
<div class="label">课长</div>
|
||||||
<el-select v-model="value" placeholder="全部" size="small" @change="handleSearch" filterable>
|
<el-select v-model="value" placeholder="全部" size="small" @change="handleSearch" filterable>
|
||||||
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"/>
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"/>
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "AppSelect",
|
name: "AppRemoteSelect",
|
||||||
label: "下拉菜单(接口源)",
|
label: "下拉菜单(接口源)",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -40,19 +40,19 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.AppSelect {
|
.AppRemoteSelect {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.AppSelect .el-input__inner {
|
.AppRemoteSelect .el-input__inner {
|
||||||
background: linear-gradient(180deg, rgba(12, 53, 111, 0) 0%, #0C356F 100%);
|
background: linear-gradient(180deg, rgba(12, 53, 111, 0) 0%, #0C356F 100%);
|
||||||
border: 1px solid #1760AE;
|
border: 1px solid #1760AE;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.AppSelect .label {
|
.AppRemoteSelect .label {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|||||||
Reference in New Issue
Block a user