|
@@ -25,9 +25,6 @@
|
|
|
<notice :notice="notice"></notice>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
- <el-col :span="24" class="mainLogin">
|
|
|
- <login></login>
|
|
|
- </el-col>
|
|
|
<el-col :span="24" class="mainData">
|
|
|
<el-col :span="7" class="RiLi">
|
|
|
<slot name="calendar"></slot>
|
|
@@ -78,6 +75,9 @@
|
|
|
<el-button onClick="javascript:this.parentNode.style.display='none';">关闭</el-button>
|
|
|
<floating :floating="floating"></floating>
|
|
|
</el-col>
|
|
|
+ <el-col :span="24" class="erweima">
|
|
|
+ <erweima></erweima>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -99,6 +99,7 @@ import contact from '@publics/src/layout/index/contact.vue';
|
|
|
import friendLink from '@publics/src/layout/index/friendLink.vue';
|
|
|
import footDown from '@publics/src/layout/index/foot.vue';
|
|
|
import floating from '@publics/src/layout/index/floating.vue';
|
|
|
+import erweima from '@publics/src/layout/index/erweima.vue';
|
|
|
|
|
|
export default {
|
|
|
name: 'index',
|
|
@@ -124,7 +125,6 @@ export default {
|
|
|
// native, //导航 slot
|
|
|
news, //新闻
|
|
|
notice, //通告
|
|
|
- login, //登录
|
|
|
// calendar, //日历 slot
|
|
|
recruit, //招聘
|
|
|
fast, //快速链接
|
|
@@ -136,6 +136,7 @@ export default {
|
|
|
friendLink, //友情链接
|
|
|
footDown, //底部
|
|
|
floating, //浮窗
|
|
|
+ erweima, //二维码
|
|
|
},
|
|
|
data: () => ({
|
|
|
backColor: '#850000',
|
|
@@ -265,4 +266,12 @@ export default {
|
|
|
border-radius: 0;
|
|
|
z-index: 1;
|
|
|
}
|
|
|
+.erweima {
|
|
|
+ position: fixed;
|
|
|
+ top: 30%;
|
|
|
+ right: 1%;
|
|
|
+ z-index: 999;
|
|
|
+ width: 60px;
|
|
|
+ height: 120px;
|
|
|
+}
|
|
|
</style>
|