Commit da0b10e0 by fukai
parents e564a4e3 389dce80
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"build": "rimraf dist && webpack -p --progress --hide-modules" "build": "rimraf dist && webpack -p --progress --hide-modules"
}, },
"dependencies": { "dependencies": {
"async-validator": "^3.5.2",
"axios": "^0.19.2", "axios": "^0.19.2",
"cluster": "^0.7.7", "cluster": "^0.7.7",
"element-ui": "^2.13.2", "element-ui": "^2.13.2",
......
...@@ -541,8 +541,17 @@ function checkDidgrpBenPtsDihdigN1004() { ...@@ -541,8 +541,17 @@ function checkDidgrpBenPtsDihdigN1004() {
* source:ditopn.@0107.script * source:ditopn.@0107.script
* *
*/ */
function checkDidgrpRecShpdatN100() {
} function checkDidgrpRecShpdatN100(rule, value, callback) {
var a = new Date(value)
var b =new Date(this.model.didgrp.rec.opndat)
if (a.getTime()<b.getTime()) {
return callback(new Error('日期必须大于开证日期'));
}
}
// function checkDidgrpRecShpdatN100() {
// }
/** /**
* source:ditopn.@0002.script * source:ditopn.@0002.script
* *
...@@ -735,8 +744,16 @@ function checkDidgrpAdvPtsDihdigN1003() { ...@@ -735,8 +744,16 @@ function checkDidgrpAdvPtsDihdigN1003() {
* source:ditopn.@0003.script * source:ditopn.@0003.script
* *
*/ */
function checkDidgrpRecExpdatN100() {
} function checkDidgrpRecExpdatN100(rule, value, callback) {
var a = new Date(value)
var b =new Date(this.model.didgrp.rec.opndat)
if (a.getTime()<b.getTime()) {
return callback(new Error('日期必须大于开证日期'));
}
}
/** /**
* source:ptsget.@0009.script * source:ptsget.@0009.script
* ditp.benp.ptsget * ditp.benp.ptsget
......
...@@ -117,6 +117,7 @@ import Limitbody from "./Limitbody" ...@@ -117,6 +117,7 @@ import Limitbody from "./Limitbody"
import Coninfp from "./Coninfp" import Coninfp from "./Coninfp"
import Ccvpan from "./Ccvpan" import Ccvpan from "./Ccvpan"
export default { export default {
components:{ components:{
"m-ovwp" : Ovwp, "m-ovwp" : Ovwp,
......
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