|
|
@@ -54,13 +54,7 @@
|
|
|
Save
|
|
|
</el-button>
|
|
|
</div>
|
|
|
- <div class="update-by">
|
|
|
- <span
|
|
|
- class="add-text"
|
|
|
- :title='"CREATED BY " + detailData.createdBy + " ON " + detailData.createdOn'>
|
|
|
- LAST UPDATED BY {{detailData.updatedBy}} TIMESTAMP: {{detailData.updatedOn}}
|
|
|
- </span>
|
|
|
- </div>
|
|
|
+ <audit-view :audit="detailData.audit"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -70,6 +64,7 @@ import api from '@/http/api/apiBalancing.js';
|
|
|
import Balancing from '../site/components/Balancing';
|
|
|
import LineChart from '../dashboard/chart/LineChart.vue';
|
|
|
import CircleChart from '../dashboard/chart/CircleChart.vue';
|
|
|
+import AuditView from "@/components/AuditView"
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -96,7 +91,7 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
},
|
|
|
- components: {Balancing,CircleChart,LineChart},
|
|
|
+ components: {Balancing,CircleChart,LineChart,AuditView},
|
|
|
created() {
|
|
|
if (this.$route.params.id) {
|
|
|
this.getBalanceDetail();
|