@tmesoft/data-screen-show 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +150 -0
- package/dist/assets/front/din-bold-2.ttf +0 -0
- package/dist/assets/screen/appointment-open/icon.png +0 -0
- package/dist/assets/screen/device-assets/icon.png +0 -0
- package/dist/assets/screen/image/icon.png +0 -0
- package/dist/assets/screen/lab-discuss/icon.png +0 -0
- package/dist/assets/screen/lab-grade/icon.png +0 -0
- package/dist/assets/screen/lab-number/card-bottom.png +0 -0
- package/dist/assets/screen/lab-number/card-top.png +0 -0
- package/dist/assets/screen/lab-number/icon.png +0 -0
- package/dist/assets/screen/lab-number/semester-label.png +0 -0
- package/dist/assets/screen/lab-number/today-label.png +0 -0
- package/dist/assets/screen/lab-report/icon.png +0 -0
- package/dist/assets/screen/normal-box.png +0 -0
- package/dist/assets/screen/null-icon.png +0 -0
- package/dist/assets/screen/research-result/icon.png +0 -0
- package/dist/assets/screen/safe/bg-image.png +0 -0
- package/dist/assets/screen/safe/electricity-icon.png +0 -0
- package/dist/assets/screen/safe/monitor-icon.png +0 -0
- package/dist/assets/screen/safe/person-icon.png +0 -0
- package/dist/assets/screen/safe/poison-icon.png +0 -0
- package/dist/assets/screen/safe/safe-icon.png +0 -0
- package/dist/assets/screen/safe/safe-warn.png +0 -0
- package/dist/assets/screen/safe/smoke-icon.png +0 -0
- package/dist/assets/screen/safe/warn-icon.png +0 -0
- package/dist/assets/screen/safe/water-icon.png +0 -0
- package/dist/assets/screen/safe/window-icon.png +0 -0
- package/dist/assets/screen/teach-team/chart-icon.png +0 -0
- package/dist/assets/screen/teach-team/icon.png +0 -0
- package/dist/assets/screen/text/icon.png +0 -0
- package/dist/assets/screen/video/icon.png +0 -0
- package/dist/assets/screen/video/video-play.png +0 -0
- package/dist/components/data-screen-show/components/index.d.ts +13 -0
- package/dist/components/data-screen-show/components/public/block-wrap/index.vue.d.ts +33 -0
- package/dist/components/data-screen-show/components/public/null-tips/index.vue.d.ts +2 -0
- package/dist/components/data-screen-show/components/screen/base-header/index.vue.d.ts +24 -0
- package/dist/components/data-screen-show/components/screen/custom-moveable/image-moveable/index.vue.d.ts +16 -0
- package/dist/components/data-screen-show/components/screen/custom-moveable/text-moveable/index.vue.d.ts +16 -0
- package/dist/components/data-screen-show/components/screen/custom-moveable/video-moveable/index.vue.d.ts +16 -0
- package/dist/components/data-screen-show/components/screen/equipment-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/experimental-communication-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/experimental-results-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/person-time-info/components/flip-number/index.vue.d.ts +14 -0
- package/dist/components/data-screen-show/components/screen/person-time-info/components/semester-counts/index.vue.d.ts +2 -0
- package/dist/components/data-screen-show/components/screen/person-time-info/components/today-counts/index.vue.d.ts +2 -0
- package/dist/components/data-screen-show/components/screen/person-time-info/index.vue.d.ts +2 -0
- package/dist/components/data-screen-show/components/screen/report-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/reservation-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/safe-module/components/chart-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/safe-module/components/dispose-detail/index.vue.d.ts +2 -0
- package/dist/components/data-screen-show/components/screen/safe-module/components/warn-count/index.vue.d.ts +2 -0
- package/dist/components/data-screen-show/components/screen/safe-module/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/scientific-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/components/screen/teachers-info/index.vue.d.ts +4 -0
- package/dist/components/data-screen-show/index.d.ts +1 -0
- package/dist/components/data-screen-show/index.vue.d.ts +66 -0
- package/dist/components/data-screen-show/types.d.ts +58 -0
- package/dist/components/index.d.ts +25 -0
- package/dist/data-screen-show.d.ts +1 -0
- package/dist/data-screen-show.es.js +50512 -0
- package/dist/data-screen-show.umd.js +93 -0
- package/dist/main.d.ts +3 -0
- package/package.json +62 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 peoren
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# data-screen-show
|
|
2
|
+
## 如何使用
|
|
3
|
+
用于渲染数据大屏显示
|
|
4
|
+
1. pnpm i @tmesoft/data-screen-show
|
|
5
|
+
|
|
6
|
+
## demo
|
|
7
|
+
```vue
|
|
8
|
+
<!--ts-->
|
|
9
|
+
import DataScreenShow from '@tmesoft/data-screen-show'
|
|
10
|
+
/**
|
|
11
|
+
* @description: 监听数据卡编辑、自定义卡上传、编辑事件
|
|
12
|
+
* @param type 卡类型
|
|
13
|
+
* @param id 卡id值
|
|
14
|
+
*/
|
|
15
|
+
const editBtnClick = (type:CardType,id:number)=>{
|
|
16
|
+
console.log(type,id,'editBtnClick')
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @description: 点击拖拽卡事件
|
|
20
|
+
* @param type 卡类型
|
|
21
|
+
* @param id 卡id值
|
|
22
|
+
*/
|
|
23
|
+
const changeActive = (type:CardType,id:number) => {
|
|
24
|
+
console.log(type,id,'changeActive')
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @description: 更新坐标信息
|
|
28
|
+
* @param coordinate 位置信息包括数据卡和自定义卡
|
|
29
|
+
* @return
|
|
30
|
+
*/
|
|
31
|
+
const addOrUpCoordinate = (coordinate:{dataCard:{ id: number; detail: IbigScreenCoordinate }[],customCard:{ id: number; detail: IbigScreenCoordinate }[]})=>{
|
|
32
|
+
console.log(coordinate)
|
|
33
|
+
}
|
|
34
|
+
const DataScreenShowRef = ref()
|
|
35
|
+
// 传入json数据
|
|
36
|
+
|
|
37
|
+
const DataScreenShowRef = ref()
|
|
38
|
+
onMounted(()=>{
|
|
39
|
+
DataScreenShowRef.value?.setDataCardListJson(
|
|
40
|
+
{'师资队伍' :{id:1,idEditBtn:true},
|
|
41
|
+
'科研成果':{id:2,idEditBtn:true},
|
|
42
|
+
'设备资产':{id:3,idEditBtn:false},
|
|
43
|
+
'预约开放':{id:4,idEditBtn:false},
|
|
44
|
+
'实验室运行':{id:5,idEditBtn:true},
|
|
45
|
+
'安全数据':{id:6,idEditBtn:false},
|
|
46
|
+
'实验人次':{id:7,idEditBtn:false},
|
|
47
|
+
'实验报告':{id:8,idEditBtn:false},
|
|
48
|
+
'实验成绩':{id:9,idEditBtn:false},
|
|
49
|
+
'实验交流':{id:10,idEditBtn:false}})})
|
|
50
|
+
// ------------------------------ 给子组件传递参数 ------------------------------
|
|
51
|
+
/**
|
|
52
|
+
* @description: 大屏标题
|
|
53
|
+
*/
|
|
54
|
+
const title = ref('智慧化实验室')
|
|
55
|
+
/**
|
|
56
|
+
* @description: 自定义卡列表坐标
|
|
57
|
+
*/
|
|
58
|
+
const customCardCoordinateList = ref([{"id":133,"detail":{"left":1129,"width":380,"top":397,"height":228}},
|
|
59
|
+
{"id":134,"detail":{"left":120,"width":308,"top":210,"height":273}},
|
|
60
|
+
{"id":135,"detail":{"left":649,"width":360,"top":235,"height":271}}])
|
|
61
|
+
/**
|
|
62
|
+
* @description: 自定义卡列表数据
|
|
63
|
+
* @param
|
|
64
|
+
* @return
|
|
65
|
+
*/
|
|
66
|
+
const _customCardList = [
|
|
67
|
+
{
|
|
68
|
+
"id": 133,
|
|
69
|
+
"bigScreenVersionId": 3,
|
|
70
|
+
"type": 1,
|
|
71
|
+
"name": "图片11111111111",
|
|
72
|
+
"detail": "{\"list\":[{\"name\":\"1686030913404(1).jpg\",\"url\":\"http://172.16.3.208:8802/tmeFile/ILIM/image/1662/5b793a456cc4016637bc75f9dd28a2b4.jpg\",\"size\":200911,\"uid\":1725945117909,\"status\":\"success\"},{\"name\":\"矢量智能对象2.png\",\"url\":\"http://172.16.3.208:8802/tmeFile/ILIM/image/1663/36bf622f16b1afe40d5e669870d06a92.png\",\"size\":291,\"uid\":1725945285946,\"status\":\"success\"}],\"swiperTime\":3}"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": 134,
|
|
76
|
+
"bigScreenVersionId": 3,
|
|
77
|
+
"type": 3,
|
|
78
|
+
"name": "文本1111111111111",
|
|
79
|
+
"detail": "{\"list\":[{\"value\":\"<p><span style=\\\"color: #ecf0f1;\\\">3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee</span></p>\\n<h1 style=\\\"padding: 18px 0px; font-weight: 400; line-height: 42px; color: #333333; border-bottom: 1px solid rgba(0, 0, 0, 0.08); font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff; font-size: 30px !important; margin: 0px 0px 20px !important 0px;\\\">公众平台服务号、订阅号、企业微信、小程序的相关说明</h1>\\n<section class=\\\"_135editor\\\" style=\\\"margin: 0px; padding: 0px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; font-size: 12px; background-color: #ffffff; border: 0px none; position: relative;\\\" data-tools=\\\"135编辑器\\\" data-id=\\\"90143\\\" data-color=\\\"rgb(12, 137, 24)\\\" data-custom=\\\"rgb(12, 137, 24)\\\">\\n<section style=\\\"margin: 0px; padding: 0px;\\\">\\n<section style=\\\"margin: 0px; padding: 0px 3px 0px 0px; display: inline-block; vertical-align: middle;\\\">\\n<section style=\\\"margin: 0px; padding: 0px; border-top: 3px solid transparent; border-left: 3px solid #666666; float: right;\\\"></section>\\n<section style=\\\"margin: 0px 3px 0px 0px; padding: 1em; background: #0c8918; color: #ffffff; transform: rotate(360deg);\\\">\\n<p class=\\\"autonum\\\" style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px;\\\" title=\\\"\\\" data-original-title=\\\"\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\">1</strong></p>\\n</section>\\n<section style=\\\"margin: -3px 0px 0px; padding: 0px; border-bottom: 3px solid transparent; border-left: 3px solid #666666; float: right;\\\"></section>\\n</section>\\n \\n<section style=\\\"margin: 0px 0px 0px -3em; padding: 0.8em 1em 0.8em 3em; display: inline-block; vertical-align: middle; background: #eeeeee; line-height: 1.5;\\\">\\n<p class=\\\"135brush\\\" style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px;\\\" data-brushtype=\\\"text\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\"> 公众号类型功能介绍</strong> </p>\\n</section>\\n</section>\\n</section>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"> </p>\\n<div style=\\\"margin: 0px; padding: 0px; max-width: 100%; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff; text-align: center;\\\"><img style=\\\"margin: 15px 0px 25px; padding: 0px; border: 1px solid #e5e5e5; outline: none; vertical-align: bottom; max-width: 100%; display: inline-block;\\\" src=\\\"http://file.service.qq.com/user-files/uploads/201708/d983e67521397c6a61fa196c1e378a38.jpg\\\" /></div>\\n<p> </p>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"> </p>\\n<section class=\\\"_135editor\\\" style=\\\"margin: 0px; padding: 0px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; font-size: 12px; background-color: #ffffff; border: 0px none; position: relative;\\\" data-tools=\\\"135编辑器\\\" data-id=\\\"90143\\\" data-color=\\\"rgb(12, 137, 24)\\\" data-custom=\\\"rgb(12, 137, 24)\\\">\\n<section style=\\\"margin: 0px; padding: 0px;\\\">\\n<section style=\\\"margin: 0px; padding: 0px 3px 0px 0px; display: inline-block; vertical-align: middle;\\\">\\n<section style=\\\"margin: 0px; padding: 0px; border-top: 3px solid transparent; border-left: 3px solid #666666; float: right;\\\"></section>\\n<section style=\\\"margin: 0px 3px 0px 0px; padding: 1em; background: #0c8918; color: #ffffff; transform: rotate(360deg);\\\">\\n<p class=\\\"autonum\\\" style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px;\\\" title=\\\"\\\" data-original-title=\\\"\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\">2</strong></p>\\n</section>\\n<section style=\\\"margin: -3px 0px 0px; padding: 0px; border-bottom: 3px solid transparent; border-left: 3px solid #666666; float: right;\\\"></section>\\n</section>\\n \\n<section style=\\\"margin: 0px 0px 0px -3em; padding: 0.8em 1em 0.8em 3em; display: inline-block; vertical-align: middle; background: #eeeeee; line-height: 1.5;\\\">\\n<p class=\\\"135brush\\\" style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px;\\\" data-brushtype=\\\"text\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\"> 服务号、订阅号功能区别 </strong></p>\\n</section>\\n</section>\\n</section>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff; text-align: center;\\\"><img style=\\\"margin: 15px 0px 25px; padding: 0px; border: 1px solid #e5e5e5; outline: none; vertical-align: bottom; max-width: 100%; display: inline-block;\\\" src=\\\"http://file.service.qq.com/user-files/uploads/201708/a12daf5a6a2cf4c01618569b1b9e5881.jpg\\\" /></p>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"> </p>\\n<section class=\\\"_135editor\\\" style=\\\"margin: 0px; padding: 0px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; font-size: 12px; background-color: #ffffff; border: 0px none; position: relative;\\\" data-tools=\\\"135编辑器\\\" data-id=\\\"90143\\\" data-color=\\\"rgb(12, 137, 24)\\\" data-custom=\\\"rgb(12, 137, 24)\\\">\\n<section style=\\\"margin: 0px; padding: 0px;\\\">\\n<section style=\\\"margin: 0px; padding: 0px 3px 0px 0px; display: inline-block; vertical-align: middle;\\\">\\n<section style=\\\"margin: 0px; padding: 0px; border-top: 3px solid transparent; border-left: 3px solid #666666; float: right;\\\"></section>\\n<section style=\\\"margin: 0px 3px 0px 0px; padding: 1em; background: #0c8918; color: #ffffff; transform: rotate(360deg);\\\">\\n<p class=\\\"autonum\\\" style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px;\\\" title=\\\"\\\" data-original-title=\\\"\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\">3</strong></p>\\n</section>\\n<section style=\\\"margin: -3px 0px 0px; padding: 0px; border-bottom: 3px solid transparent; border-left: 3px solid #666666; float: right;\\\"></section>\\n</section>\\n \\n<section style=\\\"margin: 0px 0px 0px -3em; padding: 0.8em 1em 0.8em 3em; display: inline-block; vertical-align: middle; background: #eeeeee; line-height: 1.5;\\\">\\n<p class=\\\"135brush\\\" style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px;\\\" data-brushtype=\\\"text\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\"> 小程序介绍</strong> </p>\\n</section>\\n</section>\\n</section>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\"> </strong></p>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"><strong style=\\\"margin: 0px; padding: 0px; font-size: 1em;\\\"> 主要优势</strong></p>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"> 1、用户可便捷地获取服务,无需安装或下载即可使用;</p>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"> 2、具有更丰富的功能和出色的使用体验;</p>\\n<p style=\\\"margin: 0px; padding: 0px; line-height: 24px; font-size: 15px; color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; background-color: #ffffff;\\\"> 3、封装一系列接口能力,帮助快速开发和迭代。</p>\\n<p><span style=\\\"color: #ecf0f1;\\\"><img style=\\\"color: #666666; font-family: 'PingFang SC', 'Microsoft Yahei', Avenir, 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif; font-size: 15px; text-align: center; margin: 15px 0px 25px; padding: 0px; border: 1px solid #e5e5e5; outline: none; vertical-align: bottom; max-width: 100%; display: inline-block;\\\" src=\\\"http://file.service.qq.com/user-files/uploads/201708/df54931c8573912639ef393f44f65ece.jpg\\\" />ee</span></p>\",\"scroll\":true}],\"swiperTime\":20}"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": 135,
|
|
83
|
+
"bigScreenVersionId": 3,
|
|
84
|
+
"type": 2,
|
|
85
|
+
"name": "视频333333333333333333",
|
|
86
|
+
"detail": "{\"list\":[{\"name\":\"2minute-demo.mp4\",\"url\":\"http://172.16.3.208:8802/tmeFile/ILIM/video/1664/d12d99ae6eb88e4990e9d226c10b8428.mp4\",\"size\":2865389,\"uid\":1725946661731,\"status\":\"success\"}],\"isLoop\":true,\"volume\":true}"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
const customCardList =ref<CustomListPage[]>( _customCardList?.length
|
|
90
|
+
? _customCardList.map(item => {
|
|
91
|
+
const detail = item.detail ? JSON.parse(item.detail) : {}
|
|
92
|
+
return {
|
|
93
|
+
id: item.id,
|
|
94
|
+
bigScreenVersionId: item.bigScreenVersionId,
|
|
95
|
+
type: item.type,
|
|
96
|
+
name: item.name,
|
|
97
|
+
list: detail?.list || [],
|
|
98
|
+
swiperTime: detail?.swiperTime,
|
|
99
|
+
isLoop: detail?.isLoop,
|
|
100
|
+
volume: detail?.volume,
|
|
101
|
+
isEdit: false
|
|
102
|
+
}
|
|
103
|
+
})
|
|
104
|
+
: [])
|
|
105
|
+
// 数据卡列表数据
|
|
106
|
+
const dataCardCoordinateList = ref([
|
|
107
|
+
{"id":1,"detail":{"left":0,"width":367,"top":75,"height":173}},
|
|
108
|
+
{"id":2,"detail":{"left":0,"width":365,"top":270,"height":172}},
|
|
109
|
+
{"id":3,"detail":{"left":0,"width":365,"top":455,"height":172}},
|
|
110
|
+
{"id":4,"detail":{"left":0,"width":379,"top":685,"height":179}},
|
|
111
|
+
{"id":5,"detail":{"left":370,"width":493,"top":75,"height":366}},
|
|
112
|
+
{"id":6,"detail":{"left":565,"width":540,"top":455,"height":158}},
|
|
113
|
+
{"id":7,"detail":{"left":865,"width":295,"top":70,"height":139}},
|
|
114
|
+
{"id":8,"detail":{"left":865,"width":365,"top":250,"height":172}},
|
|
115
|
+
{"id":9,"detail":{"left":1225,"width":276,"top":355,"height":131}},
|
|
116
|
+
{"id":10,"detail":{"left":895,"width":324,"top":695,"height":153}}])
|
|
117
|
+
// 当前拖拽卡片类型
|
|
118
|
+
const activeType = ref<CardType>()
|
|
119
|
+
// 当前拖拽卡片id
|
|
120
|
+
const activeId = ref<number>()
|
|
121
|
+
<!--template-->
|
|
122
|
+
<data-screen-show :customCardList="customCardList"
|
|
123
|
+
:customCardCoordinateList="customCardCoordinateList"
|
|
124
|
+
:dataCardCoordinateList="dataCardCoordinateList"
|
|
125
|
+
:activeType="activeType"
|
|
126
|
+
:activeId="activeId"
|
|
127
|
+
:title="title"
|
|
128
|
+
@addOrUpCoordinate="addOrUpCoordinate"
|
|
129
|
+
@changeActive="changeActive"
|
|
130
|
+
@editBtnClick="editBtnClick"
|
|
131
|
+
ref="DataScreenShowRef"
|
|
132
|
+
/>
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## 方法
|
|
136
|
+
|
|
137
|
+
| Name | Description | type |
|
|
138
|
+
|--------------|-----------------|-------------------------------|
|
|
139
|
+
| setRootWidthHeight | 设置大屏宽高 | object {width:number,height:number} |
|
|
140
|
+
| setDataCardListJson | 获取组件内的数据卡json内容 | |
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
## 事件
|
|
144
|
+
|
|
145
|
+
| Name | Description |
|
|
146
|
+
|------------|-------------------|
|
|
147
|
+
| addOrUpCoordinate | 更新坐标信息 |
|
|
148
|
+
| changeActive | 修改当前拖拽元素 |
|
|
149
|
+
| editBtnClick | 点击数据卡、自定义卡的编辑上传按钮 |
|
|
150
|
+
| handleTextScroll | 文字滚动 |
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export { default as BaseHeader } from './screen/base-header/index.vue';
|
|
2
|
+
export { default as TeachInfo } from './screen/teachers-info/index.vue';
|
|
3
|
+
export { default as ScientificInfo } from './screen/scientific-info/index.vue';
|
|
4
|
+
export { default as EquipmentInfo } from './screen/equipment-info/index.vue';
|
|
5
|
+
export { default as ReservationInfo } from './screen/reservation-info/index.vue';
|
|
6
|
+
export { default as PersonTimeInfo } from './screen/person-time-info/index.vue';
|
|
7
|
+
export { default as ReportInfo } from './screen/report-info/index.vue';
|
|
8
|
+
export { default as ExperimentalResultsInfo } from './screen/experimental-results-info/index.vue';
|
|
9
|
+
export { default as ExperimentalCommunicationInfo } from './screen/experimental-communication-info/index.vue';
|
|
10
|
+
export { default as SafeModule } from './screen/safe-module/index.vue';
|
|
11
|
+
export { default as VideoMoveale } from './screen/custom-moveable/video-moveable/index.vue';
|
|
12
|
+
export { default as ImageMoveale } from './screen/custom-moveable/image-moveable/index.vue';
|
|
13
|
+
export { default as TextMoveale } from './screen/custom-moveable/text-moveable/index.vue';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
titleRight?(_: {}): any;
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
6
|
+
icon: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
title: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
|
+
icon: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
title: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
title: string;
|
|
25
|
+
icon: string;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
|
|
2
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
3
|
+
subTitle: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
pageTitle: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
|
+
subTitle: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
pageTitle: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
21
|
+
subTitle: string;
|
|
22
|
+
pageTitle: string;
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CustomListPage } from '../../../../../index.ts';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
item: {
|
|
5
|
+
type: PropType<CustomListPage>;
|
|
6
|
+
default: () => void;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
9
|
+
item: {
|
|
10
|
+
type: PropType<CustomListPage>;
|
|
11
|
+
default: () => void;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
item: CustomListPage;
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CustomListPage } from '../../../../../index.ts';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
item: {
|
|
5
|
+
type: PropType<CustomListPage>;
|
|
6
|
+
default: () => void;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
9
|
+
item: {
|
|
10
|
+
type: PropType<CustomListPage>;
|
|
11
|
+
default: () => void;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
item: CustomListPage;
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CustomListPage } from '../../../../../index.ts';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
item: {
|
|
5
|
+
type: PropType<CustomListPage>;
|
|
6
|
+
default: () => void;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
9
|
+
item: {
|
|
10
|
+
type: PropType<CustomListPage>;
|
|
11
|
+
default: () => void;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
item: CustomListPage;
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
package/dist/components/data-screen-show/components/screen/experimental-results-info/index.vue.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
value: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
default: number;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
7
|
+
value: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {
|
|
12
|
+
value: number;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
resize: () => void;
|
|
3
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getFontSize: (value: number) => number;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { ICoordinateItem } from './types.ts';
|
|
3
|
+
import { CustomListPage } from '../index.ts';
|
|
4
|
+
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
"main-floor"?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
9
|
+
subTitle: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
pageTitle: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
dataCardIdListIds: {
|
|
18
|
+
type: PropType<number[]>;
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
updataCardCoordinateList: {
|
|
22
|
+
type: PropType<ICoordinateItem[]>;
|
|
23
|
+
default: () => never[];
|
|
24
|
+
};
|
|
25
|
+
customCardList: {
|
|
26
|
+
type: PropType<CustomListPage[]>;
|
|
27
|
+
default: () => never[];
|
|
28
|
+
};
|
|
29
|
+
}>, {
|
|
30
|
+
chartResize: () => void;
|
|
31
|
+
setDataCardJson: (_dataCardJson: any) => void;
|
|
32
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
33
|
+
subTitle: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
pageTitle: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
dataCardIdListIds: {
|
|
42
|
+
type: PropType<number[]>;
|
|
43
|
+
default: () => never[];
|
|
44
|
+
};
|
|
45
|
+
updataCardCoordinateList: {
|
|
46
|
+
type: PropType<ICoordinateItem[]>;
|
|
47
|
+
default: () => never[];
|
|
48
|
+
};
|
|
49
|
+
customCardList: {
|
|
50
|
+
type: PropType<CustomListPage[]>;
|
|
51
|
+
default: () => never[];
|
|
52
|
+
};
|
|
53
|
+
}>> & Readonly<{}>, {
|
|
54
|
+
subTitle: string;
|
|
55
|
+
pageTitle: string;
|
|
56
|
+
dataCardIdListIds: number[];
|
|
57
|
+
updataCardCoordinateList: ICoordinateItem[];
|
|
58
|
+
customCardList: CustomListPage[];
|
|
59
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
60
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
61
|
+
export default _default;
|
|
62
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
63
|
+
new (): {
|
|
64
|
+
$slots: S;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export interface ITeacherItem {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
count: number;
|
|
5
|
+
}
|
|
6
|
+
export interface ICoordinateItem {
|
|
7
|
+
id: number;
|
|
8
|
+
width: number;
|
|
9
|
+
height: number;
|
|
10
|
+
}
|
|
11
|
+
export interface IAchievementItem {
|
|
12
|
+
id: number;
|
|
13
|
+
name: string;
|
|
14
|
+
detail: string;
|
|
15
|
+
}
|
|
16
|
+
export interface IReservationMonthItem {
|
|
17
|
+
month: number;
|
|
18
|
+
count: number;
|
|
19
|
+
}
|
|
20
|
+
export interface IReservationCountResponsePieData {
|
|
21
|
+
sign: number;
|
|
22
|
+
noSign: number;
|
|
23
|
+
}
|
|
24
|
+
export interface IEquipmentItem {
|
|
25
|
+
typeId: number;
|
|
26
|
+
type: string;
|
|
27
|
+
totalCount: number;
|
|
28
|
+
normalCount: number;
|
|
29
|
+
repairCount: number;
|
|
30
|
+
scrapCount: number;
|
|
31
|
+
}
|
|
32
|
+
export interface IExperimentCountsResponseData {
|
|
33
|
+
currentSemesterCount: number;
|
|
34
|
+
currentDayCount: number;
|
|
35
|
+
}
|
|
36
|
+
export interface IReportItem {
|
|
37
|
+
month: number;
|
|
38
|
+
count: number;
|
|
39
|
+
}
|
|
40
|
+
export interface IReportScoreItem {
|
|
41
|
+
x: string;
|
|
42
|
+
count: number;
|
|
43
|
+
}
|
|
44
|
+
export interface IReportResponsePieData {
|
|
45
|
+
submit: number;
|
|
46
|
+
noSubmit: number;
|
|
47
|
+
}
|
|
48
|
+
export interface IExchangeProjectItem {
|
|
49
|
+
projectName: string;
|
|
50
|
+
readCount: number;
|
|
51
|
+
}
|
|
52
|
+
export interface IWarnScreenRespVO {
|
|
53
|
+
labName: string;
|
|
54
|
+
type: number;
|
|
55
|
+
typeName: string;
|
|
56
|
+
event: string;
|
|
57
|
+
addTime: string;
|
|
58
|
+
}
|