parent
a435a3e82b
commit
f047cce4e3
@ -0,0 +1,538 @@
|
||||
<template>
|
||||
<a-spin class="new-school-calendar-style" :spinning="spinning">
|
||||
<div class="top-search-style">
|
||||
<a-icon type="left" class="icon-style" @click="changeWeek(-1)"/>
|
||||
<span class="ween-title-style">{{currentWeek}}</span>
|
||||
<a-icon type="right" class="icon-style" @click="changeWeek(1)"/>
|
||||
</div>
|
||||
<div class="drop-down-search-style">
|
||||
<a-select :value="categoryId" @change="categoryChange">
|
||||
<a-select-option v-for="item in categoryList" :key="item.category_id" :value="item.category_id">
|
||||
{{ item.category_name }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</div>
|
||||
<div class="week-calendar-content-style">
|
||||
<div class="list-data-header-row-style">
|
||||
<div class="row-item-style row-narrow-style">时间</div>
|
||||
<div class="row-item-style row-wide-style">工作内容</div>
|
||||
<div class="row-item-style row-narrow-style">地点</div>
|
||||
<div class="row-item-style row-narrow-style">对象</div>
|
||||
</div>
|
||||
<vue-scroll v-if="showData && dataList.length > 0" :ops="listScroll" style="height:420px" class="list-data-content-row-style">
|
||||
<template v-for="item,index in dataList">
|
||||
<div :class="'data-item-style ' + (index === 0?'data-first-item-style':'')" :key="item.detail_id">
|
||||
<div class="time-style">{{item.detail_time}}</div>
|
||||
<div :class="'info-style ' + (index % 2 === 0?'info-color-one-style':'info-color-two-style')">
|
||||
<div class="work-info-style">
|
||||
<vue-scroll :ops="listScroll" style="width:100%;height:50px">
|
||||
{{item.detail_content}}
|
||||
</vue-scroll>
|
||||
</div>
|
||||
<div class="other-info-style">
|
||||
<vue-scroll :ops="listScroll"
|
||||
style="width:100%;height:50px;line-height: 50px;text-align: center">
|
||||
{{item.detail_place}}
|
||||
</vue-scroll>
|
||||
</div>
|
||||
<div class="other-info-style">
|
||||
<vue-scroll :ops="listScroll"
|
||||
style="width:100%;height:50px;line-height: 50px;text-align: center">
|
||||
{{item.detail_target}}
|
||||
</vue-scroll>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</vue-scroll>
|
||||
<div v-if="showData && dataList.length === 0" class="no-data-content-style">
|
||||
<a-empty description="暂无数据"/>
|
||||
</div>
|
||||
</div>
|
||||
</a-spin>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 校历
|
||||
* */
|
||||
import {Icon, Select, Spin, Empty} from 'ant-design-vue';
|
||||
import moment from 'moment';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
showData: false,
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
categoryId: 0,
|
||||
categoryList: [
|
||||
{
|
||||
category_id: 0,
|
||||
category_name: "全部",
|
||||
},
|
||||
// {
|
||||
// category_id: 643,
|
||||
// category_name: "行政后勤",
|
||||
// num: 4
|
||||
// },
|
||||
// {
|
||||
// category_id: 644,
|
||||
// category_name: "安全工作",
|
||||
// num: 0
|
||||
// },
|
||||
// {
|
||||
// category_id: 645,
|
||||
// category_name: "教学教研",
|
||||
// num: 0
|
||||
// }
|
||||
],
|
||||
weekArr: [],
|
||||
weekIndex: 0,
|
||||
// dataList:[
|
||||
// {
|
||||
// calendar_category_id: 643,
|
||||
// calendar_category_name: "行政后勤",
|
||||
// detail_content: "1\n2\n3\n4",
|
||||
// detail_id: 608,
|
||||
// detail_place: "",
|
||||
// detail_remark: "",
|
||||
// detail_target: "",
|
||||
// detail_time: "2020-10-22~2020-10-23",
|
||||
// leader_id: 0,
|
||||
// leader_name: ""
|
||||
// },
|
||||
// {
|
||||
// calendar_category_id: 643,
|
||||
// calendar_category_name: "行政后勤",
|
||||
// detail_content: "1234",
|
||||
// detail_id: 625,
|
||||
// detail_place: "1234",
|
||||
// detail_remark: "1234",
|
||||
// detail_target: "1234",
|
||||
// detail_time: "2020-10-22~2020-10-24",
|
||||
// leader_id: 0,
|
||||
// leader_name: ""
|
||||
// },
|
||||
// {
|
||||
// calendar_category_id: 736,
|
||||
// calendar_category_name: "11111",
|
||||
// detail_content: "123456",
|
||||
// detail_id: 644,
|
||||
// detail_place: "132456789",
|
||||
// detail_remark: "111",
|
||||
// detail_target: "456789",
|
||||
// detail_time: "2020-11-18",
|
||||
// leader_id: null,
|
||||
// leader_name: "",
|
||||
// },
|
||||
// {
|
||||
// calendar_category_id: 643,
|
||||
// calendar_category_name: "行政后勤",
|
||||
// detail_content: "一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五",
|
||||
// detail_id: 648,
|
||||
// detail_place: "一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五",
|
||||
// detail_remark: "一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五",
|
||||
// detail_target: "一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五一二三四五",
|
||||
// detail_time: "2020-11-19~2020-11-21",
|
||||
// leader_id: 0,
|
||||
// leader_name: ""
|
||||
// },
|
||||
// {
|
||||
// calendar_category_id: 643,
|
||||
// calendar_category_name: "行政后勤",
|
||||
// detail_content: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_id: 649,
|
||||
// detail_place: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_remark: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_target: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_time: "2020-11-24~2020-11-26",
|
||||
// leader_id: 0,
|
||||
// leader_name: ""
|
||||
// },
|
||||
// {
|
||||
// calendar_category_id: 643,
|
||||
// calendar_category_name: "行政后勤",
|
||||
// detail_content: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_id: 650,
|
||||
// detail_place: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_remark: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_target: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_time: "2020-11-24~2020-11-26",
|
||||
// leader_id: 0,
|
||||
// leader_name: ""
|
||||
// },
|
||||
// {
|
||||
// calendar_category_id: 643,
|
||||
// calendar_category_name: "行政后勤",
|
||||
// detail_content: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_id: 651,
|
||||
// detail_place: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_remark: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_target: "测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试",
|
||||
// detail_time: "2020-11-24~2020-11-26",
|
||||
// leader_id: 0,
|
||||
// leader_name: ""
|
||||
// },
|
||||
// ],
|
||||
calendarId: "",
|
||||
dataList: [],
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
currentWeek: function () {
|
||||
if (this.weekArr.length > 0) {
|
||||
return this.weekArr[this.weekIndex]["calendar_term_name"];
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
this.getDataexReport01();
|
||||
},
|
||||
methods: {
|
||||
getDataexReport01: function () {
|
||||
let param = {
|
||||
"access_token": "system_01##20200102030405##a6ce11eab94df48a6ce11eab",
|
||||
"query": {
|
||||
"query_id": "query_xingzheng_xiaoli",
|
||||
"query_param": [
|
||||
this.BaseConfig.person_info_my.bureau_id + ""
|
||||
]
|
||||
},
|
||||
"query_cache": 0,
|
||||
"query_count": [],
|
||||
"query_format": "json",
|
||||
"query_group": []
|
||||
}
|
||||
this.DataexReportInterface.callInterface([{
|
||||
params: param,
|
||||
method: "post",
|
||||
}], (result) => {
|
||||
if (result[0].data.success) {
|
||||
let dataList = JSON.parse(result[0].data.result);
|
||||
if (dataList && dataList.length > 0) {
|
||||
this.weekArr.push(...dataList);
|
||||
this.calendarId = dataList[0].calendar_id;
|
||||
this.getDataexReport02();
|
||||
this.getDataexReport03();
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
getDataexReport02: function () {
|
||||
this.dataList = [];
|
||||
let param = {
|
||||
"access_token": "system_01##20200102030405##a6ce11eab94df48a6ce11eab",
|
||||
"query": {
|
||||
"query_id": "query_xingzheng_xiaoli2",
|
||||
"query_param": [
|
||||
this.calendarId + ""
|
||||
]
|
||||
},
|
||||
"query_cache": 0,
|
||||
"query_count": [],
|
||||
"query_format": "json",
|
||||
"query_group": []
|
||||
}
|
||||
this.spinning = true;
|
||||
this.DataexReportInterface.callInterface([{
|
||||
params: param,
|
||||
method: "post",
|
||||
}], (result) => {
|
||||
this.showData = true;
|
||||
this.spinning = false;
|
||||
if (result[0].data.success) {
|
||||
let res = result[0].data.result;
|
||||
if (res && res !== "") {
|
||||
let dataList = JSON.parse(result[0].data.result);
|
||||
if (dataList && dataList.length > 0) {
|
||||
for (let i = 0, len = dataList.length; i < len; i++) {
|
||||
let dataInfo = dataList[i];
|
||||
let obj = {
|
||||
detail_time: this.coverTime(dataInfo.begin_date) + "~" + this.coverTime(dataInfo.end_date),
|
||||
detail_content: dataInfo.detail_content,
|
||||
detail_place: dataInfo.detail_place,
|
||||
detail_target: dataInfo.detail_target,
|
||||
}
|
||||
this.dataList.push(obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
getDataexReport03: function () {
|
||||
this.categoryList = [
|
||||
{
|
||||
category_id: 0,
|
||||
category_name: "全部",
|
||||
}
|
||||
]
|
||||
let param = {
|
||||
"access_token": "system_01##20200102030405##a6ce11eab94df48a6ce11eab",
|
||||
"query": {
|
||||
"query_id": "query_xingzheng_xiaoli3",
|
||||
"query_param": [
|
||||
this.calendarId + ""
|
||||
]
|
||||
},
|
||||
"query_cache": 0,
|
||||
"query_count": [],
|
||||
"query_format": "json",
|
||||
"query_group": []
|
||||
}
|
||||
this.DataexReportInterface.callInterface([{
|
||||
params: param,
|
||||
method: "post",
|
||||
}], (result) => {
|
||||
if (result[0].data.success) {
|
||||
let res = result[0].data.result;
|
||||
if (res && res !== "") {
|
||||
let dataList = JSON.parse(result[0].data.result);
|
||||
if (dataList && dataList.length > 0) {
|
||||
this.categoryList.push(...dataList);
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
getDataexReport04: function () {
|
||||
this.dataList = [];
|
||||
let param = {
|
||||
"access_token": "system_01##20200102030405##a6ce11eab94df48a6ce11eab",
|
||||
"query": {
|
||||
"query_id": "query_xingzheng_xiaoli4",
|
||||
"query_param": [
|
||||
this.calendarId + "",
|
||||
this.categoryId + "",
|
||||
]
|
||||
},
|
||||
"query_cache": 0,
|
||||
"query_count": [],
|
||||
"query_format": "json",
|
||||
"query_group": []
|
||||
}
|
||||
this.spinning = true;
|
||||
this.DataexReportInterface.callInterface([{
|
||||
params: param,
|
||||
method: "post",
|
||||
}], (result) => {
|
||||
this.showData = true;
|
||||
this.spinning = false;
|
||||
if (result[0].data.success) {
|
||||
let res = result[0].data.result;
|
||||
if (res && res !== "") {
|
||||
let dataList = JSON.parse(result[0].data.result);
|
||||
if (dataList && dataList.length > 0) {
|
||||
for (let i = 0, len = dataList.length; i < len; i++) {
|
||||
let dataInfo = dataList[i];
|
||||
let obj = {
|
||||
detail_content: dataInfo.detail_content,
|
||||
detail_place: dataInfo.detail_place,
|
||||
detail_target: dataInfo.detail_target,
|
||||
}
|
||||
if (dataInfo.detail_time && dataInfo.detail_time !== "") {
|
||||
obj.detail_time = dataInfo.detail_time;
|
||||
} else {
|
||||
obj.detail_time = this.coverTime(dataInfo.begin_date) + "~" + this.coverTime(dataInfo.end_date);
|
||||
}
|
||||
this.dataList.push(obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
coverTime: function (time) {
|
||||
return moment(time.replace('T', ' ').replace('Z', '')).format("YYYY-MM-DD");
|
||||
},
|
||||
changeWeek: function (param) {
|
||||
if (param === 1) {
|
||||
//加
|
||||
if (this.weekIndex === this.weekArr.length - 1) {
|
||||
this.weekIndex = 0;
|
||||
} else {
|
||||
this.weekIndex += 1;
|
||||
}
|
||||
} else {
|
||||
//减
|
||||
if (this.weekIndex === 0) {
|
||||
this.weekIndex = this.weekArr.length - 1;
|
||||
} else {
|
||||
this.weekIndex -= 1;
|
||||
}
|
||||
}
|
||||
this.categoryId = 0;
|
||||
this.calendarId = this.weekArr[this.weekIndex]["calendar_id"];
|
||||
this.getDataexReport02();
|
||||
this.getDataexReport03();
|
||||
},
|
||||
categoryChange: function (value) {
|
||||
if (this.categoryId !== value) {
|
||||
this.categoryId = value;
|
||||
if (this.categoryId !== 0) {
|
||||
this.getDataexReport04();
|
||||
} else {
|
||||
this.getDataexReport02();
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
components: {
|
||||
ASpin: Spin,
|
||||
AEmpty: Empty,
|
||||
AIcon: Icon,
|
||||
ASelect: Select,
|
||||
ASelectOption: Select.Option,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../../../assets/scss/style";
|
||||
|
||||
.new-school-calendar-style {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
.top-search-style {
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 0 5px;
|
||||
.icon-style {
|
||||
color: $color-default-bright;
|
||||
font-size: 25px;
|
||||
}
|
||||
.ween-title-style {
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
font-size: 16px;
|
||||
padding: 0 5px;
|
||||
color: $color-default-bright;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.drop-down-search-style {
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
.ant-select {
|
||||
width: 100px;
|
||||
height: 20px;
|
||||
/deep/ .ant-select-selection {
|
||||
height: 20px !important;
|
||||
background: rgba(0,0,0,0);
|
||||
border: 1px solid $color-default-bright;
|
||||
.ant-select-selection__rendered {
|
||||
line-height: 20px;
|
||||
color: $color-default-bright;
|
||||
}
|
||||
.ant-select-arrow{
|
||||
color: $color-default-bright;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.week-calendar-content-style {
|
||||
width: 100%;
|
||||
height: 430px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.list-data-header-row-style {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.row-item-style {
|
||||
background-color: #17387b;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: white;
|
||||
}
|
||||
.row-narrow-style {
|
||||
width: calc(20% - 2.5px);
|
||||
}
|
||||
.row-wide-style {
|
||||
width: calc(40% - 2.5px);
|
||||
}
|
||||
}
|
||||
.list-data-content-row-style {
|
||||
width: 100%;
|
||||
height: 420px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/deep/ .school-calendar-content-style {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
/deep/ .__view {
|
||||
width: 100% !important;
|
||||
}
|
||||
.data-item-style {
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
border-left: 1px solid #306b93;
|
||||
border-right: 1px solid #306b93;
|
||||
border-bottom: 1px solid #306b93;
|
||||
display: flex;
|
||||
.time-style {
|
||||
width: 20%;
|
||||
display: flex;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
color: $color-default-bright;
|
||||
}
|
||||
.info-style {
|
||||
width: 80%;
|
||||
display: flex;
|
||||
color: white;
|
||||
.work-info-style {
|
||||
width: 50%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
padding: 5px;
|
||||
word-break: break-all;
|
||||
}
|
||||
.other-info-style {
|
||||
width: 25%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 5px;
|
||||
word-break: break-all;
|
||||
}
|
||||
}
|
||||
.info-color-one-style {
|
||||
background-color: #4b496a;
|
||||
}
|
||||
.info-color-two-style {
|
||||
background-color: #1e2a59;
|
||||
}
|
||||
}
|
||||
.data-first-item-style {
|
||||
border-top: 1px solid #306b93;
|
||||
}
|
||||
}
|
||||
.no-data-content-style{
|
||||
width: 100%;
|
||||
height: 420px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
/deep/ .ant-empty-description{
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,15 @@
|
||||
const InterfaceConfig = {
|
||||
"getNowTime": {
|
||||
url: '/intellioa/common/getNowTime',
|
||||
method: 'get',
|
||||
isTestLogin: true
|
||||
},
|
||||
//考勤统计
|
||||
"getDailySummaryForOrg": {
|
||||
url: '/intellioa/attendance/attendanceReport/getDailySummaryForOrg',
|
||||
method: 'get',
|
||||
isTestLogin: true
|
||||
},
|
||||
|
||||
};
|
||||
export default InterfaceConfig;
|
Loading…
Reference in new issue