centaline-data-driven 1.2.97 → 1.2.98
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/build/centaline/centaline.path.js +2 -1
- package/package.json +2 -1
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +7 -6
- package/src/centaline/dynamicFile/src/dynamicFile.vue +413 -325
- package/src/centaline/dynamicSearchList/src/dynamicSearchScreen.vue +7 -1
- package/src/centaline/loader/src/ctl/SearchScreen.js +7 -3
- package/src/centaline/templateControls/src/dynamicTableCurrency.vue +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -44,7 +44,8 @@ const paths = {
|
|
|
44
44
|
"dynamicCompound": "./src/centaline/dynamicCompound/index.js",//复合控件
|
|
45
45
|
"dynamicContact": "./src/centaline/dynamicContact/index.js",//联系人电话
|
|
46
46
|
"dynamicLayout": "./src/centaline/dynamicLayout/index.js",//Layout组件
|
|
47
|
-
"browseVideo": "./src/centaline/browseVideo/index.js",//确认框组件
|
|
47
|
+
"browseVideo": "./src/centaline/browseVideo/index.js",//确认框组件
|
|
48
|
+
"dynamicViewerFile": "./src/centaline/dynamicViewerFile/index.js",//确认框组件
|
|
48
49
|
},
|
|
49
50
|
"plugs": {
|
|
50
51
|
"api": "./src/centaline/api/index.js",//调用API插件
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "centaline-data-driven",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.98",
|
|
4
4
|
"description": "ccai",
|
|
5
5
|
"author": "hjc <3226136347@qq.com>",
|
|
6
6
|
"private": false,
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"save": "^2.4.0",
|
|
22
22
|
"v-viewer": "^1.6.4",
|
|
23
23
|
"vue": "2.5.17",
|
|
24
|
+
"vue-pdf": "^4.0.7",
|
|
24
25
|
"vue-ueditor-wrap": "^2.5.6",
|
|
25
26
|
"vuedraggable": "^2.24.3"
|
|
26
27
|
},
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
<div class="hous-info base-box">
|
|
69
69
|
<div class="info-conten">
|
|
70
70
|
<div class="hous-t">
|
|
71
|
-
<div>
|
|
71
|
+
<div style="position: relative;">
|
|
72
72
|
<el-carousel
|
|
73
73
|
arrow="hover"
|
|
74
|
-
height="
|
|
74
|
+
height="199px"
|
|
75
75
|
:autoplay="false"
|
|
76
76
|
indicator-position="none"
|
|
77
77
|
>
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
</div>
|
|
87
87
|
</el-carousel-item>
|
|
88
88
|
</el-carousel>
|
|
89
|
-
|
|
90
|
-
<div class="hous-img">
|
|
89
|
+
|
|
90
|
+
<div class="hous-img" style="position: absolute;bottom: 0;z-index: 9;">
|
|
91
91
|
<div
|
|
92
92
|
class="img-i"
|
|
93
93
|
v-for="(item,index) in PropertyInfo.swiper"
|
|
@@ -904,10 +904,11 @@
|
|
|
904
904
|
white-space: nowrap;
|
|
905
905
|
.img-i {
|
|
906
906
|
position: relative;
|
|
907
|
-
width:
|
|
908
|
-
height:
|
|
907
|
+
width: 82px;
|
|
908
|
+
height: 45px;
|
|
909
909
|
margin-right: 10px;
|
|
910
910
|
display: inline-block;
|
|
911
|
+
border: 2px #fff solid;
|
|
911
912
|
img{
|
|
912
913
|
width: 100%;
|
|
913
914
|
height: 100%;
|