|
@@ -3,44 +3,207 @@
|
|
|
<div class="search-container">
|
|
|
<div class="filter-container p-h-12 flex flex-row flex-row-aic">
|
|
|
<van-field
|
|
|
- v-model="searchVal"
|
|
|
+ v-model.trim="searchVal"
|
|
|
clearable
|
|
|
- placeholder="搜索日期、姓名、状态、关键词"
|
|
|
+ :placeholder="inputPlaceholderText"
|
|
|
left-icon="search"
|
|
|
+ @input="handleInputEvent"
|
|
|
/>
|
|
|
<div class="filterbox flex flex-row flex-0shrink">
|
|
|
- <span @click="handleStartSearch">筛选</span>
|
|
|
+ <span @click="handleStartSearch">搜索</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="search-main">
|
|
|
- <!-- list... -->
|
|
|
- <!-- NOTE: 滚动 + ApproveItem 组件 -->
|
|
|
+ <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="flagState"
|
|
|
+ />
|
|
|
+ </van-list>
|
|
|
+ <my-empty
|
|
|
+ v-show="showEmpty"
|
|
|
+ tip="暂无数据"
|
|
|
+ />
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import throttle from 'lodash/throttle'
|
|
|
+
|
|
|
+import ApproveItem from '@/views/approve/components/ApproveItem.vue'
|
|
|
+import store from '@/store'
|
|
|
+
|
|
|
+import { getRecordList } from '@/api/approveinfo'
|
|
|
+import { formatApproveItemRow } from '@/utils/approve-item'
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
export default {
|
|
|
name: 'search',
|
|
|
+ components: {
|
|
|
+ ApproveItem
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ // NOTE: 输入框的placeholder
|
|
|
+ inputPlaceholderText () {
|
|
|
+ let placeholder = 'xxx'
|
|
|
+ let ft = Number(this.formType)
|
|
|
+ switch(ft) {
|
|
|
+ case 5:
|
|
|
+ placeholder = '请输入申请内容、编号'
|
|
|
+ break
|
|
|
+ }
|
|
|
+ return placeholder
|
|
|
+ },
|
|
|
+ // NOTE: 单项标题
|
|
|
+ rendeTitleCom () {
|
|
|
+ let t = this.formType
|
|
|
+ let welcomeTxt = `${store.getters.name}提交的`
|
|
|
+ switch (t) {
|
|
|
+ case 5:
|
|
|
+ welcomeTxt += '出差申请'
|
|
|
+ break
|
|
|
+ }
|
|
|
+ return welcomeTxt
|
|
|
+ },
|
|
|
+ },
|
|
|
data () {
|
|
|
return {
|
|
|
- searchVal: ''
|
|
|
+ formType: '',
|
|
|
+ flag: '',
|
|
|
+ flagState: '',
|
|
|
+ apifunc: null,
|
|
|
+
|
|
|
+ searchVal: '',
|
|
|
+ tableData: [],
|
|
|
+ showEmpty: false,
|
|
|
+ listLoading: false,
|
|
|
+ finished: false,
|
|
|
+ finishedText: '暂无更多数据了',
|
|
|
+ pagination: {
|
|
|
+ page: 1,
|
|
|
+ page_num: 10
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
+ created () {
|
|
|
+ console.log('quers', this.$route.query);
|
|
|
+ this.init()
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ init () {
|
|
|
+ const { formType, flag, flagState } = this.$route.query
|
|
|
+ this.formType = Number(formType)
|
|
|
+ this.flagState = Number(flagState)
|
|
|
+ this.flag = flag
|
|
|
+ this.apifunc = flag === 'info' ? getRecordList : () => {}
|
|
|
+ },
|
|
|
+
|
|
|
+ handleInputEvent: throttle(function (keyword) {
|
|
|
+ console.log('keyword>>>', keyword);
|
|
|
+ }, 200),
|
|
|
+
|
|
|
handleStartSearch () {
|
|
|
- let val = this.searchVal
|
|
|
- console.log('search val:', val);
|
|
|
+ this.tableData = []
|
|
|
+ this.listLoading = true
|
|
|
+ this.pagination.page = 1
|
|
|
+ this.finished = false
|
|
|
+ this.showEmpty = false
|
|
|
+ this.finishedText = '暂无更多数据了'
|
|
|
+ this.__getlist__()
|
|
|
+ },
|
|
|
+
|
|
|
+ onLoadData () {
|
|
|
+ this.__getlist__()
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 获取参数
|
|
|
+ getParams() {
|
|
|
+ const { page, page_num } = this.pagination
|
|
|
+ const search = this.searchVal
|
|
|
+ return {
|
|
|
+ page,
|
|
|
+ page_num,
|
|
|
+ search,
|
|
|
+ module: this.formType,
|
|
|
+ status: this.flagState,
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 获取列表
|
|
|
+ async __getlist__ () {
|
|
|
+ try {
|
|
|
+ const params = this.getParams()
|
|
|
+ const res = await this.apifunc(params)
|
|
|
+ if (res.code === 1) {
|
|
|
+ const THAT = this
|
|
|
+ console.log(res.data);
|
|
|
+ this.listLoading = false
|
|
|
+ let list = res.data || []
|
|
|
+ list = list.map(item => ({
|
|
|
+ ...item,
|
|
|
+ __rows_item__: formatApproveItemRow(item, THAT.formType)
|
|
|
+ }))
|
|
|
+ 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('getlist-error', e);
|
|
|
+ }
|
|
|
+
|
|
|
},
|
|
|
-
|
|
|
- // 通过dd的返回函数进行回退
|
|
|
- // back() {
|
|
|
- // console.log(this.$router.options);
|
|
|
- // this.$router.replace('/approve')
|
|
|
- // }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang="less">
|
|
|
+<style lang="less" scoped>
|
|
|
+@import url("@/styles/variables.less");
|
|
|
+.search {
|
|
|
+ &-container {
|
|
|
+ height: 100%;
|
|
|
+ .filter-container {
|
|
|
+ padding-top: 7px;
|
|
|
+ padding-bottom: 7px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ .filterbox {
|
|
|
+ padding-left: 10px;
|
|
|
+ span {
|
|
|
+ font-size: @font-size-common;
|
|
|
+ font-weight: 500;
|
|
|
+ color: @link-color;
|
|
|
+ line-height: 22px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
</style>
|