Merged in bugfix/PMCORE-3352-B (pull request #8227)
PMCORE-3352 The dynaform chosen in 'case summary' is not displayed Approved-by: Rodrigo Quelca
This commit is contained in:
@@ -60,7 +60,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</v-server-table>
|
</v-server-table>
|
||||||
</div>
|
</div>
|
||||||
<TabsCaseDetail
|
<TabsCaseDetail
|
||||||
|
ref="tabsCaseDetail"
|
||||||
:dataCaseStatus="dataCaseStatusTab"
|
:dataCaseStatus="dataCaseStatusTab"
|
||||||
:dataCase="dataCase"
|
:dataCase="dataCase"
|
||||||
></TabsCaseDetail>
|
></TabsCaseDetail>
|
||||||
@@ -222,6 +223,10 @@ export default {
|
|||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
let that = this;
|
let that = this;
|
||||||
|
//restore tab selected to initial state
|
||||||
|
let hash = this.$refs["tabsCaseDetail"].$refs["tabs"].getTabHash(0);
|
||||||
|
this.$refs["tabsCaseDetail"].$refs["tabs"].selectTab(hash);
|
||||||
|
//set dataCase
|
||||||
this.dataCase = this.$parent.dataCase;
|
this.dataCase = this.$parent.dataCase;
|
||||||
this.$el.getElementsByClassName("VuePagination__count")[0].remove();
|
this.$el.getElementsByClassName("VuePagination__count")[0].remove();
|
||||||
this.getDataCaseSummary();
|
this.getDataCaseSummary();
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<tabs @changed="changed">
|
<tabs
|
||||||
|
ref="tabs"
|
||||||
|
@changed="changed">
|
||||||
<tab :name="$t('ID_STATUS')">
|
<tab :name="$t('ID_STATUS')">
|
||||||
<CaseStatus :data="dataCaseStatus"> </CaseStatus>
|
<CaseStatus :data="dataCaseStatus"> </CaseStatus>
|
||||||
</tab>
|
</tab>
|
||||||
|
|||||||
Reference in New Issue
Block a user