fix: 生产打包编译报错问题修复

Former-commit-id: 3998de871def78ea6f61b3ecd368411d50a2c6f9
This commit is contained in:
郝先瑞
2022-05-09 13:22:21 +08:00
parent eab11687aa
commit d0660ab59d
7 changed files with 129 additions and 120 deletions

View File

@@ -1,35 +1,29 @@
<template> <template>
<div style="padding: 0 15px" @click="toggleClick"> <div style="padding: 0 15px" @click="toggleClick">
<svg <svg :class="{ 'is-active': isActive }" class="hamburger" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"
:class="{ 'is-active': isActive }" width="64" height="64">
class="hamburger"
viewBox="0 0 1024 1024"
xmlns="http://www.w3.org/2000/svg"
width="64"
height="64"
>
<path <path
d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z" d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z" />
/>
</svg> </svg>
</div> </div>
</template> </template>
<script> <script setup lang="ts">
export default {
name: 'Hamburger', defineProps({
props: { isActive: {
isActive: { required: true,
type: Boolean, type: Boolean,
default: false default: false
}
}, },
methods: { })
toggleClick() {
this.$emit('toggleClick'); const emit = defineEmits(['toggleClick']);
}
} function toggleClick() {
}; emit('toggleClick')
}
</script> </script>
<style scoped> <style scoped>

View File

@@ -19,14 +19,13 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue'; import { computed } from 'vue';
import useStore from '@/store'; import useStore from '@/store';
const { app } = useStore();
const language = computed(() => app.language);
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { ElMessage } from 'element-plus'; import { ElMessage } from 'element-plus';
import SvgIcon from '@/components/SvgIcon/index.vue'; import SvgIcon from '@/components/SvgIcon/index.vue';
const { app } = useStore();
const language = computed(() => app.language);
const { locale } = useI18n(); const { locale } = useI18n();
function handleSetLanguage(lang: string) { function handleSetLanguage(lang: string) {

View File

@@ -93,9 +93,9 @@
</div> </div>
</template> </template>
<script> <script lang="ts">
export default { export default {
name: 'index' name: 'index',
}; };
</script> </script>

View File

@@ -1,3 +1,33 @@
<!-- setup 无法设置组件名称组件名称keepAlive必须 -->
<script lang="ts">
export default {
name: 'Page401',
};
</script>
<script setup lang="ts">
import { reactive, toRefs } from 'vue';
import { useRouter } from 'vue-router';
const state = reactive({
errGif: new URL(
`../../assets/401_images/401.gif`,
import.meta.url).href,
ewizardClap:
'https://wpimg.wallstcn.com/007ef517-bafd-4066-aae4-6883632d9646',
dialogVisible: false,
})
const { errGif, ewizardClap, dialogVisible } = toRefs(state)
const router = useRouter();
function back() {
router.back();
}
</script>
<template> <template>
<div class="errPage-container"> <div class="errPage-container">
<el-button icon="el-icon-arrow-left" class="pan-back-btn" @click="back"> <el-button icon="el-icon-arrow-left" class="pan-back-btn" @click="back">
@@ -23,77 +53,56 @@
</ul> </ul>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<img <img :src="errGif" width="313" height="428" alt="Girl has dropped her ice cream." />
:src="errGif"
width="313"
height="428"
alt="Girl has dropped her ice cream."
/>
</el-col> </el-col>
</el-row> </el-row>
<el-dialog v-model:visible="dialogVisible" title="随便看"> <el-dialog v-model="dialogVisible" title="随便看">
<img :src="ewizardClap" class="pan-img" /> <img :src="ewizardClap" class="pan-img" />
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
<script>
import errGif from '@/assets/401_images/401.gif';
export default {
name: 'Page401',
data() {
return {
errGif: errGif + '?' + +new Date(),
ewizardClap:
'https://wpimg.wallstcn.com/007ef517-bafd-4066-aae4-6883632d9646',
dialogVisible: false
};
},
methods: {
back() {
if (this.$route.query.noGoBack) {
this.$router.push({ path: '/dashboard' });
} else {
this.$router.go(-1);
}
}
}
};
</script>
<style lang="scss" scoped> <style lang="scss" scoped>
.errPage-container { .errPage-container {
width: 800px; width: 800px;
max-width: 100%; max-width: 100%;
margin: 100px auto; margin: 100px auto;
.pan-back-btn { .pan-back-btn {
background: #008489; background: #008489;
color: #fff; color: #fff;
border: none !important; border: none !important;
} }
.pan-gif { .pan-gif {
margin: 0 auto; margin: 0 auto;
display: block; display: block;
} }
.pan-img { .pan-img {
display: block; display: block;
margin: 0 auto; margin: 0 auto;
width: 100%; width: 100%;
} }
.text-jumbo { .text-jumbo {
font-size: 60px; font-size: 60px;
font-weight: 700; font-weight: 700;
color: #484848; color: #484848;
} }
.list-unstyled { .list-unstyled {
font-size: 14px; font-size: 14px;
li { li {
padding-bottom: 5px; padding-bottom: 5px;
} }
a { a {
color: #008489; color: #008489;
text-decoration: none; text-decoration: none;
&:hover { &:hover {
text-decoration: underline; text-decoration: underline;
} }

View File

@@ -1,38 +1,32 @@
<!-- setup 无法设置组件名称组件名称keepAlive必须 -->
<script lang="ts">
export default {
name: 'Page404',
};
</script>
<script setup lang="ts">
function message() {
return 'The webmaster said that you can not enter this page...';
}
</script>
<template> <template>
<div class="wscn-http404-container"> <div class="wscn-http404-container">
<div class="wscn-http404"> <div class="wscn-http404">
<div class="pic-404"> <div class="pic-404">
<img <img class="pic-404__parent" src="@/assets/404_images/404.png" alt="404" />
class="pic-404__parent" <img class="pic-404__child left" src="@/assets/404_images/404_cloud.png" alt="404" />
src="@/assets/404_images/404.png" <img class="pic-404__child mid" src="@/assets/404_images/404_cloud.png" alt="404" />
alt="404" <img class="pic-404__child right" src="@/assets/404_images/404_cloud.png" alt="404" />
/>
<img
class="pic-404__child left"
src="@/assets/404_images/404_cloud.png"
alt="404"
/>
<img
class="pic-404__child mid"
src="@/assets/404_images/404_cloud.png"
alt="404"
/>
<img
class="pic-404__child right"
src="@/assets/404_images/404_cloud.png"
alt="404"
/>
</div> </div>
<div class="bullshit"> <div class="bullshit">
<div class="bullshit__oops">OOPS!</div> <div class="bullshit__oops">OOPS!</div>
<div class="bullshit__info"> <div class="bullshit__info">
All rights reserved All rights reserved
<a <a style="color: #20a0ff" href="https://wallstreetcn.com" target="_blank">wallstreetcn</a>
style="color: #20a0ff"
href="https://wallstreetcn.com"
target="_blank"
>wallstreetcn</a
>
</div> </div>
<div class="bullshit__headline">{{ message }}</div> <div class="bullshit__headline">{{ message }}</div>
<div class="bullshit__info"> <div class="bullshit__info">
@@ -45,17 +39,6 @@
</div> </div>
</template> </template>
<script>
export default {
name: 'Page404',
computed: {
message() {
return 'The webmaster said that you can not enter this page...';
}
}
};
</script>
<style lang="scss" scoped> <style lang="scss" scoped>
.wscn-http404-container { .wscn-http404-container {
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
@@ -63,21 +46,26 @@ export default {
top: 40%; top: 40%;
left: 50%; left: 50%;
} }
.wscn-http404 { .wscn-http404 {
position: relative; position: relative;
width: 1200px; width: 1200px;
padding: 0 50px; padding: 0 50px;
overflow: hidden; overflow: hidden;
.pic-404 { .pic-404 {
position: relative; position: relative;
float: left; float: left;
width: 600px; width: 600px;
overflow: hidden; overflow: hidden;
&__parent { &__parent {
width: 100%; width: 100%;
} }
&__child { &__child {
position: absolute; position: absolute;
&.left { &.left {
width: 80px; width: 80px;
top: 17px; top: 17px;
@@ -89,6 +77,7 @@ export default {
animation-fill-mode: forwards; animation-fill-mode: forwards;
animation-delay: 1s; animation-delay: 1s;
} }
&.mid { &.mid {
width: 46px; width: 46px;
top: 10px; top: 10px;
@@ -100,6 +89,7 @@ export default {
animation-fill-mode: forwards; animation-fill-mode: forwards;
animation-delay: 1.2s; animation-delay: 1.2s;
} }
&.right { &.right {
width: 62px; width: 62px;
top: 100px; top: 100px;
@@ -111,66 +101,78 @@ export default {
animation-fill-mode: forwards; animation-fill-mode: forwards;
animation-delay: 1s; animation-delay: 1s;
} }
@keyframes cloudLeft { @keyframes cloudLeft {
0% { 0% {
top: 17px; top: 17px;
left: 220px; left: 220px;
opacity: 0; opacity: 0;
} }
20% { 20% {
top: 33px; top: 33px;
left: 188px; left: 188px;
opacity: 1; opacity: 1;
} }
80% { 80% {
top: 81px; top: 81px;
left: 92px; left: 92px;
opacity: 1; opacity: 1;
} }
100% { 100% {
top: 97px; top: 97px;
left: 60px; left: 60px;
opacity: 0; opacity: 0;
} }
} }
@keyframes cloudMid { @keyframes cloudMid {
0% { 0% {
top: 10px; top: 10px;
left: 420px; left: 420px;
opacity: 0; opacity: 0;
} }
20% { 20% {
top: 40px; top: 40px;
left: 360px; left: 360px;
opacity: 1; opacity: 1;
} }
70% { 70% {
top: 130px; top: 130px;
left: 180px; left: 180px;
opacity: 1; opacity: 1;
} }
100% { 100% {
top: 160px; top: 160px;
left: 120px; left: 120px;
opacity: 0; opacity: 0;
} }
} }
@keyframes cloudRight { @keyframes cloudRight {
0% { 0% {
top: 100px; top: 100px;
left: 500px; left: 500px;
opacity: 0; opacity: 0;
} }
20% { 20% {
top: 120px; top: 120px;
left: 460px; left: 460px;
opacity: 1; opacity: 1;
} }
80% { 80% {
top: 180px; top: 180px;
left: 340px; left: 340px;
opacity: 1; opacity: 1;
} }
100% { 100% {
top: 200px; top: 200px;
left: 300px; left: 300px;
@@ -179,12 +181,14 @@ export default {
} }
} }
} }
.bullshit { .bullshit {
position: relative; position: relative;
float: left; float: left;
width: 300px; width: 300px;
padding: 30px 0; padding: 30px 0;
overflow: hidden; overflow: hidden;
&__oops { &__oops {
font-size: 32px; font-size: 32px;
font-weight: bold; font-weight: bold;
@@ -196,6 +200,7 @@ export default {
animation-duration: 0.5s; animation-duration: 0.5s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
} }
&__headline { &__headline {
font-size: 20px; font-size: 20px;
line-height: 24px; line-height: 24px;
@@ -208,6 +213,7 @@ export default {
animation-delay: 0.1s; animation-delay: 0.1s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
} }
&__info { &__info {
font-size: 13px; font-size: 13px;
line-height: 21px; line-height: 21px;
@@ -219,6 +225,7 @@ export default {
animation-delay: 0.2s; animation-delay: 0.2s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
} }
&__return-home { &__return-home {
display: block; display: block;
float: left; float: left;
@@ -237,11 +244,13 @@ export default {
animation-delay: 0.3s; animation-delay: 0.3s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
} }
@keyframes slideUp { @keyframes slideUp {
0% { 0% {
transform: translateY(60px); transform: translateY(60px);
opacity: 0; opacity: 0;
} }
100% { 100% {
transform: translateY(0); transform: translateY(0);
opacity: 1; opacity: 1;

View File

@@ -53,25 +53,23 @@
<single-upload v-model="item.url" :show-close="true" /> <single-upload v-model="item.url" :show-close="true" />
<div v-if="item.url"> <div v-if="item.url">
<el-button <el-link
type="text" type="danger"
class="button" class="button"
v-if="item.main == true" v-if="item.main == true"
style="color: #ff4d51" >商品主图</el-link
>商品主图</el-button
> >
<el-button <el-link
type="text" type="info"
class="button" class="button"
v-else v-else
@click="changeMainPicture(index)" @click="changeMainPicture(index)"
>设为主图</el-button >设为主图</el-link>
>
</div> </div>
<div v-else> <div v-else>
<!-- 占位 --> <!-- 占位 -->
<el-button type="text" /> <el-link type="info" />
</div> </div>
</el-card> </el-card>
</el-form-item> </el-form-item>
@@ -107,15 +105,15 @@ const dataFormRef = ref(ElForm);
const props = defineProps({ const props = defineProps({
modelValue: { modelValue: {
type: Object, type: Object,
default: () => {} default: () => {},
} },
}); });
const goodsInfo: any = computed({ const goodsInfo: any = computed({
get: () => props.modelValue, get: () => props.modelValue,
set: value => { set: (value) => {
emit('update:modelValue', value); emit('update:modelValue', value);
} },
}); });
const state = reactive({ const state = reactive({
@@ -126,14 +124,14 @@ const state = reactive({
{ url: undefined, main: false }, { url: undefined, main: false },
{ url: undefined, main: false }, { url: undefined, main: false },
{ url: undefined, main: false }, { url: undefined, main: false },
{ url: undefined, main: false } { url: undefined, main: false },
] as Array<any>, ] as Array<any>,
rules: { rules: {
name: [{ required: true, message: '请填写商品名称', trigger: 'blur' }], name: [{ required: true, message: '请填写商品名称', trigger: 'blur' }],
originPrice: [{ required: true, message: '请填写原价', trigger: 'blur' }], originPrice: [{ required: true, message: '请填写原价', trigger: 'blur' }],
price: [{ required: true, message: '请填写现价', trigger: 'blur' }], price: [{ required: true, message: '请填写现价', trigger: 'blur' }],
brandId: [{ required: true, message: '请选择商品品牌', trigger: 'blur' }] brandId: [{ required: true, message: '请选择商品品牌', trigger: 'blur' }],
} },
}); });
const { brandOptions, pictures, rules } = toRefs(state); const { brandOptions, pictures, rules } = toRefs(state);
@@ -146,7 +144,7 @@ function loadData() {
if (goodsId) { if (goodsId) {
const mainPicUrl = goodsInfo.value.picUrl; const mainPicUrl = goodsInfo.value.picUrl;
if (mainPicUrl) { if (mainPicUrl) {
state.pictures.filter(item => item.main)[0].url = mainPicUrl; state.pictures.filter((item) => item.main)[0].url = mainPicUrl;
} }
const subPicUrls = goodsInfo.value.subPicUrls; const subPicUrls = goodsInfo.value.subPicUrls;
if (subPicUrls && subPicUrls.length > 0) { if (subPicUrls && subPicUrls.length > 0) {
@@ -179,14 +177,14 @@ function handleNext() {
if (valid) { if (valid) {
// 商品图片 // 商品图片
const mainPicUrl = state.pictures const mainPicUrl = state.pictures
.filter(item => item.main == true && item.url) .filter((item) => item.main == true && item.url)
.map(item => item.url); .map((item) => item.url);
if (mainPicUrl && mainPicUrl.length > 0) { if (mainPicUrl && mainPicUrl.length > 0) {
goodsInfo.value.picUrl = mainPicUrl[0]; goodsInfo.value.picUrl = mainPicUrl[0];
} }
const subPicUrl = state.pictures const subPicUrl = state.pictures
.filter(item => item.main == false && item.url) .filter((item) => item.main == false && item.url)
.map(item => item.url); .map((item) => item.url);
if (subPicUrl && subPicUrl.length > 0) { if (subPicUrl && subPicUrl.length > 0) {
goodsInfo.value.subPicUrls = subPicUrl; goodsInfo.value.subPicUrls = subPicUrl;
} }

View File

@@ -20,7 +20,7 @@ export default ({ mode }: ConfigEnv): UserConfig => {
], ],
// 本地反向代理解决浏览器跨域限制 // 本地反向代理解决浏览器跨域限制
server: { server: {
host: 'localhost', host: '0.0.0.0',
port: Number(env.VITE_APP_PORT), port: Number(env.VITE_APP_PORT),
open: true, // 运行自动打开浏览器 open: true, // 运行自动打开浏览器
proxy: { proxy: {