diff --git a/src/components/Template/Step.vue b/src/components/Template/Step.vue index 3e9c0e7..dcabb2a 100644 --- a/src/components/Template/Step.vue +++ b/src/components/Template/Step.vue @@ -302,13 +302,11 @@ export default { }, methods: { getStepList(){ - debugger public_templateStepList({templateId:this.templateData.templateId}).then(response => { let options = [] _.forEach(response.data,(item)=>{ options.push({ label: item.name, value: item.sn }) }) - debugger this.stepSelectConfig.options = options }); },