index.vue 424 Bytes
Newer Older
潘际乾 committed
1
<template>
潘际乾 committed
2
	<m-pty ref="pty" title="dbapty" type="add"></m-pty>
潘际乾 committed
3 4 5 6 7 8 9 10 11 12 13 14 15
</template>

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

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

<style>
</style>