Commit 72e2d4de by denyu

添加default方法

parent 041cb5cd
...@@ -170,6 +170,10 @@ function defaultDitpButgetref() { ...@@ -170,6 +170,10 @@ function defaultDitpButgetref() {
function defaultDidgrpBenPtsExtkey() { function defaultDidgrpBenPtsExtkey() {
} }
function defaultDidgrpBlkLcrdoc() { function defaultDidgrpBlkLcrdoc() {
const that = this;
that.executeDefault("didgrp.blk.lcrdoc").then(res => {
that.model.didgrp.blk.lcrdoc = res.data.didgrp_blk_lcrdoc;
})
} }
function defaultDitpRmbpPtsgetSdamodDadsnd() { function defaultDitpRmbpPtsgetSdamodDadsnd() {
} }
...@@ -180,6 +184,10 @@ function defaultLitameadv() { ...@@ -180,6 +184,10 @@ function defaultLitameadv() {
}) })
} }
function defaultDidgrpBlkAdlcnd() { function defaultDidgrpBlkAdlcnd() {
const that = this;
that.executeDefault("didgrp.blk.adlcnd").then(res => {
that.model.didgrp.blk.adlcnd = res.data.didgrp_blk_adlcnd;
})
} }
function defaultDidgrpAplPtsRef() { function defaultDidgrpAplPtsRef() {
...@@ -307,8 +315,16 @@ function defaultDidgrpBlkLcrgod() { ...@@ -307,8 +315,16 @@ function defaultDidgrpBlkLcrgod() {
function defaultDidgrpRecAutdat() { function defaultDidgrpRecAutdat() {
} }
function defaultDidgrpRecIdcode() { function defaultDidgrpRecIdcode() {
const that = this;
that.executeDefault("didgrp.rec.idcode").then(res => {
that.model.didgrp.rec.idcode = res.data.didgrp_rec_idcode;
})
} }
function defaultDidgrpRecDkflg() { function defaultDidgrpRecDkflg() {
const that = this;
that.executeDefault("didgrp.rec.dkflg").then(res => {
that.model.didgrp.rec.dkflg = res.data.didgrp_rec_dkflg;
})
} }
function defaultDidgrpRmbPtsAdrblk() { function defaultDidgrpRmbPtsAdrblk() {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment