centaline-data-driven 1.2.51 → 1.2.52
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/Detail.vue +1 -1
- package/src/centaline/css/common.css +3 -1
- package/src/centaline/css/max.css +1 -0
- package/src/centaline/dynamicDetail/src/dynamicPropertySimpleDetailRET.vue +11 -3
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +0 -1
- package/src/centaline/templateControls/src/dynamicTableCurrency.vue +3 -3
- 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
package/src/Detail.vue
CHANGED
|
@@ -313,7 +313,8 @@ html {
|
|
|
313
313
|
height: 26px;
|
|
314
314
|
font-size: 12px;
|
|
315
315
|
color: #ff5b5b !important;
|
|
316
|
-
padding:
|
|
316
|
+
padding: 0 5px;
|
|
317
|
+
line-height: 26px;
|
|
317
318
|
white-space: nowrap;
|
|
318
319
|
}
|
|
319
320
|
.spanMessage {
|
|
@@ -712,6 +713,7 @@ html {
|
|
|
712
713
|
|
|
713
714
|
.el-date-editor .el-range-input, .el-date-editor .el-range-separator {
|
|
714
715
|
font-size: 12px;
|
|
716
|
+
height: 22px;
|
|
715
717
|
}
|
|
716
718
|
.ct-text{
|
|
717
719
|
position: relative
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<span>{{model.fields1Dic.DistrictName.value}}</span>
|
|
28
28
|
<span>{{model.fields1Dic.AreaName.value}}</span>
|
|
29
29
|
</div>
|
|
30
|
-
<div style="margin-top:
|
|
31
|
-
<div v-for="(tag, index) in model.actionRouterLabel" :key="index"
|
|
30
|
+
<div style="margin-top: 7px;display: flex;">
|
|
31
|
+
<div v-for="(tag, index) in model.actionRouterLabel" :key="index" class="t-tag"
|
|
32
32
|
:style="{color:tag.textColor,backgroundColor:tag.bgColor,borderColor:tag.borderColor}">
|
|
33
33
|
{{tag.label}}
|
|
34
34
|
</div>
|
|
@@ -354,7 +354,15 @@
|
|
|
354
354
|
}
|
|
355
355
|
</script>
|
|
356
356
|
<style lang="scss" scoped>
|
|
357
|
-
|
|
357
|
+
.t-tag {
|
|
358
|
+
color: #999;
|
|
359
|
+
background: #f3f3f3;
|
|
360
|
+
border: 1px solid #d8d8d8;
|
|
361
|
+
padding: 2px 9px;
|
|
362
|
+
border-radius: 3px;
|
|
363
|
+
margin-right: 10px;
|
|
364
|
+
font-size: 12px;
|
|
365
|
+
}
|
|
358
366
|
</style>
|
|
359
367
|
|
|
360
368
|
|
|
@@ -80,7 +80,6 @@
|
|
|
80
80
|
:rowspan="tdRowspan(column, row)"
|
|
81
81
|
class="ct-td"
|
|
82
82
|
:class="[colHasWidth[colIndex],model.tdClass,
|
|
83
|
-
column.router?'cursor':null,
|
|
84
83
|
colIndex === leftShadow?'shadowLeft':null,
|
|
85
84
|
colIndex === rightShadow?'shadowRight':null,
|
|
86
85
|
column.fixed === 'left'?'left-fixation':null,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel" @click="clickHandler($event)">
|
|
3
|
-
<img v-if="router.imgUrl && isShowImg" class="ct-tablecurrencyImg ct-tablecurrencyItem" :src="router.imgUrl" :title="router.label"
|
|
4
|
-
<a v-else href="javascript:void(0);" class="ct-tablecurrencyItem"
|
|
2
|
+
<div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel" @click="isOperationalColumn?clickHandler($event):null">
|
|
3
|
+
<img v-if="router.imgUrl && isShowImg" class="ct-tablecurrencyImg ct-tablecurrencyItem" :src="router.imgUrl" :title="router.label" @click="!isOperationalColumn?clickHandler($event):null"/>
|
|
4
|
+
<a v-else href="javascript:void(0);" class="ct-tablecurrencyItem" @click="!isOperationalColumn?clickHandler($event):null">
|
|
5
5
|
{{label}}
|
|
6
6
|
</a>
|
|
7
7
|
</div>
|