check.js 671 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import XxtfeeCheck from '~/components/business/xxtfee/model/check.js';

export default {
  data() {
    return {
      rules: {
        ...new XxtfeeCheck(this).check,
        "trdgrp.rec.pntref":null,
        "trdgrp.rec.ownref":null,
        "trdgrp.rec.pctfin":null,
        "trdgrp.cbs.max.cur":null,
        "trdgrp.cbs.max.amt":null,
        "trdgrp.cbs.opn1.cur":null,
        "trdgrp.cbs.opn1.amt":null,
        "trdgrp.rec.stttendat":null,
        "trdgrp.rec.pntnam":null,
        "trdgrp.rec.nam":null,
        "trdgrp.fip.pts.nam":null,
        "trdgrp.rec.fintyp":null,
        "trdgrp.rec.finact":null,
        "trdgrp.rec.matdat":null,
      }
    }
  }
}