eight
2024-09-03 9558a021310c22ec73d144e8af70c0877a50e8c1
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<script setup lang="ts">
 
defineOptions({ name: 'bigscreen' })
 
  const tableData = [{
      date: '2016-05-02',
      name: '王小虎',
      address: '上海市普陀区金沙江路 1518 弄'
    }, {
      date: '2016-05-04',
      name: '王小虎',
      address: '上海市普陀区金沙江路 1517 弄'
    }, {
      date: '2016-05-01',
      name: '王小虎',
      address: '上海市普陀区金沙江路 1519 弄'
    }, {
      date: '2016-05-03',
      name: '王小虎',
      address: '上海市普陀区金沙江路 1516 弄'
    }]
 
  const names = ["Alice", "Bob", "Charlie", "David", "Eve", "Frank", "Grace",
    "特朗普", "马卡龙", "普金", "穆迪老仙", "拜登", "卡特"]
  const visibleCount = 5 // 可同时显示的名字数量
  const startIndex = ref<number>(0);
 
  const visibleNames : string[] =  computed(() => {
    const endIndex = (startIndex.value + visibleCount) % names.length;
    if (endIndex > startIndex.value) {
      return names.slice(startIndex.value, endIndex);
    } else {
      return [...names.slice(startIndex.value), ...names.slice(0, endIndex)];
    }
  })
 
  const startScrolling = () => {
    setInterval(() => {
      // console.info("...")
      startIndex.value = (startIndex.value + visibleCount) % names.length;
    }, 3000); // 每两秒滚动一次
  }
 
  onMounted( () => {
    startScrolling()
  })
 
  const speak = (msg) => {
    //const msg = new SpeechSynthesisUtterance(`请${this.currentNumber}号就诊`);
    const repeatNum = 3
    var speech = new SpeechSynthesisUtterance()
    speech.text = msg
    speech.pitch = 1 // 获取并设置话语的音调(0-2 默认1,值越大越尖锐,越低越低沉)
    speech.rate = 0.9 // 获取并设置说话的速度(0.1-10 默认1,值越大语速越快,越小语速越慢)
    speech.volume = 100 // 获取并设置说话的音量
    speech.lang = 'zh-CN' // 设置播放语言
    // 增加控制播放次数
    let count = 1
    speechSynthesis.speak(speech)
    while (count < repeatNum) {
      speechSynthesis.speak(speech)
      count++
    }
  }
 
</script>
 
<template>
  <el-container>
    <el-header>Header</el-header>
    <el-container>
      <el-aside width="500px">
        <el-table
            :data="tableData"
            stripe
            :show-header="false"
            style="width: 100%">
          <el-table-column
              prop="date"
              label="日期"
              width="180"/>
          <el-table-column
              prop="name"
              label="姓名"
              width="180"/>
          <el-table-column
              prop="address"
              label="地址"/>
        </el-table>
      </el-aside>
      <el-container>
        <el-main>
          <div class="name-scroller">
            <div class="name-box">
              <span v-for="(name, index) in visibleNames" :key="index">{{ name }}</span>
            </div>
          </div>
        </el-main>
        <el-footer>Footer</el-footer>
      </el-container>
    </el-container>
    <el-button @click="speak('请 特朗普 到二号诊室 就诊')" >叫号</el-button>
  </el-container>
</template>
 
<style scoped lang="scss">
.el-header, .el-footer {
  background-color: #B3C0D1;
  color: #333;
  text-align: center;
  line-height: 60px;
}
 
.el-aside {
  background-color: #D3DCE6;
  color: #333;
  text-align: center;
  line-height: 200px;
}
 
.el-main {
  background-color: #E9EEF3;
  color: #333;
  text-align: center;
  line-height: 160px;
}
 
body > .el-container {
  margin-bottom: 40px;
}
 
.el-container:nth-child(5) .el-aside,
.el-container:nth-child(6) .el-aside {
  line-height: 260px;
}
 
.el-container:nth-child(7) .el-aside {
  line-height: 320px;
}
</style>