|
@@ -0,0 +1,521 @@
|
|
|
+<template>
|
|
|
+ <div class="approve-container flex flex-col">
|
|
|
+ <van-tabs
|
|
|
+ v-model="tabVal"
|
|
|
+ :before-change="handleTabBeforeChangeEvnet"
|
|
|
+ >
|
|
|
+ <van-tab
|
|
|
+ v-for="(tab, idx) in tabs"
|
|
|
+ :key="idx"
|
|
|
+ :title="tab.title"
|
|
|
+ :name="tab.name"
|
|
|
+ color="#000"
|
|
|
+ />
|
|
|
+ </van-tabs>
|
|
|
+ <div class="filter-container p-h-12 flex flex-row flex-row-aic">
|
|
|
+ <van-field v-model="searchVal" clearable placeholder="搜索" left-icon="search" :disabled="true" :readonly="true"
|
|
|
+ @click="handleClickSearchBox" />
|
|
|
+ <div class="filterbox flex flex-row flex-0shrink" @click="() => popupVisibility = true">
|
|
|
+ <van-icon name="filter-o" size="20" />
|
|
|
+ <span>筛选</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="approve-main">
|
|
|
+ <!-- TODO:需要一个滚动框架 是否需要采用 `mescroll.js` -->
|
|
|
+ <van-list
|
|
|
+ v-model="listLoading"
|
|
|
+ :finished="finished"
|
|
|
+ :finished-text="finishedText"
|
|
|
+ @load="onLoadData"
|
|
|
+ >
|
|
|
+ <approve-item
|
|
|
+ v-for="(item, idx) in tableData"
|
|
|
+ :key="idx"
|
|
|
+ approve-type="xx"
|
|
|
+ :title="rendeTitleCom"
|
|
|
+ :time="item.apply_date"
|
|
|
+ :rows="item.__rows_item__"
|
|
|
+ :person="item.approve_one.user.name"
|
|
|
+ flag="info"
|
|
|
+ :flag-state="Number(tabVal)"
|
|
|
+ />
|
|
|
+ </van-list>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- <div class="btnbox" @click="goexamine">jumptoexamine-pass</div>
|
|
|
+ <div class="btnbox" @click="goexamine2">jumptoexamine-refuse</div>
|
|
|
+ <div class="btnbox" @click="goDetail">goDetail</div> -->
|
|
|
+
|
|
|
+ <my-empty
|
|
|
+ v-show="showEmpty"
|
|
|
+ tip="暂无数据"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 弹窗 全部筛选 -->
|
|
|
+ <van-popup class="popupxx" v-model="popupVisibility" position="bottom" :style="{ height: '60%' }" closeable
|
|
|
+ close-icon-position="top-left">
|
|
|
+ <div>
|
|
|
+ <div class="popup__title">全部筛选</div>
|
|
|
+ <!-- <div class="popup__typebox">
|
|
|
+ <div class="popup__typebox__header">
|
|
|
+ <span>全部类型</span>
|
|
|
+ </div>
|
|
|
+ <div class="popup__typebox__list flex">
|
|
|
+ <span v-for="(type, idx) in types" :key="idx" class="item"
|
|
|
+ @click="handleTouchThatType(event, type)">
|
|
|
+ {{ type.name }}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
+ <div class="popup__rangetime">
|
|
|
+ <div class="popup__typebox__header">
|
|
|
+ <span>申请时间</span>
|
|
|
+ </div>
|
|
|
+ <div class="popup__rangetime__main flex flex-row flex-row-aic">
|
|
|
+ <van-field
|
|
|
+ v-model="timeStart"
|
|
|
+ clearable
|
|
|
+ placeholder="开始时间"
|
|
|
+ :center="true"
|
|
|
+ @click-input="handleClickTimeStart"
|
|
|
+ />
|
|
|
+ <span class="horization"></span>
|
|
|
+ <van-field
|
|
|
+ v-model="timeEnd"
|
|
|
+ clearable
|
|
|
+ placeholder="结束时间"
|
|
|
+ :center="true"
|
|
|
+ @click-input="handleClickTimeEnd"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="btn-popup" @click="handleSubmitFilter">
|
|
|
+ <span>搜索</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ </van-popup>
|
|
|
+
|
|
|
+ <ChooseTime
|
|
|
+ ref="chooseTimeRef"
|
|
|
+ v-model="timeVal"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import ChooseTime from '@/components/ChooseTime'
|
|
|
+import { getRecordList } from '@/api/approveinfo'
|
|
|
+import ApproveItem from '../approve/components/ApproveItem.vue'
|
|
|
+import store from '@/store'
|
|
|
+import dayjs from 'dayjs'
|
|
|
+
|
|
|
+export default {
|
|
|
+ nameText: '我的申请状态',
|
|
|
+ name: 'ApplyState',
|
|
|
+ components: {
|
|
|
+ ApproveItem,
|
|
|
+ ChooseTime
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ rendeTitleCom () {
|
|
|
+ let t = this.formType
|
|
|
+ let welcomeTxt = `${store.getters.name}提交的`
|
|
|
+ switch (t) {
|
|
|
+ case 5:
|
|
|
+ welcomeTxt += '出差申请'
|
|
|
+ break
|
|
|
+ }
|
|
|
+ return welcomeTxt
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ timeVal: '',
|
|
|
+ formType: undefined,
|
|
|
+ popupVisibility: false,
|
|
|
+ tabVal: '2',
|
|
|
+ tabs: [
|
|
|
+ {
|
|
|
+ title: '审批中',
|
|
|
+ name: '2'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '已通过',
|
|
|
+ name: '3'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '已驳回',
|
|
|
+ name: '4'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '已撤销',
|
|
|
+ name: '5'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ searchVal: '',
|
|
|
+ // types: [
|
|
|
+ // { name: '领用申请', id: '' },
|
|
|
+ // { name: '申请批呈', id: '' },
|
|
|
+ // { name: '学校文件', id: '' },
|
|
|
+ // { name: '批阅申请', id: '' },
|
|
|
+ // { name: '合同批呈', id: '' },
|
|
|
+ // { name: '维修申请', id: '' },
|
|
|
+ // { name: '用车申请', id: '' },
|
|
|
+ // { name: '请假申请', id: '' },
|
|
|
+ // { name: '出差申请', id: '' },
|
|
|
+ // { name: '领用申请', id: '' },
|
|
|
+ // { name: '入库申请', id: '' },
|
|
|
+ // { name: '申购申请', id: '' },
|
|
|
+ // ],
|
|
|
+ // typeVal: '',
|
|
|
+
|
|
|
+ timeStart: '', // 开始时间
|
|
|
+ timeEnd: '',
|
|
|
+
|
|
|
+ pagination: {
|
|
|
+ page: 1,
|
|
|
+ page_num: 10,
|
|
|
+ },
|
|
|
+ showEmpty: false,
|
|
|
+ listLoading: false,
|
|
|
+ finished: false,
|
|
|
+ finishedText: '暂无更多数据',
|
|
|
+ tableData: [],
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ if (this.$route.query) {
|
|
|
+ this.formType = this.$route.query.type
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async __record_list__ () {
|
|
|
+ try {
|
|
|
+ let THAT = this
|
|
|
+ const params = {
|
|
|
+ module: this.formType,
|
|
|
+ status: Number(this.tabVal),
|
|
|
+ ...this.pagination
|
|
|
+ }
|
|
|
+ const res = await getRecordList(params)
|
|
|
+ if (res.code === 1) {
|
|
|
+ this.listLoading = false
|
|
|
+ let list = res.data || []
|
|
|
+ list = list.map(item => ({
|
|
|
+ ...item,
|
|
|
+ __rows_item__: THAT.filterRow(item)
|
|
|
+ }))
|
|
|
+ if (list.length < this.pagination.page_num) this.finished = true
|
|
|
+ else {
|
|
|
+ this.pagination.page++
|
|
|
+ }
|
|
|
+ this.tableData = this.tableData.concat(list)
|
|
|
+ if (this.finished && !this.tableData.length) {
|
|
|
+ this.finishedText = ''
|
|
|
+ this.showEmpty = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.log('record list', e);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ filterRow (data) {
|
|
|
+ let arrs = []
|
|
|
+ switch (this.formType) {
|
|
|
+ case 5: // 出差申请展示内容
|
|
|
+ arrs = [
|
|
|
+ {
|
|
|
+ label: '发起事由',
|
|
|
+ val: data.reason
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '同行人员',
|
|
|
+ val: data.peer_user.length ? data.peer_user.map(user => (user.name)).join('、') : '暂无同行人员'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '出差时间',
|
|
|
+ val: `${data.start_time} — ${data.end_time}`
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ break
|
|
|
+ }
|
|
|
+ return arrs
|
|
|
+ },
|
|
|
+ onLoadData () {
|
|
|
+ this.__record_list__()
|
|
|
+ },
|
|
|
+ // Tab 切换前验证
|
|
|
+ handleTabBeforeChangeEvnet(val) {
|
|
|
+ this.tabVal = val
|
|
|
+ this.showEmpty = false
|
|
|
+ this.tableData = []
|
|
|
+ this.listLoading = true
|
|
|
+ this.finished = false
|
|
|
+ this.finishedText = '暂无更多数据'
|
|
|
+ this.pagination.page = 1
|
|
|
+ this.onLoadData()
|
|
|
+ return true
|
|
|
+ },
|
|
|
+
|
|
|
+ handleClickTimeStart () {
|
|
|
+ const THAT = this
|
|
|
+ THAT.timeVal = THAT.timeStart
|
|
|
+ this.$refs.chooseTimeRef.openChooseTime(date => {
|
|
|
+ THAT.timeStart = dayjs(date).format('YYYY-MM-DD HH:mm')
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleClickTimeEnd () {
|
|
|
+ const THAT = this
|
|
|
+ THAT.timeVal = THAT.timeEnd
|
|
|
+ this.$refs.chooseTimeRef.openChooseTime(date => {
|
|
|
+ THAT.timeEnd = dayjs(date).format('YYYY-MM-DD HH:mm')
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // 切换接口中转站
|
|
|
+ handleGetListMiddware() {
|
|
|
+ let type = this.activeName
|
|
|
+
|
|
|
+ switch (type) {
|
|
|
+ case '2':
|
|
|
+ this.__wait__()
|
|
|
+ break;
|
|
|
+ case '3':
|
|
|
+ this.__over__()
|
|
|
+ break;
|
|
|
+ case '4':
|
|
|
+ this.__recive__()
|
|
|
+ break;
|
|
|
+ case '5':
|
|
|
+ this.__backed__()
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ __wait__() { },
|
|
|
+ __over__() { },
|
|
|
+ __recive__() { },
|
|
|
+ __backed__() {},
|
|
|
+
|
|
|
+ // NOTE: choosed type
|
|
|
+ handleTouchThatType(type) {
|
|
|
+ const { name } = type
|
|
|
+ this.typeVal = name
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 点击跳转搜索页
|
|
|
+ handleClickSearchBox() {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'Search',
|
|
|
+ query: {
|
|
|
+ formType: this.formType,
|
|
|
+ flag: 'info',
|
|
|
+ flagState: this.tabVal
|
|
|
+
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 点击筛选弹出选择内容
|
|
|
+ handleSwitchFilterBox() {
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 提交过滤搜索条件
|
|
|
+ handleSubmitFilter() {
|
|
|
+ // 搜索添加时间
|
|
|
+ this.popupVisibility = false // close popup window.
|
|
|
+ this.showEmpty = false
|
|
|
+ this.tableData = []
|
|
|
+ this.listLoading = true
|
|
|
+ this.finished = false
|
|
|
+ this.finishedText = '暂无更多数据'
|
|
|
+ this.pagination.page = 1
|
|
|
+ this.onLoadData()
|
|
|
+ },
|
|
|
+ // goexamine() {
|
|
|
+ // this.$router.push({
|
|
|
+ // name: 'Examine',
|
|
|
+ // query: {
|
|
|
+ // type: 'pass'
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+
|
|
|
+ // goexamine2() {
|
|
|
+ // this.$router.push({
|
|
|
+ // name: 'Examine',
|
|
|
+ // query: {
|
|
|
+ // type: 'refuse'
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+ // goDetail() {
|
|
|
+ // this.$router.push({
|
|
|
+ // name: 'ExamineDetail',
|
|
|
+ // query: {}
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+@import url("@/styles/variables.less");
|
|
|
+
|
|
|
+.approve {
|
|
|
+ &-container {
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+ .van-tabs {
|
|
|
+ padding-bottom: 4px;
|
|
|
+ border-bottom: 1px solid rgba(216, 216, 216, 1);
|
|
|
+ background-color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .van-tabs__line {
|
|
|
+ background-color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ .van-popup.van-popup--bottom {
|
|
|
+ padding: 14px 12px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &-main {
|
|
|
+ flex: 1;
|
|
|
+ padding: 6px;
|
|
|
+ .approve-item-container {
|
|
|
+ margin-bottom: 6px;
|
|
|
+ &:last-child {
|
|
|
+ margin-bottom: initial;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.filter-container {
|
|
|
+ padding-top: 7px;
|
|
|
+ padding-bottom: 7px;
|
|
|
+ background-color: @white;
|
|
|
+
|
|
|
+ .van-cell.van-field {
|
|
|
+ background-color: rgba(238, 238, 239, 1);
|
|
|
+ border-radius: 6px;
|
|
|
+ padding-top: 6px;
|
|
|
+ padding-bottom: 6px;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ &::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ z-index: 1;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .filterbox {
|
|
|
+ padding-left: 10px;
|
|
|
+
|
|
|
+ span {
|
|
|
+ font-size: @font-size-third;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #727273;
|
|
|
+ line-height: 22px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.popup {
|
|
|
+ &__title {
|
|
|
+ text-align: center;
|
|
|
+ font-size: @font-size-common;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #0A1629;
|
|
|
+ line-height: 22px;
|
|
|
+ padding-bottom: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &__typebox {
|
|
|
+ &__header {
|
|
|
+ font-size: @font-size-secondery;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #0A1629;
|
|
|
+ line-height: 20px;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &__list {
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-bottom: 14px;
|
|
|
+
|
|
|
+ span {
|
|
|
+ display: inline-block;
|
|
|
+ width: 111px;
|
|
|
+ height: 34px;
|
|
|
+ line-height: 34px;
|
|
|
+ text-align: center;
|
|
|
+ background: #F6F6F6;
|
|
|
+ border-radius: 8px;
|
|
|
+ font-size: @font-size-third;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #191A1E;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &__rangetime {
|
|
|
+ &__main {
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+
|
|
|
+ .van-cell.van-field {
|
|
|
+ width: 40%;
|
|
|
+ background: #F6F6F6;
|
|
|
+ border-radius: 8px;
|
|
|
+ text-align: center;
|
|
|
+
|
|
|
+ .van-field__control {
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ span.horization {
|
|
|
+ display: inline-block;
|
|
|
+ width: 30px;
|
|
|
+ height: 1px;
|
|
|
+ background-color: #000;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.popupxx {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .btn-popup {
|
|
|
+ background: #3290C4;
|
|
|
+ border-radius: 11px;
|
|
|
+ font-size: @font-size-common;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #FFFFFF;
|
|
|
+ line-height: 24px;
|
|
|
+ text-align: center;
|
|
|
+ padding: 10px 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|