12345678910111213141516171819202122232425262728 |
- export default {
- props: {
- propCfg: {
- type: Array,
- default: () => []
- },
- businessKey: {
- type: String,
- required: true
- },
- dictMap: {
- type: Object,
- default: () => ({})
- },
- dictMapMap: {
- type: Object,
- default: () => ({})
- },
- styCfg: {
- type: Object,
- default: () => ({})
- },
- dataId: {
- type: Object,
- default: () => ({})
- }
- }
- }
|