centaline-data-driven 1.2.62 → 1.2.63
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
CHANGED
|
@@ -144,7 +144,9 @@
|
|
|
144
144
|
<div class="details-tabs-box">
|
|
145
145
|
<el-tabs :value="model.activeIndex1" @tab-click="handleSelect">
|
|
146
146
|
<el-tab-pane v-for="(col, index) in model.tags1" :key="col.appID"
|
|
147
|
-
:index="index.toString()" :name="index.toString()"
|
|
147
|
+
:index="index.toString()" :name="index.toString()">
|
|
148
|
+
<div slot="label" v-html="col.appName"></div>
|
|
149
|
+
</el-tab-pane>
|
|
148
150
|
</el-tabs>
|
|
149
151
|
<ct-searchlist v-if="model.searchConditionApiTags1" :key="'list'+listKey.toString()+refershKey"
|
|
150
152
|
:apiParam="model.paramDataTags1" :flagFocus="false"
|
|
@@ -597,6 +599,7 @@
|
|
|
597
599
|
},
|
|
598
600
|
clickNextHandler() {
|
|
599
601
|
if(this.parentModel){
|
|
602
|
+
console.log(this.parentModel)
|
|
600
603
|
let oldValue=this.parentModel.listData[this.parentModel.selectIndex][this.parentModel.primaryKey];
|
|
601
604
|
this.parentModel.$vue.rowKeyDownHandle(null,1);
|
|
602
605
|
let newValue=this.parentModel.listData[this.parentModel.selectIndex][this.parentModel.primaryKey];
|
|
@@ -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);
|