diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/list.vue index 23f23831e..7e1117744 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/list.vue @@ -3,7 +3,7 @@ - {{ tips }} + {{ tips }} @@ -52,13 +52,13 @@ - + /> --> @@ -104,8 +104,8 @@ export default { scheme: { Title: { type: 'text' }, Content: { type: 'textarea' }, - CreateTime: { type: 'datetime', dateformat: '0' }, - ReplyTime: { type: 'datetime', dateformat: '0' }, + CreateTime: { type: 'datetime', dateformat: '1' }, + ReplyTime: { type: 'datetime', dateformat: '1' }, ReplyContent: { type: 'textarea' }, }, @@ -168,7 +168,7 @@ export default { { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 - pagination: { rows: 10, page: this.page, sidx: 'Id', sord: 'DESC' }, + pagination: { rows: 10, page: this.page, sidx: 'CreateTime', sord: 'DESC' }, queryJson: JSON.stringify(this.searchData) }, '加载数据时出错' @@ -221,8 +221,8 @@ export default { // 点击「清空查询条件」按钮 reset() { this.queryData = this.COPY(this.defaultQueryData) - this.$refs.datefilter.changeDateRange('all') - // this.searchChange() + // this.$refs.datefilter.changeDateRange('all') + this.searchChange() }, // 点击「编辑」、「查看」、「添加」、「删除」按钮 diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/single.vue index 0b0274ec6..3479f7603 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/StuMail/single.vue @@ -82,8 +82,8 @@ export default { StuMail: { Title: { type: 'text', title: '主题' }, Content: { type: 'textarea', title: '内容' }, - CreateTime: { type: 'datetime', title: '创建时间', dateformat: '0' }, - ReplyTime: { type: 'datetime', title: '回复时间', dateformat: '0' }, + CreateTime: { type: 'datetime', title: '创建时间', dateformat: '1' }, + // ReplyTime: { type: 'datetime', title: '回复时间', dateformat: '0' }, ReplyContent: { type: 'textarea', title: '回复内容' }, },