|
@@ -1,146 +1,66 @@
|
|
|
<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 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"
|
|
|
- />
|
|
|
+ <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">
|
|
|
- <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="item.__title__"
|
|
|
- :time="item.apply_date"
|
|
|
- :rows="item.__rows_item__"
|
|
|
- :person="tabVal != 3 ? item.approve_one.user.name : ''"
|
|
|
- flag="approve"
|
|
|
- :flag-state="Number(tabVal)"
|
|
|
- @click="handleGoInfo(item)"
|
|
|
- />
|
|
|
+ <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="item.__title__"
|
|
|
+ :time="item.apply_date" :rows="item.__rows_item__" :person="tabVal != 3 ? item.approve_one.user.name : ''"
|
|
|
+ flag="approve" :flag-state="Number(tabVal)" @click="handleGoInfo(item)" />
|
|
|
</van-list>
|
|
|
-
|
|
|
- <my-empty
|
|
|
- v-show="showEmpty"
|
|
|
- tip="暂无数据"
|
|
|
- />
|
|
|
-
|
|
|
- <!-- useless. -->
|
|
|
- <!-- <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 tip="暂无待处理的" /> -->
|
|
|
+ <my-empty v-show="showEmpty" tip="暂无数据" />
|
|
|
</div>
|
|
|
|
|
|
<!-- 弹窗 全部筛选 -->
|
|
|
- <van-popup
|
|
|
- class="popupxx"
|
|
|
- v-model="popupVisibility"
|
|
|
- position="bottom"
|
|
|
- :style="{ height: '90%' }"
|
|
|
- closeable
|
|
|
- close-icon-position="top-left"
|
|
|
- @click-close-icon="handleClosePopup"
|
|
|
- >
|
|
|
+ <van-popup class="popupxx" v-model="popupVisibility" position="bottom" :style="{ height: '90%' }" closeable
|
|
|
+ close-icon-position="top-left" @click-close-icon="handleClosePopup">
|
|
|
<div>
|
|
|
<div class="popup__title">全部筛选</div>
|
|
|
- <div class="popup__typebox">
|
|
|
- <div class="popup__typebox__header">
|
|
|
- <span>全部类型</span>
|
|
|
- </div>
|
|
|
- <div class="popup__typebox__list">
|
|
|
- <span
|
|
|
- v-for="(type, idx) in types"
|
|
|
- :key="idx"
|
|
|
- class="item"
|
|
|
- :class="[
|
|
|
- 'item',
|
|
|
- type.id === typeVal ? 'item--selected' : ''
|
|
|
- ]"
|
|
|
- @click="handleTouchThatType($event, type)"
|
|
|
- >
|
|
|
- {{ type.name }}
|
|
|
- </span>
|
|
|
- </div>
|
|
|
+ <div class="popup__typebox">
|
|
|
+ <div class="popup__typebox__header">
|
|
|
+ <span>全部类型</span>
|
|
|
+ </div>
|
|
|
+ <div class="popup__typebox__list">
|
|
|
+ <span v-for="(type, idx) in types" :key="idx" class="item" :class="[
|
|
|
+ 'item',
|
|
|
+ type.id === typeVal ? 'item--selected' : ''
|
|
|
+ ]" @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">
|
|
|
- <div class="popup__typebox__header">
|
|
|
- <span>申请时间</span>
|
|
|
- </div>
|
|
|
- <div class="popup__rangetime__main flex flex-row flex-row-aic">
|
|
|
- <van-field
|
|
|
- :value="timeStart"
|
|
|
- :disabled="true"
|
|
|
- clearable
|
|
|
- placeholder="开始时间"
|
|
|
- :center="true"
|
|
|
- @click-input="handleClickTimeStart"
|
|
|
- />
|
|
|
- <span class="horization"></span>
|
|
|
-
|
|
|
- <van-field
|
|
|
- :value="timeEnd"
|
|
|
- :disabled="true"
|
|
|
- clearable
|
|
|
- placeholder="结束时间"
|
|
|
- :center="true"
|
|
|
- @click-input="handleClickTimeEnd"
|
|
|
- />
|
|
|
- </div>
|
|
|
+ <div class="popup__rangetime__main flex flex-row flex-row-aic">
|
|
|
+ <van-field :value="timeStart" :disabled="true" clearable placeholder="开始时间" :center="true"
|
|
|
+ @click-input="handleClickTimeStart" />
|
|
|
+ <span class="horization"></span>
|
|
|
+
|
|
|
+ <van-field :value="timeEnd" :disabled="true" clearable placeholder="结束时间" :center="true"
|
|
|
+ @click-input="handleClickTimeEnd" />
|
|
|
</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class="btn-popup" @click="handleSubmitFilter">
|
|
|
<span>提交</span>
|
|
|
</div>
|
|
|
|
|
|
- <ChooseTime
|
|
|
- ref="chooseTimeRef"
|
|
|
- v-model="timeStart"
|
|
|
- :min-date="minDate"
|
|
|
- :max-date="maxDate"
|
|
|
- />
|
|
|
-
|
|
|
- <ChooseTime
|
|
|
- ref="chooseTimeRef2"
|
|
|
- v-model="timeEnd"
|
|
|
- :min-date="minDate"
|
|
|
- :max-date="maxDate"
|
|
|
- />
|
|
|
-
|
|
|
+ <ChooseTime ref="chooseTimeRef" v-model="timeStart" :min-date="minDate" :max-date="maxDate" />
|
|
|
+
|
|
|
+ <ChooseTime ref="chooseTimeRef2" v-model="timeEnd" :min-date="minDate" :max-date="maxDate" />
|
|
|
+
|
|
|
</van-popup>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -164,18 +84,18 @@ export default {
|
|
|
...mapState('enum', {
|
|
|
types: state => state.moduleList
|
|
|
}),
|
|
|
- rendeTitleCom () {
|
|
|
+ rendeTitleCom() {
|
|
|
let t = this.formType
|
|
|
let welcomeTxt = `${store.getters.name}提交的`
|
|
|
switch (t) {
|
|
|
- case 5:
|
|
|
- welcomeTxt += '出差申请'
|
|
|
- break
|
|
|
+ case 5:
|
|
|
+ welcomeTxt += '出差申请'
|
|
|
+ break
|
|
|
}
|
|
|
return welcomeTxt
|
|
|
}
|
|
|
},
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
popupVisibility: false,
|
|
|
example: [
|
|
@@ -228,11 +148,11 @@ export default {
|
|
|
maxDate: ''
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
+ created() {
|
|
|
this.__init__()
|
|
|
},
|
|
|
methods: {
|
|
|
- __init__ () {
|
|
|
+ __init__() {
|
|
|
// NOTE: 设置时间返回是前6个月 - 现在
|
|
|
let now = new Date()
|
|
|
now.setMonth(now.getMonth() - 7)
|
|
@@ -240,10 +160,10 @@ export default {
|
|
|
let nowMax = new Date()
|
|
|
this.maxDate = nowMax
|
|
|
},
|
|
|
- onLoadData () {
|
|
|
+ onLoadData() {
|
|
|
this.__record_list__()
|
|
|
},
|
|
|
- async __record_list__ () {
|
|
|
+ async __record_list__() {
|
|
|
try {
|
|
|
const that = this
|
|
|
const params = {
|
|
@@ -258,7 +178,7 @@ export default {
|
|
|
let list = result.data || []
|
|
|
list = list.map(item => ({
|
|
|
...item,
|
|
|
- __title__: `${item.approve_info_user.name}提交的${that.$store.getters['enum/getModuleText'](item.type)}`,
|
|
|
+ __title__: `${item.approve_info_user.name}提交的${that.$store.getters['enum/getModuleText'](item.module)}`,
|
|
|
__rows_item__: formatApproveItemRow(item, item.module)
|
|
|
}))
|
|
|
|
|
@@ -276,7 +196,7 @@ export default {
|
|
|
console.log('%c approve record_list error >>>', 'background: blue; color: #fff', error);
|
|
|
}
|
|
|
},
|
|
|
- handleTabBeforeChangeEvnet (val) {
|
|
|
+ handleTabBeforeChangeEvnet(val) {
|
|
|
this.tabVal = val
|
|
|
this.showEmpty = false
|
|
|
this.tableData = []
|
|
@@ -292,13 +212,13 @@ export default {
|
|
|
},
|
|
|
|
|
|
// NOTE: choosed type
|
|
|
- handleTouchThatType (event, type) {
|
|
|
+ handleTouchThatType(event, type) {
|
|
|
const { id } = type
|
|
|
this.typeVal = id
|
|
|
},
|
|
|
|
|
|
// NOTE: 点击跳转搜索页
|
|
|
- handleClickSearchBox () {
|
|
|
+ handleClickSearchBox() {
|
|
|
this.$router.push({
|
|
|
name: 'Search',
|
|
|
query: {
|
|
@@ -310,41 +230,46 @@ export default {
|
|
|
},
|
|
|
|
|
|
// NOTE: 提交过滤搜索条件
|
|
|
- handleSubmitFilter () {
|
|
|
+ handleSubmitFilter() {
|
|
|
this.popupVisibility = false
|
|
|
this.onLoadData()
|
|
|
},
|
|
|
|
|
|
- handleClosePopup () {
|
|
|
+ handleClosePopup() {
|
|
|
this.typeVal = ''
|
|
|
this.timeStart = ''
|
|
|
this.timeEnd = ''
|
|
|
},
|
|
|
|
|
|
-
|
|
|
- // NOTE: 缺少module无法准确进入某一审批详情页面
|
|
|
- handleGoInfo(item) {
|
|
|
- console.log('%c handle Go_info >>>', 'background: blue; color: #fff', item);
|
|
|
-
|
|
|
+ // NOTE: 详情
|
|
|
+ handleGoInfo(data) {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'ExamineDetail',
|
|
|
+ query: {
|
|
|
+ id: data.approve_id,
|
|
|
+ type: 'approve',
|
|
|
+ from: `approve_${this.tabVal}`
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
- handleClickTimeStart () {
|
|
|
+ handleClickTimeStart() {
|
|
|
const THAT = this
|
|
|
THAT.timeVal = THAT.timeStart
|
|
|
this.$refs.chooseTimeRef.openChooseTime(date => {
|
|
|
- THAT.timeStart = dayjs(date).format('YYYY-MM-DD HH:mm')
|
|
|
+ THAT.timeStart = dayjs(date).format('YYYY-MM-DD HH:mm')
|
|
|
})
|
|
|
},
|
|
|
|
|
|
- handleClickTimeEnd () {
|
|
|
+ handleClickTimeEnd() {
|
|
|
const THAT = this
|
|
|
THAT.timeVal = THAT.timeEnd
|
|
|
this.$refs.chooseTimeRef.openChooseTime(date => {
|
|
|
- THAT.timeEnd = dayjs(date).format('YYYY-MM-DD HH:mm')
|
|
|
+ THAT.timeEnd = dayjs(date).format('YYYY-MM-DD HH:mm')
|
|
|
})
|
|
|
},
|
|
|
|
|
|
- goexamine () {
|
|
|
+ goexamine() {
|
|
|
this.$router.push({
|
|
|
name: 'Examine',
|
|
|
query: {
|
|
@@ -352,8 +277,8 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
-
|
|
|
- goexamine2 () {
|
|
|
+
|
|
|
+ goexamine2() {
|
|
|
this.$router.push({
|
|
|
name: 'Examine',
|
|
|
query: {
|
|
@@ -361,7 +286,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- goDetail () {
|
|
|
+ goDetail() {
|
|
|
this.$router.push({
|
|
|
name: 'ExamineDetail',
|
|
|
query: {}
|
|
@@ -377,22 +302,34 @@ export default {
|
|
|
.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: 10px;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-bottom: initial;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -400,12 +337,14 @@ export default {
|
|
|
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;
|
|
@@ -417,8 +356,10 @@ export default {
|
|
|
background-color: transparent;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.filterbox {
|
|
|
padding-left: 10px;
|
|
|
+
|
|
|
span {
|
|
|
font-size: @font-size-third;
|
|
|
font-weight: 500;
|
|
@@ -437,6 +378,7 @@ export default {
|
|
|
line-height: 22px;
|
|
|
padding-bottom: 30px;
|
|
|
}
|
|
|
+
|
|
|
&__typebox {
|
|
|
&__header {
|
|
|
font-size: @font-size-secondery;
|
|
@@ -445,11 +387,13 @@ export default {
|
|
|
line-height: 20px;
|
|
|
margin-bottom: 12px;
|
|
|
}
|
|
|
+
|
|
|
&__list {
|
|
|
display: grid;
|
|
|
grid-template-columns: repeat(3, 33.3%);
|
|
|
|
|
|
padding-bottom: 14px;
|
|
|
+
|
|
|
span.item {
|
|
|
display: inline-block;
|
|
|
width: 111px;
|
|
@@ -462,26 +406,31 @@ export default {
|
|
|
font-weight: 400;
|
|
|
color: #191A1E;
|
|
|
margin-bottom: 8px;
|
|
|
+
|
|
|
&--selected {
|
|
|
background-color: #3290C4;
|
|
|
color: #fff;
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__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;
|
|
@@ -495,6 +444,7 @@ export default {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
.btn-popup {
|
|
|
background: #3290C4;
|
|
|
border-radius: 11px;
|
|
@@ -507,5 +457,4 @@ export default {
|
|
|
padding: 10px 0;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
</style>
|