123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- <template>
- <div class='infoWrap'>
- <div class="left">
- <div class="unread" @click="onLookMessage('all')">全部</div>
- <div class="unread" @click="onLookMessage('0')"> <img :src="img.boxicon"
- alt=""> 未读消息
- <div class="count" v-if="noReadMessage >= 1">{{ noReadMessage }}</div>
- </div>
- <div class="read" @click="onLookMessage('1')">
- <img :src="img.bookicon"
- alt="">
- 已读消息</div>
- </div>
- <div class="middle">
- <div class="msgItem" :class="[isCheckMessage == item.id ? 'active' : '']" @click="onClickRead(item)" v-for="(item, index) in dataList" :key="index">
- <!-- <h6 class="type"></h6> -->
- <h4 class="name">请假处理<span class='time'>{{ item.createOn }}</span>
- <div class="dot" v-if="item.readStatus == 0"></div>
- </h4>
- <p class='msg'>{{ item.content }}</p>
- </div>
- <el-pagination style="text-align: right"
- small v-if="dataList.length > 0"
- @current-change="onChange"
- :hide-on-single-page="pageInfo.isSinglePage"
- layout="prev, pager, next"
- :total="pageInfo.total">
- </el-pagination>
- </div>
- <div class="right" v-if="showRight">
- <div class="rightWrap">
- <img src="@/assets/images/base/placehorder-icon.png"
- class="header"
- alt="">
- <div class="info">
- <h2>{{ showMessage.user.username }}
- <!-- <span class="phone">【{{ showMessage.user.phone }}】</span> -->
- <el-tag v-if="showMessage.status == 'PASS'" type="success" effect="plain">已处理</el-tag>
- <el-tag v-if="showMessage.status == 'REJECT'" type="danger" effect="plain">已拒绝</el-tag>
- </h2>
- <p class="subMsg">发至 <span class='san'></span> <span style="margin-left:30px">我</span></p>
- <div class="textWrap">
- <p>审批事项: 请假</p>
- <p>开始时间: {{ showMessage.startTime }}</p>
- <p>结束时间: {{ showMessage.endTime }}</p>
- <p>备注: {{ showMessage.remark }}</p>
- </div>
- <div class="leaverecord">
- <el-table :data="showMessage.coursesScheduleJson" style="width: 100%" :header-cell-style="{background:'#EDEEF0',color:'#444'}">
- <el-table-column label="类型" width="60px">
- <template slot-scope="scope">
- {{ scope.row.befor.type == "VIP" ? 'VIP课' : '乐团课' }}
- </template>
- </el-table-column>
- <el-table-column prop="befor.name" label="班名" width="140px">
- </el-table-column>
- <el-table-column label="调整前日期">
- <template slot-scope="scope">
- {{ scope.row.befor.classDate | formatTimer }}
- </template>
- </el-table-column>
- <el-table-column label="上课时间">
- <template slot-scope="scope">
- {{ scope.row.befor.startClassTime | getFormatTime(scope.row.befor.endClassTime) }}
- </template>
- </el-table-column>
- <el-table-column label="调整后日期">
- <template slot-scope="scope">
- {{ scope.row.after.classDate | formatTimer }}
- </template>
- </el-table-column>
- <el-table-column label="调整后时间">
- <template slot-scope="scope">
- {{ scope.row.after.startClassTime | getFormatTime(scope.row.after.endClassTime) }}
- </template>
- </el-table-column>
- <!-- <el-table-column label="操作" v-if="showMessage.status == 'ING'">
- <template slot-scope="scope">
- <el-button @click="onClssTime(scope.row)" type="text">调整</el-button>
- </template>
- </el-table-column> -->
- </el-table>
- </div>
- </div>
- </div>
- <div class="infoFoot" v-if="showMessage.status == 'ING'">
- <div class="noBtn" @click="onSubmit(showMessage, 'REJECT')">拒绝</div>
- <div class="yesBtn" @click="onSubmit(showMessage, 'PASS')">同意</div>
- </div>
- </div>
- <el-dialog title="调整时间"
- :visible.sync="dialogVisible"
- width="30%">
- <el-form ref="form" label-width="80px">
- <el-form-item label="调整日期">
- <el-date-picker
- v-model="changeDate"
- value-format="yyyy-MM-dd HH:mm:SS"
- type="datetime"
- placeholder="选择日期">
- </el-date-picker>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="onDialogChange">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { queryCountOfUnread, sysMessageList, leaveQueryDetail, setRead, approve } from '@/api/journal'
- export default {
- data () {
- return {
- img: {
- bookicon: require('@/assets/images/base/bookicon.png'),
- Hbookicon: require('@/assets/images/base/bookicon-h.png'),
- trashicon: require('@/assets/images/base/trashicon.png'),
- Htrashicon: require('@/assets/images/base/trashicon-h.png'),
- boxicon: require('@/assets/images/base/boxicon.png'),
- Hboxicon: require('@/assets/images/base/boxicon-h.png')
- },
- pageInfo: {
- isSinglePage: false, // 是否只有一页
- limit: 10,
- page: 1,
- readStatus: null,
- total: 0,
- },
- noReadMessage: 0, // 未读消息
- dataList: [],
- isCheckMessage: null,
- showRight: false,
- dialogVisible: false,
- dialogData: [],
- changeDate: null,
- showMessage: {}
- }
- },
- mounted() {
- this.__init()
- this.sysMessageList()
- },
- methods: {
- __init() {
- // 未读消息
- queryCountOfUnread().then(res => {
- if(res.code == 200) {
- if(res.data && res.data.LEAVE) {
- this.noReadMessage = res.data.LEAVE
- }
- }
- })
- },
- onSubmit(showMessage, type) {
- let params = {
- id: showMessage.id,
- // remark: null,
- status: type,
- userId: showMessage.userId
- }
- approve(params).then(res => {
- if(res.code == 200) {
- this.$message.success('处理成功')
- this.getLeaveItem(JSON.stringify({ leaveRecordId: showMessage.id }))
- } else {
- this.$message.error(res.msg)
- }
- })
- },
- onDialogChange() {
- if(!this.changeDate) {
- this.$message.error('请选择调整日期')
- return
- }
- let tempDate = new Date(this.changeDate)
- let startStr = '2019/10/10 ' + this.getDateInfo(this.dialogData.befor.startClassTime),
- endStr = '2019/10/10 ' + this.getDateInfo(this.dialogData.befor.endClassTime)
- let startDate = new Date(startStr),
- endDate = new Date(endStr)
- let m = parseInt(Math.abs(endDate.getTime() - startDate.getTime()) / 1000 / 60)
- let tempLastDate = tempDate.setMinutes(tempDate.getMinutes() + m)
-
- this.dialogData.after.classDate = this.getFormatDate(tempDate)
- this.dialogData.after.startClassTime = this.getFormatDate(tempDate)
- this.dialogData.after.endClassTime = this.getFormatDate(tempLastDate)
- this.dialogVisible = false
- },
- getFormatDate(data) {
- let tempDate = new Date(data)
- let month = (tempDate.getMonth() + 1) >= 10 ? (tempDate.getMonth() + 1) : '0' + (tempDate.getMonth() + 1)
- let day = tempDate.getDate() >= 10 ? tempDate.getDate() : '0' + tempDate.getDate()
- let tDate = tempDate.getFullYear() + '-' + month + '-' + day
- let hours = tempDate.getHours() >= 10 ? tempDate.getHours() : '0' + tempDate.getHours()
- let min = tempDate.getMinutes() >= 10 ? tempDate.getMinutes() : '0' + tempDate.getMinutes()
- return tDate + ' ' + hours + ':' + min + ':00'
- },
- getDateInfo(value) {
- let tempValue = value
- if(typeof value !== 'object') {
- tempValue = value.replace(/-/ig, '/')
- }
- let d = new Date(tempValue)
- let hour = d.getHours() >= 10 ? d.getHours() : '0' + d.getHours()
- let minute = d.getMinutes() >= 10 ? d.getMinutes() : '0' + d.getMinutes()
- return hour + ':' + minute + ':00'
- },
- onClssTime(row) {
- this.dialogVisible = true
- this.dialogData = row
- },
- sysMessageList() { // 列表
- sysMessageList({
- group: 'LEAVE',
- rows: this.pageInfo.limit,
- page: this.pageInfo.page,
- readStatus: this.pageInfo.readStatus
- }).then(res => {
- if(res.code == 200) {
- this.dataList = res.data.rows
- this.pageInfo.total = res.data.total
- }
- })
- },
- onLookMessage(type) { // 查看对应的数据
- if(type == "all") {
- this.pageInfo.readStatus = null
- } else {
- this.pageInfo.readStatus = type
- }
- this.pageInfo.page = 1
- this.showRight = false
- this.showMessage = {}
- this.isCheckMessage = null
- this.sysMessageList()
- },
- onChange(page) { // 分页
- this.pageInfo.page = page
- this.sysMessageList()
- },
- onClickRead(item) {
- this.isCheckMessage = item.id
- if(item.readStatus == 1) {
- this.getLeaveItem(item.memo)
- } else {
- setRead({ id: item.id }).then(res => {
- let result = res.data
- if(res.code == 200) {
- item.readStatus = 1
- this.getLeaveItem(item.memo)
- this.noReadMessage--
- }
- })
- }
- },
- getLeaveItem(memo) {
- memo = JSON.parse(memo)
- leaveQueryDetail({ id: memo.leaveRecordId }).then(res => {
- if(res.code == 200) {
- this.showRight = true
- if(res.data.coursesScheduleJson) {
- res.data.coursesScheduleJson = JSON.parse(res.data.coursesScheduleJson)
- }
- this.showMessage = res.data
- this.remark = res.data.reason
- } else {
- this.$message.error(res.msg)
- }
- })
- }
- },
- filters: {
- getFormatTime(tempA, tempB) {
- tempA = new Date(tempA.replace(/-/g, "/")),
- tempB = new Date(tempB.replace(/-/g, "/"))
- let hours = Number(tempA.getHours()) >= 10 ? tempA.getHours() : '0' + tempA.getHours()
- let hours2 = Number(tempB.getHours()) >= 10 ? tempB.getHours() : '0' + tempB.getHours()
- let min = Number(tempA.getMinutes()) >= 10 ? tempA.getMinutes() : '0' + tempA.getMinutes()
- let min2 = Number(tempB.getMinutes()) >= 10 ? tempB.getMinutes() : '0' + tempB.getMinutes()
- return hours + ':' + min + '-' + hours2 + ':' + min2
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .infoWrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- height: calc(100vh - 266px);
- overflow: auto;
- .left {
- padding-top: 24px;
- display: flex;
- flex-direction: column;
- align-items: left;
- > div {
- height: 26px;
- line-height: 26px;
- margin-top: 26px;
- img {
- position: relative;
- top: 6px;
- }
- }
- .unread, .read, .recovery {
- cursor: pointer;
- }
- .unread {
- position: relative;
- img {
- width: 26px;
- height: 25px;
- }
- .count {
- position: absolute;
- width: 38px;
- height: 23px;
- background: rgba(20, 146, 138, 0.5);
- border-radius: 100px;
- font-size: 12px;
- line-height: 23px;
- text-align: center;
- color: #225551;
- right: -44px;
- top: 8px;
- }
- }
- .read {
- img {
- width: 20px;
- height: 26px;
- }
- }
- .recovery {
- img {
- width: 19px;
- height: 26px;
- }
- }
- }
- .middle {
- width: 25%;
- margin-left: 76px;
- padding-top: 50px;
- overflow: auto;
- .msgItem {
- padding: 16px 18px 23px 30px;
- border-bottom: 1px solid #ccc;
- .type {
- font-size: 14px;
- color: #777;
- font-weight: 400;
- padding-bottom: 4px;
- }
- .name {
- position: relative;
- color: #444;
- font-size: 16px;
- padding-bottom: 9px;
- clear: both;
- .time {
- font-weight: 400;
- color: #aaa;
- float: right;
- }
- .dot {
- width: 7px;
- height: 7px;
- background-color: #f97215;
- border-radius: 50%;
- position: absolute;
- left: -13px;
- top: 4px;
- }
- }
- .msg {
- color: #444;
- font-size: 14px;
- line-height: 24px;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- }
- .msgItem.active {
- background-color: #f3f4f8;
- border-radius: 5px;
- .msg {
- color: #aaa;
- }
- }
- }
- .right {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- border: 1px solid #e4e8eb;
- margin-left: 25px;
- position: relative;
- overflow: auto;
- width: 50%;
- .rightWrap {
- // overflow: auto;
- padding: 18px 24px;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- box-sizing: border-box;
- .header {
- width: 30px;
- height: 30px;
- position: relative;
- top: 7px;
- border-radius: 50%;
- margin-right: 12px;
- }
- .info {
- position: relative;
- width: 100%;
- h2 {
- color: #212223;
- font-size: 16px;
- margin-bottom: 0px;
- .phone {
- font-size: 12px;
- color: #444;
- }
- }
- .subMsg {
- position: relative;
- font-size: 12px;
- color: #444;
- margin-bottom: 12px;
- .san {
- // margin-left: 110px;
- float: left;
- position: absolute;
- top: 0px;
- width: 0;
- height: 0;
- border-width: 5px;
- border-style: solid;
- border-color: transparent #909191 transparent transparent;
- transform: rotate(180deg); /*顺时针旋转90°*/
- margin: 0 8px;
- }
- }
- .textWrap {
- width: 316px;
- line-height: 21px;
- font-size: 14px;
- color: #212223;
- margin: 12px 0 34px;
- }
- .dot {
- width: 20px;
- height: 20px;
- }
- .timeMsg {
- position: relative;
- top: 5px;
- margin-left: 20px;
- .name {
- font-size: #444;
- font-size: 16px;
- margin-bottom: 3px;
- font-weight: 600;
- }
- .status {
- font-size: 14px;
- color: #62a070;
- }
- .status.waring {
- color: #f97215;
- }
- .status.end {
- color: #aaaaaa;
- }
- }
- }
- }
- .infoFoot {
- min-height: 60px;
- height: 60px;
- line-height: 60px;
- border-top: 1px solid #e4e8eb;
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .noBtn {
- cursor: pointer;
- width: 100px;
- height: 32px;
- line-height: 32px;
- color: #444;
- border-radius: 3px;
- border: 1px solid rgba(228, 232, 235, 1);
- text-align: center;
- margin-left: 70px;
- }
- .yesBtn {
- cursor: pointer;
- margin-left: 15px;
- text-align: center;
- width: 100px;
- height: 32px;
- line-height: 32px;
- background: rgba(249, 114, 21, 1);
- border-radius: 3px;
- color: #fff;
- }
- // width: 570px;
- }
- }
- }
- </style>
|