refactor: 统一组件导入与消息提示方式

- 将多个组件中的 require 替换为 import,提升代码一致性。
- 更新消息提示方式,使用统一的 Message 和 Modal 组件,增强用户体验。
- 调整部分组件的样式和逻辑,确保界面一致性与可读性。
This commit is contained in:
田香琪
2026-07-08 18:36:06 +08:00
parent f6ddcf4f99
commit 106e059d1a
63 changed files with 429 additions and 314 deletions

View File

@@ -93,6 +93,7 @@
</div>
</template>
<script>
import { Message } from "@/utils/message";
import { Delete, View } from '@element-plus/icons-vue';
import { applyThird } from '@/api/shopentry';
import { getCategory } from '@/api/goods';
@@ -153,7 +154,6 @@ export default {
.then((res) => {
this.loading = false;
if (res.success) this.$emit('change', 3);
this.$parent.getData('next');
})
.catch(() => {
this.loading = false;
@@ -167,7 +167,7 @@ export default {
beforeUpload (file) {
this.uploadLoading = true;
if (this.form.storeLogo.length >= 1) {
this.$Message.warning('最多上传一张图片')
Message.warning('最多上传一张图片')
this.uploadLoading = false;
return false;
}
@@ -179,12 +179,12 @@ export default {
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isAllowedType) {
this.uploadLoading = false;
this.$Message.warning('上传文件格式不正确');
Message.warning('上传文件格式不正确');
return false;
}
if (!isLt2M) {
this.uploadLoading = false;
this.$Message.warning('文件大小不能超过2M');
Message.warning('文件大小不能超过2M');
return false;
}
return true;