<template> <div class="eibs-tab"> <c-col :span="24" style=""> <c-istream-table :list="data" :columns="columns"></c-istream-table> </c-col> </div> </template> <script> import Api from "~/service/Api" import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable" export default { inject: ['root'], mixins: [commonProcess], props:["model","codes"], data(){ return { columns: [ "2 1 \"D/C\" 60 1 0", "6 2 \"Account Number\" 140", "3 3 \"Cur\" 80", "4 4 \"Amount\" 180 2 8:1 2 5", "5 5 \"Value Date\" 140", "7 6 \"Rate Type\" 160", "8 7 \"Rate\" 120 2 0 1 0", "9 8 \"Term\" 80", "0 9 \"PN\" 80 1 0" ], data: [ ] } }, watch: { //this.$refs.glepan.stmData.data = res.data.setmod_glemod_gleshwstm.rows; 'model.setmod.glemod.gleshwstm': { handler(val, oldVal) { if (val.rows) { this.data = val.rows } }, immediate: true } }, methods:{ }, created:function(){ } } </script> <style> </style>