index.vue 424 Bytes
Newer Older
xionglin 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
<template>
	<m-atp ref="atp" title="dbaatp" type="add"></m-atp>
</template>

<script>
import Dbiatp from "~/views/Statics/Dbiatp";

export default {
  name: "StaticsDbaatp",
	components: {
		"m-atp": Dbiatp
	},
  data() {
    return {};
  },
  mounted() {
    this.$refs.fec.rules['fecList'] = [
      { type: 'array', required: true, min: 1, message: '地址信息栏不能为空' }
    ]
  }
};
</script>

<style>
</style>