|
|
@ -49,6 +49,7 @@ defineProps({ |
|
|
pluginId: { default: '1', type: String }, |
|
|
pluginId: { default: '1', type: String }, |
|
|
styleType: { default: 0, type: Number }, |
|
|
styleType: { default: 0, type: Number }, |
|
|
pluginTaskId: { default: '', type: String }, |
|
|
pluginTaskId: { default: '', type: String }, |
|
|
|
|
|
businessPluginId: { default: '', type: String }, |
|
|
param: { type: String, default: '' }, |
|
|
param: { type: String, default: '' }, |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
@ -80,7 +81,7 @@ export default { |
|
|
methods: { |
|
|
methods: { |
|
|
// 获取插件信息 |
|
|
// 获取插件信息 |
|
|
async getPlugin() { |
|
|
async getPlugin() { |
|
|
const params = { pluginId: this.pluginId, styleType: this.styleType }; |
|
|
const params = { businessPluginId: this.businessPluginId }; |
|
|
this.$catchReq.getOtherPlugin(params, (err, res) => { |
|
|
this.$catchReq.getOtherPlugin(params, (err, res) => { |
|
|
if (err) { |
|
|
if (err) { |
|
|
console.error('err: ', err); |
|
|
console.error('err: ', err); |
|
|
|