12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- export default {
- filters: {
- },
- props: {
- memberId: {
- type: String,
- default: ''
- },
- unitId: {
- type: String,
- default: ''
- },
- personnelId: {
- type: String,
- default: ''
- },
- comIndex: {
- type: [Number, String],
- default: 0
- },
- layerid: {
- type: String,
- default: ''
- },
- order: {
- type: [Number, String],
- default: 1
- },
- canEdit: {
- type: Boolean,
- default: false
- },
- icon: {
- type: String,
- default: ''
- },
- text: {
- type: String,
- default: ''
- },
- userType: {
- type: [String, Number],
- default: ''
- }
- },
- methods: {
- add: function (params) {
-
- },
- refreshComp: function () {
- this.initData();
- }
- }
- }
|