|
@@ -21,7 +21,6 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="approve-main">
|
|
<div class="approve-main">
|
|
- <!-- TODO:需要一个滚动框架 是否需要采用 `mescroll.js` -->
|
|
|
|
<van-list
|
|
<van-list
|
|
v-model="listLoading"
|
|
v-model="listLoading"
|
|
:finished="finished"
|
|
:finished="finished"
|
|
@@ -38,14 +37,10 @@
|
|
:person="item.approve_one.user.name"
|
|
:person="item.approve_one.user.name"
|
|
flag="info"
|
|
flag="info"
|
|
:flag-state="Number(tabVal)"
|
|
:flag-state="Number(tabVal)"
|
|
|
|
+ @click="handleGoInfo(item)"
|
|
/>
|
|
/>
|
|
</van-list>
|
|
</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
|
|
<my-empty
|
|
v-show="showEmpty"
|
|
v-show="showEmpty"
|
|
tip="暂无数据"
|
|
tip="暂无数据"
|
|
@@ -102,6 +97,8 @@
|
|
<ChooseTime
|
|
<ChooseTime
|
|
ref="chooseTimeRef"
|
|
ref="chooseTimeRef"
|
|
v-model="timeVal"
|
|
v-model="timeVal"
|
|
|
|
+ :min-date="minDate"
|
|
|
|
+ :max-date="maxDate"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -113,6 +110,9 @@ import ApproveItem from '../approve/components/ApproveItem.vue'
|
|
import store from '@/store'
|
|
import store from '@/store'
|
|
import dayjs from 'dayjs'
|
|
import dayjs from 'dayjs'
|
|
|
|
|
|
|
|
+
|
|
|
|
+import { formatApproveItemRow } from '@/utils/approve-item'
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
nameText: '我的申请状态',
|
|
nameText: '我的申请状态',
|
|
name: 'ApplyState',
|
|
name: 'ApplyState',
|
|
@@ -185,14 +185,25 @@ export default {
|
|
finished: false,
|
|
finished: false,
|
|
finishedText: '暂无更多数据',
|
|
finishedText: '暂无更多数据',
|
|
tableData: [],
|
|
tableData: [],
|
|
|
|
+ minDate: '',
|
|
|
|
+ maxDate: ''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
if (this.$route.query) {
|
|
if (this.$route.query) {
|
|
this.formType = this.$route.query.type
|
|
this.formType = this.$route.query.type
|
|
}
|
|
}
|
|
|
|
+ this.init()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ init () {
|
|
|
|
+ // NOTE: 设置时间返回是前6个月 - 现在
|
|
|
|
+ let now = new Date()
|
|
|
|
+ now.setMonth(now.getMonth() - 7)
|
|
|
|
+ this.minDate = now
|
|
|
|
+ let nowMax = new Date()
|
|
|
|
+ this.maxDate = nowMax
|
|
|
|
+ },
|
|
async __record_list__ () {
|
|
async __record_list__ () {
|
|
try {
|
|
try {
|
|
let THAT = this
|
|
let THAT = this
|
|
@@ -201,13 +212,17 @@ export default {
|
|
status: Number(this.tabVal),
|
|
status: Number(this.tabVal),
|
|
...this.pagination
|
|
...this.pagination
|
|
}
|
|
}
|
|
|
|
+ if (this.timeStart && this.timeEnd) {
|
|
|
|
+ params.start_time = this.timeStart
|
|
|
|
+ params.end_time = this.timeEnd
|
|
|
|
+ }
|
|
const res = await getRecordList(params)
|
|
const res = await getRecordList(params)
|
|
if (res.code === 1) {
|
|
if (res.code === 1) {
|
|
this.listLoading = false
|
|
this.listLoading = false
|
|
let list = res.data || []
|
|
let list = res.data || []
|
|
list = list.map(item => ({
|
|
list = list.map(item => ({
|
|
...item,
|
|
...item,
|
|
- __rows_item__: THAT.filterRow(item)
|
|
|
|
|
|
+ __rows_item__: formatApproveItemRow(item, THAT.formType)
|
|
}))
|
|
}))
|
|
if (list.length < this.pagination.page_num) this.finished = true
|
|
if (list.length < this.pagination.page_num) this.finished = true
|
|
else {
|
|
else {
|
|
@@ -223,28 +238,7 @@ export default {
|
|
console.log('record list', 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 () {
|
|
onLoadData () {
|
|
this.__record_list__()
|
|
this.__record_list__()
|
|
},
|
|
},
|
|
@@ -268,6 +262,7 @@ export default {
|
|
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
|
|
const THAT = this
|
|
THAT.timeVal = THAT.timeEnd
|
|
THAT.timeVal = THAT.timeEnd
|
|
@@ -276,30 +271,6 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
- // 切换接口中转站
|
|
|
|
- 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
|
|
// NOTE: choosed type
|
|
handleTouchThatType(type) {
|
|
handleTouchThatType(type) {
|
|
const { name } = type
|
|
const { name } = type
|
|
@@ -321,11 +292,19 @@ export default {
|
|
|
|
|
|
// NOTE: 点击筛选弹出选择内容
|
|
// NOTE: 点击筛选弹出选择内容
|
|
handleSwitchFilterBox() {
|
|
handleSwitchFilterBox() {
|
|
-
|
|
|
|
},
|
|
},
|
|
|
|
|
|
// NOTE: 提交过滤搜索条件
|
|
// NOTE: 提交过滤搜索条件
|
|
handleSubmitFilter() {
|
|
handleSubmitFilter() {
|
|
|
|
+ // 判断时间是不是开始比结束前。
|
|
|
|
+ let startTime = new Date(this.timeStart).getTime()
|
|
|
|
+ let endTime = new Date(this.timeEnd).getTime()
|
|
|
|
+
|
|
|
|
+ if (endTime <= startTime) {
|
|
|
|
+ this.$toast('结束时间不可以比开始时间小')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
// 搜索添加时间
|
|
// 搜索添加时间
|
|
this.popupVisibility = false // close popup window.
|
|
this.popupVisibility = false // close popup window.
|
|
this.showEmpty = false
|
|
this.showEmpty = false
|
|
@@ -336,6 +315,18 @@ export default {
|
|
this.pagination.page = 1
|
|
this.pagination.page = 1
|
|
this.onLoadData()
|
|
this.onLoadData()
|
|
},
|
|
},
|
|
|
|
+ handleGoInfo (data) {
|
|
|
|
+ // console.log('goInfo>', data);
|
|
|
|
+ if (!data) return
|
|
|
|
+ this.$router.push({
|
|
|
|
+ name: 'ExamineDetail',
|
|
|
|
+ query: {
|
|
|
|
+ id: data.id,
|
|
|
|
+ type: 'info'
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
// goexamine() {
|
|
// goexamine() {
|
|
// this.$router.push({
|
|
// this.$router.push({
|
|
// name: 'Examine',
|
|
// name: 'Examine',
|
|
@@ -363,7 +354,7 @@ export default {
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style lang="less">
|
|
|
|
|
|
+<style lang="less" scoped>
|
|
@import url("@/styles/variables.less");
|
|
@import url("@/styles/variables.less");
|
|
|
|
|
|
.approve {
|
|
.approve {
|