|
@@ -0,0 +1,322 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="approve-container flex flex-col">
|
|
|
|
+ <van-tabs v-model="activeName">
|
|
|
|
+ <van-tab
|
|
|
|
+ v-for="(tab, idx) in tabs"
|
|
|
|
+ :key="idx"
|
|
|
|
+ :title="tab.title"
|
|
|
|
+ :name="tab.name"
|
|
|
|
+ color="#000"
|
|
|
|
+ @before-change="handleTabBeforeChangeEvnet"
|
|
|
|
+ />
|
|
|
|
+ </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.native="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` -->
|
|
|
|
+ <approve-item
|
|
|
|
+ approve-type="xx"
|
|
|
|
+ title="刘辉提出的申请"
|
|
|
|
+ time="15:00"
|
|
|
|
+ :rows="example"
|
|
|
|
+ wait-personal="刘德华"
|
|
|
|
+ :wait-status="1"
|
|
|
|
+ :approved-status="2"
|
|
|
|
+ />
|
|
|
|
+
|
|
|
|
+ <!-- <my-empty tip="暂无待处理的" /> -->
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- 弹窗 全部筛选 -->
|
|
|
|
+ <van-popup
|
|
|
|
+ v-model="popupVisibility"
|
|
|
|
+ position="bottom"
|
|
|
|
+ :style="{ height: '90%' }"
|
|
|
|
+ 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">
|
|
|
|
+ {{ 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"
|
|
|
|
+ />
|
|
|
|
+ <span class="horization"></span>
|
|
|
|
+ <van-field
|
|
|
|
+ v-model="timeEnd"
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="结束时间"
|
|
|
|
+ :center="true"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="btn" @click="handleSubmitFilter">
|
|
|
|
+ <span>提交</span>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </van-popup>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import ApproveItem from './approve/components/ApproveItem.vue'
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ components: {
|
|
|
|
+ ApproveItem
|
|
|
|
+ },
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ popupVisibility: true,
|
|
|
|
+ example: [
|
|
|
|
+ {
|
|
|
|
+ label: '申请标题',
|
|
|
|
+ val: '采购类呈批-学生生活用品'
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ label: '呈批类型',
|
|
|
|
+ val: '采购类批呈'
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ label: '缓急程度',
|
|
|
|
+ val: '急'
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ activeName: '',
|
|
|
|
+ tabs: [
|
|
|
|
+ {
|
|
|
|
+ title: '待处理',
|
|
|
|
+ name: 'wait'
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '已处理',
|
|
|
|
+ name: 'over'
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '我收到的',
|
|
|
|
+ name: 'recive'
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ 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: '' },
|
|
|
|
+ ],
|
|
|
|
+ timeStart: '',
|
|
|
|
+ timeEnd: ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // Tab 切换前验证
|
|
|
|
+ handleTabBeforeChangeEvnet (name) {
|
|
|
|
+ console.log(name);
|
|
|
|
+ // TODO: 切换需要调用接口让数据加载出来。
|
|
|
|
+ return true
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 切换接口中转站
|
|
|
|
+ handleGetListMiddware () {
|
|
|
|
+ let type = this.activeName
|
|
|
|
+
|
|
|
|
+ switch(type) {
|
|
|
|
+ case 'wait':
|
|
|
|
+ this.__wait__()
|
|
|
|
+ break;
|
|
|
|
+ case 'over':
|
|
|
|
+ this.__over__()
|
|
|
|
+ break;
|
|
|
|
+ case 'recive':
|
|
|
|
+ this.__recive__()
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ __wait__ () {},
|
|
|
|
+ __over__ () {},
|
|
|
|
+ __recive__ () {},
|
|
|
|
+
|
|
|
|
+ // NOTE: 点击跳转搜索页
|
|
|
|
+ handleClickSearchBox () {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ name: 'Search'
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // NOTE: 点击筛选弹出选择内容
|
|
|
|
+ handleSwitchFilterBox () {
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // NOTE: 提交过滤搜索条件
|
|
|
|
+ handleSubmitFilter () {},
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</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;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.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;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+</style>
|