沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
  <div
    class="search-bar"
    :style="{
      color: property.textColor
    }"
  >
    <!-- 搜索框 -->
    <div
      class="inner"
      :style="{
        height: `${property.height}px`,
        background: property.backgroundColor,
        borderRadius: `${property.borderRadius}px`
      }"
    >
      <div
        class="placeholder"
        :style="{
          justifyContent: property.placeholderPosition
        }"
      >
        <Icon icon="ep:search" />
        <span>{{ property.placeholder || '搜索商品' }}</span>
      </div>
      <div class="right">
        <!-- 搜索热词 -->
        <span v-for="(keyword, index) in property.hotKeywords" :key="index">{{ keyword }}</span>
        <!-- 扫一扫 -->
        <Icon icon="ant-design:scan-outlined" v-show="property.showScan" />
      </div>
    </div>
  </div>
</template>
 
<script setup lang="ts">
import { SearchProperty } from './config'
/** 搜索框 */
defineOptions({ name: 'SearchBar' })
defineProps<{ property: SearchProperty }>()
</script>
 
<style scoped lang="scss">
.search-bar {
  /* 搜索框 */
  .inner {
    position: relative;
    display: flex;
    min-height: 28px;
    font-size: 14px;
    align-items: center;
 
    .placeholder {
      display: flex;
      width: 100%;
      padding: 0 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      word-break: break-all;
      white-space: nowrap;
      align-items: center;
      gap: 2px;
    }
 
    .right {
      position: absolute;
      right: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
  }
}
</style>