centaline-data-driven 1.2.61 → 1.2.62
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/dynamicDetail/src/dynamicContactList.vue +2 -0
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +1 -1
- package/src/centaline/loader/src/ctl/ContactList.js +4 -1
- package/src/centaline/loader/src/ctl/Detail.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
|
@@ -98,6 +98,8 @@
|
|
|
98
98
|
</component>
|
|
99
99
|
</div>
|
|
100
100
|
<!--正常的列-->
|
|
101
|
+
<div v-else-if="column.flagHtml" v-html="row[column.id]" :class="column.autoRowHeight ? 'lineFeedCell':'cell'" :style="column.style ? column.style:''">
|
|
102
|
+
</div>
|
|
101
103
|
<div v-else-if="typeof column.template === 'undefined'" :class="column.autoRowHeight ? 'lineFeedCell':'cell'">
|
|
102
104
|
{{row.rowHiddenColumns && row.rowHiddenColumns.includes(column.id)?"":row[column.id]}}
|
|
103
105
|
</div>
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
<div v-if="model.operationList!==null" :key="model.operationKey" class="operation-table base-box">
|
|
176
176
|
<div v-for="(col, index) in model.operationList" :key="index" class="table-box">
|
|
177
177
|
<div class="t-item">
|
|
178
|
-
<span class="i"
|
|
178
|
+
<span class="i" v-html="col.operationName"></span>
|
|
179
179
|
</div>
|
|
180
180
|
<div class="t-item"><span class="i" :class="'operation'+col.flagKey" :style="{color:col.descColor}">{{col.desc}}</span></div>
|
|
181
181
|
<div class="t-item" style="min-height: 50px;">
|
|
@@ -409,7 +409,7 @@ const Detail = function (source,para ,callBack) {
|
|
|
409
409
|
if (typeof source === 'string') {
|
|
410
410
|
Vue.prototype.$api.postHandler(common.globalUri(), { action: source,para:para}).then(
|
|
411
411
|
function (response) {
|
|
412
|
-
if (response.rtnCode === Enum.ReturnCode.Successful) {
|
|
412
|
+
if (response.rtnCode === Enum.ReturnCode.Successful) {
|
|
413
413
|
var rtn = init(response.content);
|
|
414
414
|
if (callBack) {
|
|
415
415
|
callBack(rtn);
|