refactor(editor): 过滤弃用的TinyMCE插件并优化商品编辑流程

This commit is contained in:
pikachu1995@126.com
2026-08-26 10:07:11 +08:00
parent 457eda829d
commit 404492b7a3
13 changed files with 70 additions and 251 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="goods-operation">
<!-- 填写商品详细信息含商品类型商品分类 -->
<second-step ref="second" :firstData="firstData" v-if="activestep === 1"></second-step>
<second-step ref="second" v-if="activestep === 1"></second-step>
<!-- 发布完成 -->
<third-step ref="third" v-if="activestep === 2"></third-step>
</div>
@@ -20,7 +20,6 @@ export default {
return {
/** 当前激活步骤1 填写详情2 发布成功 */
activestep: 1,
firstData: {},
};
},
mounted() {