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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
| <template>
| <div
| class="endoscope-image"
| v-loading="loading"
| element-loading-text="数据加载中"
| element-loading-spinner="el-icon-loading"
| element-loading-background="rgba(0, 0, 0, 0.2)"
| >
| <div class="endoscope-image-content">
| <el-carousel :autoplay="false" height="500px">
| <el-carousel-item v-for="(url, key) in imagesList" :key="'key' + key">
| <el-image
| style="width: 100%; height: 100%"
| :src="url"
| fit="contain"
| ></el-image>
| </el-carousel-item>
| </el-carousel>
| </div>
| <div class="endoscope-image-footer">
| {{ stateInfo.message }}
| <el-button
| type="success"
| size="small"
| :disabled="stateInfo.disabledStart"
| @click="startShowPicture"
| >启动更新</el-button
| >
| <el-button
| type="danger"
| size="small"
| :disabled="stateInfo.disabledStop"
| @click="stopShowPicture"
| >停止更新</el-button
| >
| <el-button
| type="primary"
| size="small"
| :disabled="stateInfo.disabledFlush"
| @click="searchPicture"
| >刷新</el-button
| >
| </div>
| </div>
| </template>
|
| <script>
| import getWebUrl from "@/assets/js/tools/getWebUrl";
| import getFileName from "@/assets/js/tools/getFileName";
| import {
| searchPicture,
| startShowPicture,
| stopShowPicture,
| } from "../js/realTimeAio";
|
| export default {
| name: "endoscopeImage",
| props: {
| devId: {
| type: [String, Number],
| default: 805900001,
| },
| state: {
| type: Number,
| default: -1,
| },
| },
| data() {
| return {
| loading: false,
| images: [],
| };
| },
| methods: {
| /**
| * 查询内窥镜图片
| */
| searchPicture() {
| this.loading = true;
| searchPicture(this.devId)
| .then((res) => {
| this.loading = false;
| res = res.data;
| let data = [];
| if (res.code) {
| // debugger;
| data = res.data.map((item) => {
| return getFileName(item);
| });
| }
| this.images = data;
| })
| .catch((error) => {
| this.loading = false;
| this.images = [];
| console.log(error);
| });
| },
| /**
| * 启动显示图片
| */
| startShowPicture() {
| let devId = this.devId;
| this.$confirm("确定启动更新图片", {
| title: "系统提示",
| })
| .then((res) => {
| this.loading = true;
| startShowPicture(devId)
| .then((res) => {
| this.loading = false;
| res = res.data;
| if (res.code && res.data) {
| this.$layer.msg("启动成功");
| } else {
| this.$layer.msg("启动失败");
| }
| })
| .catch((error) => {
| this.loading = false;
| this.$layer.msg("启动失败,请检查网络!");
| console.log(error);
| });
| })
| .catch(() => {});
| },
| /**
| * 停止显示图片
| */
| stopShowPicture() {
| let devId = this.devId;
| this.$confirm("确定停止更新图片", {
| title: "系统提示",
| })
| .then((res) => {
| this.loading = true;
| stopShowPicture(devId)
| .then((res) => {
| this.loading = false;
| res = res.data;
| if (res.code && res.data) {
| this.$layer.msg("停止成功");
| } else {
| this.$layer.msg("停止失败");
| }
| })
| .catch((error) => {
| this.loading = false;
| this.$layer.msg("停止失败,请检查网络!");
| console.log(error);
| });
| })
| .catch(() => {});
| },
| },
| computed: {
| imagesList() {
| return this.images.map((item) => {
| return (
| getWebUrl() +
| "A059/images/" +
| this.devId +
| "/" +
| item +
| "?t=" +
| new Date().getTime()
| );
| });
| },
| stateInfo() {
| let num = this.state;
| let info = {
| disabledStart: true,
| disabledStop: true,
| disabledFlush: true,
| message: "通讯异常",
| };
| switch (num) {
| case 0:
| info = {
| disabledStart: false,
| disabledStop: true,
| disabledFlush: false,
| message: "图片停止更新",
| };
| break;
| case 1:
| info = {
| disabledStart: true,
| disabledStop: false,
| disabledFlush: false,
| message: "图片更新中...",
| };
| break;
| }
| return info;
| },
| },
| mounted() {
| this.searchPicture();
| },
| destroyed() {},
| };
| </script>
|
| <style scoped>
| .endoscope-image {
| background-color: #ffffff;
| }
| .endoscope-image-footer {
| padding: 16px 16px;
| background-color: #e1e1df;
| text-align: right;
| }
| </style>
|
|