centaline-data-driven 1.4.30 → 1.4.32
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/package.json +1 -1
- package/src/centaline/dynamicFile/src/dynamicFile.vue +12 -2
- package/src/centaline/loader/src/ctl/File.js +4 -1
- package/src/centaline/loader/src/ctl/InputNumber.js +0 -3
- package/src/main.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
|
@@ -38,10 +38,15 @@
|
|
|
38
38
|
<span class="cover-list-item-span-delete" v-if="!model.lock && file.rightDel">
|
|
39
39
|
<i class="el-icon-delete" @click="handleRemove(file)"></i>
|
|
40
40
|
</span>
|
|
41
|
-
|
|
41
|
+
<span class="cover-list-item-play" v-if="file.videoPlayIconUrl">
|
|
42
42
|
<div class="swiper-i">
|
|
43
43
|
<img :src="file.videoPlayIconUrl" class="hous-icon" @click="viewerfile(file)"/>
|
|
44
44
|
</div>
|
|
45
|
+
</span>
|
|
46
|
+
<span class="cover-list-item-play" v-else-if="file.mediaTypeID==4 && (file.videoPlayIconUrl||model.videoPlayIconUrl)">
|
|
47
|
+
<div class="swiper-i">
|
|
48
|
+
<img :src="(file.videoPlayIconUrl||model.videoPlayIconUrl)" class="hous-icon" @click="viewerfile(file)"/>
|
|
49
|
+
</div>
|
|
45
50
|
</span>
|
|
46
51
|
<span class="cover-list-item-span" v-if="model.lock || model.paramName">
|
|
47
52
|
<!--锁定-->
|
|
@@ -116,11 +121,16 @@
|
|
|
116
121
|
<span class="cover-list-item-span-delete" v-if="!model.lock && file.rightDel">
|
|
117
122
|
<i class="el-icon-delete" @click="handleRemove(file)"></i>
|
|
118
123
|
</span>
|
|
119
|
-
|
|
124
|
+
<span class="cover-list-item-play" v-if="file.videoPlayIconUrl">
|
|
120
125
|
<div class="swiper-i">
|
|
121
126
|
<img :src="file.videoPlayIconUrl" class="hous-icon" @click="viewerfile(file)"/>
|
|
122
127
|
</div>
|
|
123
128
|
</span>
|
|
129
|
+
<span class="cover-list-item-play" v-else-if="file.mediaTypeID==4 && (file.videoPlayIconUrl||model.videoPlayIconUrl)">
|
|
130
|
+
<div class="swiper-i">
|
|
131
|
+
<img :src="(file.videoPlayIconUrl||model.videoPlayIconUrl)" class="hous-icon" @click="viewerfile(file)"/>
|
|
132
|
+
</div>
|
|
133
|
+
</span>
|
|
124
134
|
|
|
125
135
|
<span class="cover-list-item-span" v-if="model.lock || model.paramName">
|
|
126
136
|
<!--锁定-->
|
|
@@ -15,6 +15,9 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
|
|
|
15
15
|
get sourceList() {
|
|
16
16
|
return fileSourceList;
|
|
17
17
|
},
|
|
18
|
+
get videoPlayIconUrl() {
|
|
19
|
+
return videoPlayIconUrl;
|
|
20
|
+
},
|
|
18
21
|
set action(v) {
|
|
19
22
|
data.action = v;
|
|
20
23
|
},
|
|
@@ -228,7 +231,7 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
|
|
|
228
231
|
return fileSource.fileExtension;
|
|
229
232
|
},
|
|
230
233
|
get videoPlayIconUrl() {
|
|
231
|
-
return
|
|
234
|
+
return fileSource.videoPlayIconUrl;
|
|
232
235
|
},
|
|
233
236
|
}
|
|
234
237
|
|
package/src/main.js
CHANGED
|
@@ -43,7 +43,7 @@ Vue.use(centaline, {
|
|
|
43
43
|
getRequestHeaders: function () {
|
|
44
44
|
return {
|
|
45
45
|
oldToken: '3f518e5b-85c3-4a3e-9aa2-d476c6e43b75',
|
|
46
|
-
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
46
|
+
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjsEKgzAQRP9lzy4kcc0m3mq0l36ErDQBeypVoaX035tCvHnvO7zDwDDzhmWboAUu4IF2Rl_AA-2MWpNnbQc8eQ5Ilmp0OjgMZAOd-6EOXQ8VxOcdWm1ZK2edNxXMspZAKfoF2xIfl_j6x7nbOufZZKJjyTvJpgZzUVD4apBiE71wM4kQfL4AAAD__w.i7gJJvineymQatDJAX7K6sKT3_-TWK2nsrCwWZVmL8c',
|
|
47
47
|
|
|
48
48
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
49
49
|
EstateInfo: '{"estateId":"FAF029E8-EC28-4297-83CF-B8FFD826DB91","estateName":"AABBCC"}',
|