index.vue 433 Bytes
Newer Older
WuBing committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template>
	<m-bch ref="bch" title="dbabch" type="add"></m-bch>
</template>

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

export default {
  name: "StaticsDbabch",
	components: {
		"m-bch": Dbibch
	},
  data() {
    return {};
  },
  mounted() {
WuBing committed
17 18 19
    // this.$refs.bch.rules['ptaList'] = [
    //   { type: 'array', required: true, min: 1, message: '地址信息栏不能为空' }
    // ]
WuBing committed
20 21 22 23 24 25
  }
};
</script>

<style>
</style>