1
Surpriseplus
2022-09-16 8d1a91c23df335b090e38b2edd15203aa3b03da9
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<template>
  <div class="cenent">
    <div class="content">
      <iframe
        src="http://58.59.29.50:11011/"
        style="width: 100%; height: 100%"
      ></iframe>
      <!-- <el-select
        :popper-append-to-body="false"
        v-model="value"
        placeholder="请选择"
        popper-class="selectFrom"
      >
        <el-option
          v-for="item in options"
          :key="item.value"
          :label="item.label"
          :value="item.value"
        >
        </el-option>
      </el-select> -->
    </div>
  </div>
</template>
 
<script>
export default {
  //import引入的组件需要注入到对象中才能使用
  components: {},
  data() {
    //这里存放数据
    return {
      options: [
        {
          value: "选项1",
          label: "黄金糕",
        },
        {
          value: "选项2",
          label: "双皮奶",
        },
        {
          value: "选项3",
          label: "蚵仔煎",
        },
        {
          value: "选项4",
          label: "龙须面",
        },
        {
          value: "选项5",
          label: "北京烤鸭",
        },
      ],
      value: "选项1",
    };
  },
  //方法集合
  methods: {},
  created() {},
};
</script>
<style lang="less" scoped>
//@import url(); 引入公共css类
.cenent {
  overflow: hidden;
  width: 100%;
  height: 100%;
  // background-color: #bfa;
  box-sizing: border-box;
  padding-bottom: 40px;
  .content {
    width: 100%;
    height: 100%;
    // background: url("../../../assets/img/联动_04.png") no-repeat center;
    // background-size: 100% 100%;
    position: relative;
  }
  .content /deep/.el-select {
    position: absolute;
    top: 60px;
    right: 60px;
    background-color: #053469;
    width: 412px;
    height: 96px;
    .el-input {
      background-color: #053469;
      width: 100%;
      height: 100%;
      .el-input__inner {
        background-color: #053469;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 40px;
      }
      .el-input__suffix {
        padding-right: 28px;
      }
    }
    .selectFrom {
      height: auto;
 
      .el-select-dropdown__item {
        font-size: 40px !important;
        //   padding: 80px 0 !important;
        margin-top: 20px;
 
        margin-bottom: 20px;
      }
    }
  }
}
</style>