| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <template>
- <view class="mainBox">
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="盘点工单"
- @clickLeft="back"
- ></uni-nav-bar>
- <template>
- <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>
- <view class="tab-title__placeholder"></view>
- </template>
- <view
- class="list-wrap"
- v-for="(item, index) in listData"
- :key="index"
- v-show="listData.length !== 0"
- @click="goInventory(item)"
- >
- <CardTime :time="item.createTime" />
- <KdCard
- :title="item.workOrderCode"
- :status="true"
- :item="item"
- type="check"
- />
- </view>
- <view v-show="listData.length === 0" class="no_data">
- <u-empty mode="data"></u-empty>
- </view>
- </view>
- </template>
- <script>
- import { post } from '@/utils/api.js'
- import KdCard from './components/KdCard/index.vue'
- import CardTime from './components/CardTime.vue'
- import dictMixins from '@/mixins/dictMixins'
- let [page, size, isEnd] = [1, 10, true]
- export default {
- mixins: [dictMixins],
- components: {
- KdCard,
- CardTime
- },
- data () {
- return {
- tabList: [
- {
- value: '',
- label: '全部',
- list: []
- },
- {
- value: 1,
- label: '盘点中',
- list: []
- },
- {
- value: 3,
- label: '已盘点',
- list: []
- },
- {
- value: 2,
- label: '待审核',
- list: []
- }
- ],
- pickTabIndex: 0, //Tab选择
- listData: [],
- dictOpt: {
- status: {
- 0: '待接收',
- 1: '执行中',
- 2: '待审核',
- 3: '完成',
- 4: '已撤回',
- 5: '待验收',
- 6: '已驳回',
- 7: '未修复',
- 8: '已派单'
- },
- asset: {
- 1: {
- color: '#027DB4',
- backgroundColor: '#def5ff'
- },
- 2: {
- color: '#B8741A',
- backgroundColor: '#fef1e8'
- },
- 3: {
- color: '#A30014',
- backgroundColor: '#f9e5e7'
- },
- 4: {
- color: 'green',
- backgroundColor: '#67C23A'
- },
- 5: {
- color: '#a30014',
- backgroundColor: '#F56C6C'
- },
- 6: {
- color: '#f56c6c',
- backgroundColor: '#fbc4c4'
- },
- 7: {
- color: '#e6a23c',
- backgroundColor: '#fdf6ec'
- }
- }
- }
- }
- },
- onLoad () {
- // this.requestDict('物品类型')
- this.getFirstList()
- },
- //加载更多
- onReachBottom () {
- if (isEnd) {
- return
- }
- // 显示加载图标
- uni.showLoading({
- title: '数据加载中'
- })
- this.getMoreLists()
- },
- methods: {
- //首次加载
- getFirstList () {
- page = 1
- isEnd = true
- uni.showLoading({
- title: '数据加载中'
- })
- this.getList()
- },
- //获取更多列表
- getMoreLists () {
- //获取更多数据
- page++
- this.getList()
- },
- //获取数据列表
- getList () {
- uni.showLoading({
- title: '加载中'
- })
- let Pagination = {
- page,
- size
- }
- let data = {
- workOrderType: 4
- }
- let status = this.tabList[this.pickTabIndex].value
- if (status) {
- data.status = status
- }
- //2 - 99 [已完成]
- let par = this.URLSearchParams(Pagination)
- post(this.apiUrl + '/workOrder/getWorkOrderList?' + par, data)
- .then(res => {
- let data = res.data.records
- let pageTotal = res.data.pages
- if (page === 1) {
- this.listData = data
- } else {
- data.forEach(element => {
- this.listData.push(element)
- })
- }
- page < pageTotal ? (isEnd = false) : (isEnd = true)
- })
- .then(() => {
- uni.hideLoading()
- })
- },
- //切换菜单Tab
- changeChartsTab (index) {
- this.pickTabIndex = index
- this.getFirstList()
- },
- // 跳转盘点清单
- goInventory (item) {
- let par = this.URLSearchParams({
- id: item.id,
- workOrderCode: item.workOrderCode,
- BizType: item.bizType
- })
- uni.navigateTo({
- url: '/pages/warehouse/workOrder/inventory/inventory?' + par
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mainBox {
- }
- /*Tab条*/
- .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;
- .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;
- font-weight: bold;
- }
- }
- }
- /*列表信息*/
- .list-wrap {
- padding: 10rpx;
- background-color: $page-bg;
- // .item {
- // display: flex;
- // justify-content: space-between;
- // padding: 10rpx;
- // color: rgb(170, 170, 170);
- // font-size: 28rpx;
- // word-break: break-all;
- // .title {
- // color: #333333;
- // font-size: 28rpx;
- // }
- // .state {
- // font-size: 12px;
- // display: inline;
- // padding: 2px 5px;
- // border-radius: 10px;
- // }
- // .asset {
- // font-size: 12px;
- // color: #7f7f7f;
- // background: #f1f1f1;
- // padding: 2px 5px;
- // border-radius: 2px;
- // }
- // }
- & + .list-wrap {
- border-top: 1px solid rgba(242, 242, 242, 1);
- }
- }
- </style>
|