|
|
@@ -66,6 +66,7 @@
|
|
|
</menu>
|
|
|
<div class="settings-view-wrapper">
|
|
|
<OpeningTipSettings v-show="activeTab === '开场提示'"></OpeningTipSettings>
|
|
|
+ <PasswordSettings v-show="activeTab === '访问密码'"></PasswordSettings>
|
|
|
</div>
|
|
|
</div>
|
|
|
<eidt-panel
|
|
|
@@ -113,6 +114,7 @@
|
|
|
import { getMaterialList} from "@/api";
|
|
|
import EidtPanel from "./EditPanel";
|
|
|
import OpeningTipSettings from '@/views/base/openingTipSettings.vue'
|
|
|
+import PasswordSettings from "@/views/base/passwordSettings.vue";
|
|
|
import Table from "@/components/tableSelect";
|
|
|
import Table2 from "@/components/tableSelect2";
|
|
|
import Select from "@/components/select";
|
|
|
@@ -127,6 +129,7 @@ export default {
|
|
|
Table2,
|
|
|
Select,
|
|
|
OpeningTipSettings,
|
|
|
+ PasswordSettings,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -273,7 +276,7 @@ export default {
|
|
|
.main {
|
|
|
position: fixed;
|
|
|
width: 930px;
|
|
|
- top: 15%;
|
|
|
+ top: 90px;
|
|
|
left: calc(50% - (930px) / 2);
|
|
|
}
|
|
|
|
|
|
@@ -296,13 +299,16 @@ export default {
|
|
|
border-radius: 2px;
|
|
|
height: 36px;
|
|
|
width: 100%;
|
|
|
+ &:focus-within {
|
|
|
+ border-color: #0076F6;
|
|
|
+ }
|
|
|
> input {
|
|
|
border: none;
|
|
|
background: transparent;
|
|
|
outline: none;
|
|
|
height: 100%;
|
|
|
width: calc(100% - 50px);
|
|
|
- padding: none;
|
|
|
+ padding: 0;
|
|
|
color: #fff;
|
|
|
letter-spacing: 1px;
|
|
|
font-size: 14px;
|
|
|
@@ -326,6 +332,9 @@ export default {
|
|
|
border-radius: 2px;
|
|
|
height: 123px;
|
|
|
width: 100%;
|
|
|
+ &:focus-within {
|
|
|
+ border-color: #0076F6;
|
|
|
+ }
|
|
|
> textarea {
|
|
|
padding: 9px 16px 30px 16px;
|
|
|
resize: none;
|
|
|
@@ -334,7 +343,7 @@ export default {
|
|
|
outline: none;
|
|
|
width: 100%;
|
|
|
height: calc(100% - 30px);
|
|
|
- padding: none;
|
|
|
+ padding: 0;
|
|
|
color: #fff;
|
|
|
letter-spacing: 1px;
|
|
|
font-size: 14px;
|