Commit 3dee6489 authored by zL's avatar zL

提交部分代码

parent 8ec2f287
......@@ -462,7 +462,15 @@ export default {
Select(val) {
this.isShowMenu = false;
this.label = val;
this.$store.commit("setChainStatus", 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);
}
switch (val) {
case "全部":
this.chainStatus = null;
......
......@@ -36,7 +36,6 @@
v-if="showVideo"
@closePopup="showVideo = false"
showMask
@ClickingBackground="showVideo = false"
>
<div>
<video controls="controls" style="outline: none" :src="Vurl"></video>
......
......@@ -5,6 +5,15 @@ module.exports = {
configureWebpack: {
},
devServer: {
// port: port,
open: true,
// overlay: {
// warnings: false,
// errors: true
// },
},
pages: {
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