ces
杨磊
2 天以前 5bc507a8a7be9cbbad0fa2472f72b1d336f31ef2
src/views/home/components/searchBox.vue
@@ -36,6 +36,10 @@
        { value: "abstract", label: "摘要" },
        { value: "source", label: "来源" },
      ],
      searchFun: {
        type: Function,
        default: () => {},
      },
    },
  },
  data() {
@@ -47,7 +51,7 @@
  methods: {
    // 搜索处理
    handleSearch() {
      this.$emit("search", {
      this.$emit("searchFun", {
        text: this.searchText,
        type: this.selectedType,
      });
@@ -67,12 +71,11 @@
/* 输入框样式 */
.search-input {
  background-color:transparent;
  background-color: transparent;
}
.inputBox {
  border: 1px solid #B9A587;
  border: 1px solid #b9a587;
  height: 38px;
  width: 400px;
  display: flex;
@@ -106,10 +109,9 @@
.el-select /deep/ .el-input__inner {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #B9A587;
  border: 1px solid #b9a587;
  background-color: transparent;
  border-right: none;
}
.el-input-group__prepend {