@@ -62,7 +62,7 @@ export default { | |||||
let values = this.value.split(",") | let values = this.value.split(",") | ||||
if(values.length>1){ | if(values.length>1){ | ||||
const orgItems = values.map(t=>list[t].name).toString() | |||||
const orgItems = values.map(t=>list[t]?list[t].name:'').toString() | |||||
return orgItems | return orgItems | ||||
} | } | ||||
@@ -1,4 +1,4 @@ | |||||
<template> | |||||
<template> | |||||
<view class="page"> | <view class="page"> | ||||
<!-- 主列表页 --> | <!-- 主列表页 --> | ||||
<view | <view | ||||
@@ -101,13 +101,13 @@ | |||||
title="会议地点" | title="会议地点" | ||||
placeholder="按会议地点查询" | placeholder="按会议地点查询" | ||||
/> | /> | ||||
<l-organize-picker | |||||
<!-- <l-organize-picker | |||||
v-model="queryData.CreateUser" | v-model="queryData.CreateUser" | ||||
@change="searchChange" | @change="searchChange" | ||||
type="user" | type="user" | ||||
title="申请人" | title="申请人" | ||||
placeholder="按申请人查询" | placeholder="按申请人查询" | ||||
/> | |||||
/> --> | |||||
<!-- 重置查询条件按钮 --> | <!-- 重置查询条件按钮 --> | ||||
<view class="padding-tb"> | <view class="padding-tb"> | ||||
@@ -59,8 +59,8 @@ export default { | |||||
let arr = this.ids.split(",") | let arr = this.ids.split(",") | ||||
let items = [] | let items = [] | ||||
for (let s of arr) { | for (let s of arr) { | ||||
if(this.GET_GLOBAL("user")[s]){ | |||||
items.push({...this.GET_GLOBAL("user")[s],id:s}) | |||||
if(this.GET_GLOBAL(type)[s]){ | |||||
items.push({...this.GET_GLOBAL(type)[s],id:s}) | |||||
} | } | ||||
} | } | ||||
this.items = items | this.items = items | ||||
@@ -77,7 +77,7 @@ export default { | |||||
this.type = type || 'user' | this.type = type || 'user' | ||||
const selectType = { user: '职员', department: '部门', company: '公司' }[type] | const selectType = { user: '职员', department: '部门', company: '公司' }[type] | ||||
this.SET_TITLE(`请选择一个${selectType}`) | |||||
this.SET_TITLE(`请选择${selectType}`) | |||||
}, | }, | ||||
findItem(arr,item){ | findItem(arr,item){ | ||||
@@ -107,7 +107,23 @@ | |||||
{ | { | ||||
en: 'TEN', | en: 'TEN', | ||||
cn: '星期十' | cn: '星期十' | ||||
} | |||||
}, | |||||
{ | |||||
en: 'ELEVEN', | |||||
cn: '星期十一' | |||||
}, | |||||
{ | |||||
en: 'TWELVE', | |||||
cn: '星期十二' | |||||
}, | |||||
{ | |||||
en: 'THIRTEEN', | |||||
cn: '星期十三' | |||||
}, | |||||
{ | |||||
en: 'FOURTEEN', | |||||
cn: '星期十四' | |||||
}, | |||||
] | ] | ||||
}; | }; | ||||
}, | }, | ||||
@@ -120,7 +136,7 @@ | |||||
let _this = this; | let _this = this; | ||||
// _this.todayWeek = common.weekday2(); | // _this.todayWeek = common.weekday2(); | ||||
_this.weekDayTime = 14 * common.oneDayTime(); | _this.weekDayTime = 14 * common.oneDayTime(); | ||||
_this.noClassTime = 4 * common.oneDayTime(); | |||||
_this.noClassTime = 0 * common.oneDayTime(); | |||||
_this.loadData(); | _this.loadData(); | ||||
}, | }, | ||||
liTap(ind) { | liTap(ind) { | ||||
@@ -174,7 +190,7 @@ | |||||
// 处理课程数据 | // 处理课程数据 | ||||
ProcessingData(res) { | ProcessingData(res) { | ||||
let courseCateByDay = {} | let courseCateByDay = {} | ||||
for (let i = 1; i < 11; i++) { | |||||
for (let i = 1; i < 15; i++) { | |||||
courseCateByDay[i] = [] | courseCateByDay[i] = [] | ||||
} | } | ||||
res.forEach((item) => { | res.forEach((item) => { | ||||
@@ -299,11 +315,12 @@ | |||||
} | } | ||||
.tSec2TopUl { | .tSec2TopUl { | ||||
width: 800px; | |||||
width: 1200px; | |||||
overflow: hidden; | |||||
} | } | ||||
.tSec2TopLi { | .tSec2TopLi { | ||||
width: 10%; | |||||
width: 7.14%; | |||||
float: left; | float: left; | ||||
line-height: 18px; | line-height: 18px; | ||||
padding: 9px 0 9px; | padding: 9px 0 9px; | ||||
@@ -327,7 +344,7 @@ | |||||
display: block; | display: block; | ||||
} | } | ||||
.tSec2TopLi text:first-child { | |||||
.tSec2TopLi:nth-child(-n + 10) text:first-child { | |||||
letter-spacing: 2px; | letter-spacing: 2px; | ||||
text-transform: uppercase; | text-transform: uppercase; | ||||
} | } | ||||