check.js 339 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import moment from 'moment';
import LimitbodyCheck from '~/components/business/limitbody/model/check.js';
import CfagitCheck from '~/components/business/Cfagit/model/check.js';
import Utils from "~/utils"

export default {
	data() {
		return {
			rules: {
				"ameflg":[
					{  required: true, message: "必输项" }
				],
			}
		}
	}
}