check.js 764 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 26 27 28 29
import Utils from "~/utils"

export default {
  data() {
    return {
      rules: {
        "hyfinf.extkeyori": [
          { type: "string", required: false, message: "必输项" },
          { max: 8, message: "长度不能超过8" }
        ],
        "hyfinf.extkeynew": [
          { type: "string", required: false, message: "必输项" },
          { max: 8, message: "长度不能超过8" }
        ],

        "hyfinf.extkeyori02": [
          { type: "string", required: false, message: "必输项" },
          { max: 8, message: "长度不能超过8" }
        ],
        "hyfinf.extkeynew02": [
          { type: "string", required: false, message: "必输项" },
          { max: 8, message: "长度不能超过8" }
        ],
      }
    }
  }
}