| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- <template>
- <view class="mainBox">
- <uni-nav-bar fixed="true" statusBar="true" left-icon="back" title="出库管理" @clickLeft="back"></uni-nav-bar>
- <view class="tab-title">
- <view v-for="(item, index) in tabList" :key="index" class="tab-item" v-text="item.label" :class="index === pickTabIndex ? 'active' : ''" @click="changeChartsTab(index)"></view>
- <view class="search-icon" @click="searchVisible = true">
- 筛选
- <image src="~@/static/filter.svg" mode=""></image>
- </view>
- </view>
- <view class="tab-title__placeholder"></view>
- <card :list="tableList"></card>
- <CommonFooter leftText="新增出库" @leftClick="addStock('hand')" />
- <!-- 搜索组件 -->
- <u-popup :show="searchVisible" mode="right" @close="searchVisible = false" @open="openSearch">
- <view class="search-container">
- <view class="title">筛选</view>
- <uni-forms ref="customForm" :modelValue="popupInfo" label-position="top">
- <uni-forms-item label="出库时间" name="name">
- <view class="time-wrapper">
- <uni-datetime-picker v-model="popupInfo.range" :border="false" :icon="false" type="daterange" />
- </view>
- </uni-forms-item>
- <uni-forms-item label="出库类型" name="categoryCode">
- <uni-data-select v-model="popupInfo.bizType" :localdata="outputSceneState"></uni-data-select>
- </uni-forms-item>
- <uni-forms-item label="出库单号" name="sourceBizNo">
- <uni-easyinput v-model="popupInfo.sourceBizNo" :inputBorder="false" placeholder="请输入" />
- </uni-forms-item>
- <uni-forms-item label="物品名称" name="categoryName">
- <uni-easyinput v-model="popupInfo.categoryName" :inputBorder="false" placeholder="请输入" />
- </uni-forms-item>
- <uni-forms-item label="物品编码" name="categoryCode">
- <uni-easyinput v-model="popupInfo.categoryCode" :inputBorder="false" placeholder="请输入" />
- </uni-forms-item>
- </uni-forms>
- <view class="footer">
- <view class="btn reset" @click="handleReset">重置</view>
- <view class="btn search" @click="handleSearch">搜索</view>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- import { outputSceneState } from '../common'
- import { getOutInList } from '@/api/warehouseManagement'
- import card from './components/card.vue'
- import CommonFooter from '.././components/CommonFooter.vue'
- export default {
- components: {
- card,
- CommonFooter
- },
- data() {
- return {
- outputSceneState,
- page: 1,
- size: 10,
- isEnd: false,
- searchVisible: false,
- tabList: [
- {
- value: '',
- label: '全部'
- },
- {
- value: 3,
- label: '已驳回'
- },
- {
- value: 2,
- label: '审核通过'
- },
- {
- value: 1,
- label: '审核中'
- },
- {
- value: 0,
- label: '未提交'
- }
- ],
- pickTabIndex: 0,
- popupInfo: {
- status: '',
- range: [],
- bizType: '',
- sourceBizNo: '',
- categoryName: '',
- categoryCode: ''
- }, //筛选数据
- tableList: []
- }
- },
- onShow() {
- this.getFirstList()
- },
- //触底加载
- onReachBottom: function () {
- if (this.isEnd) {
- uni.showToast({
- title: '已经没有更多数据了!',
- icon: 'none',
- duration: 1000 //提示持续时间
- })
- return
- }
- // 显示加载图标
- uni.showLoading({
- title: '数据加载中'
- })
- this.getMoreLists()
- },
- methods: {
- handleReset() {
- this.popupInfo = {
- status: '',
- range: [],
- bizType: '',
- sourceBizNo: '',
- categoryName: '',
- categoryCode: ''
- }
- this.pickTabIndex = 0
- this.tableList = []
- this.getFirstList()
- },
- handleSearch() {
- this.getFirstList()
- },
- statusChange(code) {
- let index = this.popupInfo.status.indexOf(code)
- if (index === -1) {
- this.popupInfo.status.push(code)
- } else {
- this.popupInfo.status.splice(index, 1)
- }
- },
- // 搜索弹窗
- openSearch() {
- // console.log('open');
- },
- getFirstList() {
- this.page = 1
- this.searchVisible = false
- this.isEnd = true
- uni.showLoading({
- title: '数据加载中'
- })
- this.getList(this.popupInfo)
- },
- getMoreLists() {
- //获取更多数据
- this.page++
- this.getList(this.popupInfo)
- },
- //获取列表信息
- getList() {
- uni.showLoading({
- title: '加载中'
- })
- let data = {
- ...this.popupInfo,
- pageNum: this.page,
- size: this.size,
- type: 2
- }
- if (data.range?.length) {
- data.startTime = data.range[0]
- data.endTime = data.range[1]
- }
- delete data.range
- getOutInList(data)
- .then(res => {
- if (this.page === 1) {
- this.tableList = res.list
- } else {
- this.tableList.push(...res.list)
- }
- this.isEnd = this.tableList.length >= res.count
- })
- .then(() => {
- uni.hideLoading()
- })
- },
- //切换tab
- changeChartsTab(index) {
- this.pickTabIndex = index
- this.popupInfo.status = this.tabList[index].value
- this.handleSearch()
- },
- //新增入库单
- addStock(type) {
- uni.navigateTo({
- url: '/pages/warehouse/outHouse/addStock?type=' + type
- })
- },
- //查看详情
- viewDetails(id, code) {
- uni.navigateTo({
- url: '/pages/warehouse/outHouse/details?id=' + id + '&code=' + code
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mainBox {
- padding-bottom: 120rpx;
- }
- .search-container {
- width: 70vw;
- padding: 30rpx 36rpx;
- .footer {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- display: flex;
- box-shadow: 0 10rpx 30rpx 0 #000;
- .btn {
- width: 50%;
- height: 80rpx;
- border-radius: 0 !important;
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- &.reset {
- color: $j-primary-border-green;
- }
- &.search {
- color: #fff;
- background-color: $j-primary-border-green;
- }
- }
- }
- .title {
- font-weight: bold;
- font-size: 30rpx;
- }
- .status-wrapper {
- display: flex;
- align-items: center;
- justify-content: space-between;
- view {
- background-color: rgba(242, 242, 242, 1);
- height: 60rpx;
- border-radius: 30rpx;
- line-height: 60rpx;
- text-align: center;
- width: 160rpx;
- border: 1rpx solid rgba(242, 242, 242, 1);
- &.active {
- color: #157a2c;
- border-color: rgba(21, 122, 44, 1);
- }
- }
- }
- /deep/.uni-date {
- .uni-icons {
- display: none;
- }
- .uni-date-x {
- padding: 0;
- view {
- margin: 0 20rpx;
- }
- }
- }
- /deep/.uni-date__x-input,
- /deep/.uni-easyinput__content-input {
- height: 60rpx;
- border-radius: 30rpx;
- overflow: hidden;
- background-color: rgba(242, 242, 242, 1);
- }
- }
- .tab-title {
- position: fixed;
- z-index: 99;
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: $tab-height;
- line-height: $tab-height;
- background-color: #ffffff;
- border-bottom: 1px solid #f2f2f2;
- box-sizing: border-box;
- .search-icon {
- display: flex;
- align-items: center;
- justify-content: space-around;
- font-size: 28rpx;
- white-space: nowrap;
- margin-left: 10rpx;
- image {
- width: 30rpx;
- height: 30rpx;
- }
- }
- .tab-item {
- width: 25%;
- text-align: center;
- font-size: 32rpx;
- color: $uni-text-color-grey;
- }
- .tab-item.active {
- color: $j-primary-border-green;
- border-bottom: 1px solid $j-primary-border-green;
- font-weight: bold;
- }
- .tab-item.filter {
- flex: 1;
- padding: 0px 30rpx;
- .uni-icons {
- display: flex;
- padding-top: 5px;
- }
- }
- }
- .listBox {
- margin-top: 10px;
- padding-top: 5px;
- padding-bottom: 8px;
- .listTit {
- display: flex;
- align-items: center;
- .stuts {
- width: 55px;
- font-size: 12px;
- // border: 1px solid red;
- }
- .name {
- font-size: $uni-font-size-base;
- padding-left: 15rpx;
- }
- .date {
- font-size: $uni-font-size-sm;
- padding-left: 45rpx;
- color: #999;
- }
- }
- .listCont {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- padding-left: 20rpx;
- flex-direction: row;
- margin-top: 10rpx;
- color: #666;
- // border: 1px solid red;
- .item {
- width: 50%;
- font-size: $uni-font-size-sm;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
- }
- .item text {
- color: #666;
- }
- .item-left {
- font-size: 20px;
- font-weight: 600;
- color: #999;
- position: relative;
- left: 90%;
- top: -55rpx;
- }
- }
- .item-top {
- height: 5rpx;
- width: 96%;
- margin: 0 auto;
- border-bottom: 1px solid #d8d3d3;
- }
- .listbtn {
- margin-top: 20rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- .operBox {
- display: flex;
- align-items: center;
- }
- }
- .listbtn button {
- margin-right: 20rpx;
- }
- }
- </style>
|