| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440 |
- <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 rightText="新建调拨" :icon="false" @rightClick="addAllocation" />
- <!-- 搜索组件 -->
- <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="createTime">
- <view class="time-wrapper">
- <!-- <uni-datetime-picker
- v-model="popupInfo.createTime"
- :border="false"
- :icon="false"
- type="date"
- /> -->
- <uni-datetime-picker v-model="popupInfo.range" :border="false" :icon="false" type="daterange" />
- </view>
- </uni-forms-item>
- <uni-forms-item label="单号" name="dialNumber">
- <uni-easyinput v-model="popupInfo.dialNumber" :inputBorder="false" placeholder="请输入" />
- </uni-forms-item>
- <uni-forms-item label="调出仓库" name="warehouseId">
- <uni-data-select v-model="popupInfo.warehouseId" :localdata="warehouseList"></uni-data-select>
- <!-- <uni-easyinput
- :inputBorder="false"
- placeholder="请输入"
- /> -->
- </uni-forms-item>
- <uni-forms-item label="调入仓库" name="inWarehouseId">
- <uni-data-select v-model="popupInfo.inWarehouseId" :localdata="warehouseList"></uni-data-select>
- <!-- <uni-easyinput
- :inputBorder="false"
- placeholder="请输入"
- /> -->
- </uni-forms-item>
- <uni-forms-item label="调拨类型" name="dialType">
- <uni-data-select
- v-model="popupInfo.dialType"
- :localdata="[
- { value: 1, text: '库内调拨' },
- { value: 2, text: '库外调拨' }
- ]"></uni-data-select>
- <!-- <uni-easyinput
- :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 { get, getJ, post, postJ } from '@/utils/api.js'
- import card from './components/card.vue'
- import CommonFooter from '../components/CommonFooter.vue'
- let [page, size, isEnd] = [1, 10, false]
- export default {
- components: {
- card,
- CommonFooter
- },
- data() {
- return {
- searchVisible: false,
- tabList: [
- {
- value: '',
- label: '全部'
- },
- {
- value: 4,
- label: '草稿'
- },
- {
- value: 1,
- label: '待审核'
- },
- {
- value: 2,
- label: '已完成'
- },
- {
- value: 0,
- label: '已驳回'
- }
- ],
- statusList: [
- { code: 4, label: '草稿' },
- { code: 1, label: '待审核' },
- { code: 0, label: '已驳回' },
- { code: 2, label: '已完成' }
- ],
- pickTabIndex: 0,
- popupInfo: {
- warehouseId: '',
- inWarehouseId: '',
- dialType: '',
- range: [],
- dialNumber: ''
- }, //筛选数据
- tableList: [],
- warehouseList: []
- }
- },
- onShow() {
- this._getWarehouseChildren()
- this.getFirstList()
- },
- //触底加载
- onReachBottom: function () {
- if (isEnd) {
- uni.showToast({
- title: '已经没有更多数据了!',
- icon: 'none',
- duration: 1000 //提示持续时间
- })
- return
- }
- // 显示加载图标
- uni.showLoading({
- title: '数据加载中'
- })
- this.getMoreLists()
- },
- methods: {
- async _getWarehouseChildren() {
- const res = await postJ(this.apiUrl + '/outInWarehouse/select/getWarehouseChildren')
- if (res?.success) {
- this.warehouseList = res.data.map(i => ({
- text: i.name,
- value: i.id,
- ...i
- }))
- }
- },
- addAllocation() {
- uni.navigateTo({
- url: '/pages/warehouse/inventoryAllocation/edit'
- })
- },
- handleReset() {
- this.popupInfo = {
- dialType: '',
- createTime: '',
- range: [],
- dialNumber: '',
- createUserName: ''
- }
- this.tableList = []
- this.getFirstList()
- },
- handleSearch() {
- this.getFirstList()
- },
- // 搜索弹窗
- openSearch() {
- // console.log('open');
- },
- getFirstList() {
- page = 1
- this.searchVisible = false
- isEnd = true
- uni.showLoading({
- title: '数据加载中'
- })
- this.getList()
- },
- getMoreLists() {
- //获取更多数据
- page++
- this.getList()
- },
- //获取列表信息
- getList() {
- uni.showLoading({
- title: '加载中'
- })
- let data = {
- page,
- size,
- ...this.popupInfo,
- auditStatus: this.tabList[this.pickTabIndex].value
- }
- if (data.range?.length) {
- data.createTimeStart = data.range[0]
- data.createTimeEnd = data.range[1]
- }
- delete data.range
- post(this.apiUrl + '/conventionalStockTransfer/select/getPage', data)
- .then(res => {
- if (res.success == true) {
- if (page === 1) {
- this.tableList = res.data.records
- } else {
- this.tableList.push(...res.data.records)
- }
- isEnd = this.tableList.length >= res.data.total
- }
- })
- .then(() => {
- uni.hideLoading()
- })
- },
- //切换tab
- changeChartsTab(index) {
- this.pickTabIndex = index
- this.handleSearch()
- },
- //查看详情
- viewDetails(id, code) {
- uni.navigateTo({
- url: '/pages/warehouse/enterHouse/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: 34rpx;
- height: 34rpx;
- }
- }
- .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>
|