Commit 3dee6489 authored by zL's avatar zL

提交部分代码

parent 8ec2f287
...@@ -462,7 +462,15 @@ export default { ...@@ -462,7 +462,15 @@ export default {
Select(val) { Select(val) {
this.isShowMenu = false; this.isShowMenu = false;
this.label = val; this.label = val;
if (
this.$store.state.theAnchor != -1 &&
this.$store.state.chainStatus !== "" &&
this.$store.state.chainStatus !== val
) {
this.$store.commit("setTheAnchor", -1);
} else {
this.$store.commit("setChainStatus", val); this.$store.commit("setChainStatus", val);
}
switch (val) { switch (val) {
case "全部": case "全部":
this.chainStatus = null; this.chainStatus = null;
......
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
v-if="showVideo" v-if="showVideo"
@closePopup="showVideo = false" @closePopup="showVideo = false"
showMask showMask
@ClickingBackground="showVideo = false"
> >
<div> <div>
<video controls="controls" style="outline: none" :src="Vurl"></video> <video controls="controls" style="outline: none" :src="Vurl"></video>
......
...@@ -5,6 +5,15 @@ module.exports = { ...@@ -5,6 +5,15 @@ module.exports = {
configureWebpack: { configureWebpack: {
}, },
devServer: {
// port: port,
open: true,
// overlay: {
// warnings: false,
// errors: true
// },
},
pages: { pages: {
index: UrlPrefixObj.model.INDEX index: UrlPrefixObj.model.INDEX
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment