Sfoglia il codice sorgente

禅道bug

临城职教中职
杨晓琪 2 anni fa
parent
commit
41f19ba171
2 ha cambiato i file con 7 aggiunte e 7 eliminazioni
  1. +2
    -2
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/Sys_ReceiveFile/single.vue
  2. +5
    -5
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/DutySchedule/list.vue

+ 2
- 2
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/Sys_ReceiveFile/single.vue Vedi File

@@ -115,7 +115,7 @@ export default {
Sys_ReceiveFile: { Sys_ReceiveFile: {
Sender: { type: "text", title: "发送人" }, Sender: { type: "text", title: "发送人" },
Title: { type: "text", title: "主题" }, Title: { type: "text", title: "主题" },
SendTime: { type: "datetime", title: "发送时间", dateformat: "0" },
SendTime: { type: "datetime", title: "发送时间", dateformat: "1" },
SendType: { SendType: {
type: "select", type: "select",
title: "接收对象", title: "接收对象",
@@ -124,7 +124,7 @@ export default {
}, },
Contents: { type: "textarea", title: "内容" }, Contents: { type: "textarea", title: "内容" },
ReadFlag: { type: "select", title: "状态", dataSource: "0" }, ReadFlag: { type: "select", title: "状态", dataSource: "0" },
ReadTime: { type: "datetime", title: "查阅时间", dateformat: "0" },
ReadTime: { type: "datetime", title: "查阅时间", dateformat: "1" },
}, },
}, // 数据源 }, // 数据源
dataSource: { dataSource: {


+ 5
- 5
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/DutySchedule/list.vue Vedi File

@@ -156,7 +156,7 @@ export default {
}, },
// 拉取列表 // 拉取列表
async fetchList() {
async fetchList(isConcat=true) {
if (this.page > this.total) { return } if (this.page > this.total) { return }
const result = await this.HTTP_GET( const result = await this.HTTP_GET(
@@ -174,19 +174,19 @@ export default {
this.total = result.total this.total = result.total
this.page = result.page + 1 this.page = result.page + 1
this.list = this.list.concat(result.rows)
this.list = isConcat?this.list.concat(result.rows):result.rows
this.tips = `已加载 ${Math.min(result.page, result.total)} / ${result.total} 页,共 ${result.records} 项` this.tips = `已加载 ${Math.min(result.page, result.total)} / ${result.total} 页,共 ${result.records} 项`
this.loadState = result.page >= result.total ? '已加载所有项目' : '向下翻以加载更多' this.loadState = result.page >= result.total ? '已加载所有项目' : '向下翻以加载更多'
}, },
// 刷新清空列表 // 刷新清空列表
async refreshList() {
async refreshList(isConcat=true) {
this.page = 1 this.page = 1
this.total = 2 this.total = 2
this.list = [] this.list = []
await this.fetchList()
await this.fetchList(isConcat)
}, },
// 列表下拉 // 列表下拉
@@ -211,7 +211,7 @@ export default {
Object.assign(result, mapValues(queryObj, t => (Array.isArray(t) ? t.join(',') : t))) Object.assign(result, mapValues(queryObj, t => (Array.isArray(t) ? t.join(',') : t)))
this.searchData = result this.searchData = result
await this.refreshList()
await this.refreshList(false)
}, },
// 点击「清空查询条件」按钮 // 点击「清空查询条件」按钮


Caricamento…
Annulla
Salva