|
@@ -128,14 +128,14 @@
|
|
|
|
|
|
<a-row :gutter="24">
|
|
|
<!-- 图片 -->
|
|
|
- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
+ <!-- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
<div style="height:186px;">
|
|
|
- <div class="tips">
|
|
|
- <img src="../../assets/date.jpg" alt="" height="186px;" width="100%" />
|
|
|
- <!-- <i id="showTime"></i> -->
|
|
|
- </div>
|
|
|
+ <div class="tips"> -->
|
|
|
+ <!-- <img src="../../assets/date.jpg" alt="" height="186px;" width="100%" /> -->
|
|
|
+ <!-- <i id="showTime"></i> -->
|
|
|
+ <!-- </div>
|
|
|
</div>
|
|
|
- </a-col>
|
|
|
+ </a-col> -->
|
|
|
|
|
|
<!-- 小日历 -->
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
@@ -344,20 +344,20 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
//获取当前时间
|
|
|
- getCurrentTime() {
|
|
|
- var _this = this
|
|
|
- let yy = new Date().getFullYear()
|
|
|
- let mm = new Date().getMonth() + 1
|
|
|
- let dd = new Date().getDate()
|
|
|
- let hh = new Date().getHours()
|
|
|
- let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes()
|
|
|
- let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds()
|
|
|
- // yy + '/' + mm + '/' +dd + ' ' + 省掉年月日
|
|
|
- _this.gettime = hh + ':' + mf + ':' + ss
|
|
|
- this.value = _this.gettime
|
|
|
- showTime.innerHTML = _this.gettime
|
|
|
- // console.log(_this.gettime)
|
|
|
- },
|
|
|
+ // getCurrentTime() {
|
|
|
+ // var _this = this
|
|
|
+ // let yy = new Date().getFullYear()
|
|
|
+ // let mm = new Date().getMonth() + 1
|
|
|
+ // let dd = new Date().getDate()
|
|
|
+ // let hh = new Date().getHours()
|
|
|
+ // let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes()
|
|
|
+ // let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds()
|
|
|
+ // // yy + '/' + mm + '/' +dd + ' ' + 省掉年月日
|
|
|
+ // _this.gettime = hh + ':' + mf + ':' + ss
|
|
|
+ // this.value = _this.gettime
|
|
|
+ // showTime.innerHTML = _this.gettime
|
|
|
+ // // console.log(_this.gettime)
|
|
|
+ // },
|
|
|
// 公告数据 ----|**查询条件:已发布、数据条数**|------
|
|
|
async getAnnList() {
|
|
|
await enterpriseEList({ isRelease: '1', pageSize: 1000 }).then(res => {
|
|
@@ -566,4 +566,16 @@ export default {
|
|
|
// 单独创建页面写样式 如下
|
|
|
@import '~@assets/less/mytodo.less';
|
|
|
@import '~@assets/less/common.less';
|
|
|
+.contain {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ // height: 300px;
|
|
|
+ // line-height: 50px;
|
|
|
+ // text-align: center;
|
|
|
+ background: rgba(255, 255, 255, 0.3);
|
|
|
+}
|
|
|
</style>
|