标准化活动日历
This commit is contained in:
@@ -68,7 +68,7 @@
|
||||
<span>会议附件 :
|
||||
<span v-if="item.files.length === '0'">{{ '-' }}</span>
|
||||
<span v-for="res in item.files" :key="res.id" style="color: #409EFF;" @click="previews(res.id)">
|
||||
{{ res.name }}
|
||||
{{ res.name }} {{ ';'}}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
@@ -114,6 +114,9 @@ export default {
|
||||
let yy = new Date().getFullYear();
|
||||
let mm = new Date().getMonth() + 1;
|
||||
let dd = new Date().getDate();
|
||||
if (mm<10) {
|
||||
mm = this.padding0(mm, 2)
|
||||
}
|
||||
this.nowDate = yy + '-' + mm + '-' + dd
|
||||
this.formData.year = yy + '年'
|
||||
this.formData.month = mm + '月'
|
||||
|
||||
Reference in New Issue
Block a user