文件名从 WMS/web/src/widgets/MyPluginName/index.ts 修改 |
| | |
| | | import MyPluginName from './Views/MyPluginName' |
| | | import HIAWms from './Views/HIAWms' |
| | | import Setting from '@/components/Setting/Setting' |
| | | import { provider } from '@/provider/index' |
| | | import p from '../../assets/svg/p.svg' |
| | | |
| | | export default { |
| | | is: 'MyPluginName', |
| | | name: 'MyPluginName', |
| | | is: 'HIAWms', |
| | | name: 'HIAWms', |
| | | category: 'run', |
| | | icon: p, |
| | | authorizationRequired: false, |
| | | canvasView: provider(MyPluginName), |
| | | canvasView: provider(HIAWms), |
| | | settingsView: Setting, |
| | | } |