pda-cli/src/pages/storefabric/storefabricInBill.vue
xuan f63d202327 build(deps): update dependencies and manifest version
更新了项目依赖,包括:
- `@dcloudio` 相关依赖
- `@icon-park/vue`
- `@vue/shared`
- `core-js`
- `flyio`
- `vue-i18n`
- `vuex`
- `@dcloudio/types`
- `babel-plugin-import`

同时,更新了 `manifest.json` 中的 `versionName` 和 `versionCode`。

这些更新旨在提升项目性能、修复已知问题并引入新功能。
2025-08-18 11:43:03 +08:00

325 lines
8.9 KiB
Vue

<template>
<view>
<u-sticky>
<div style="height: 43px; border-bottom: 1rpx solid #eeeeee; background-color: #FFFFFF;">
<u-tabs :list="tabList" name="title" active-color="red" :is-scroll="false"
:current="activeTabIndex" @change="onTabChange"></u-tabs>
</div>
</u-sticky>
<dataNull v-if="list.length == 0" src="/src/static/img/chahua/gjNull.png" title="暂无相关胚布进仓单" title1="请添加或者更换搜索添加">
</dataNull>
<scroll-view v-else scroll-y="true" :style="{height: scrollHeight}"
refresher-enabled :refresher-threshold="200" :refresher-triggered="triggered"
refresher-background="gray" @refresherrefresh="onRefresh" @refresherrestore="onRestore">
<view v-for="(item, index) in list" :key="index" @click="cardClickFun(item, index)">
<storefabricinbill :item="item" :isSelect="isSelect" :index="index"></storefabricinbill>
</view>
<getMore :isMore="isMore"></getMore>
</scroll-view>
<addBtn url="./storefabricInBilladd"></addBtn>
</view>
</template>
<script>
let that = '';
import {tyDropDown,dropDownByUser,bjdDatePxData,bjdSxDropDownData} from '../../static/utils/dropdown.js'
import {getDayFun,getDayByNumFun} from '@/static/utils/date.js'
import dataNull from '@/components/dataNull/dataNull.vue'
import addBtn from '@/components/addBtn/addBtn.vue'
import storefabricinbill from '@/components/card/storefabricinbill.vue'
import getMore from '@/components/getMore/getMore.vue'
import topDropdown from '../../components/topDropdown/topDropdown.vue'
import util, {playSuccessAudio,playErrorAudio} from '../../common/util';
import {TbOrderCouponService} from "@/dev/services/tb-order-coupon.service";
export default {
components: {
dataNull,
addBtn,
getMore,
storefabricinbill,
topDropdown
},
data() {
return {
tbOrderCouponList: [],
tabList: [
{title: '未审核', status: null},
{title: '已审核', status: '1'},
],
activeTabIndex: 0,
dropdown1: '全部',
options1: [],
optionsPx: bjdDatePxData,
sxList: [],
list: [],
pageIndex: 1,
isMore: true,
scrollHeight: '667px',
triggered: false,
isSelect: false,
pageType: '',
sortObj: {
update_date: -1
},
optionsReq: {}, // 第一个下拉框请求参数
dateReq: [], // 日期相关请求参数
sxReq: JSON.stringify({}), // 筛选想请求参数
matchObj: {},
searchValue: '',
clientIdArr: [],
tabNoEqualArr: [], //标签页不等于数据
depId: undefined
}
},
onLoad(e) {
uni.getSystemInfo({
success(res) {
that.scrollHeight = res.windowHeight - 40 + 'px';
}
})
that.selectDataFun();
},
watch: {
activeTabIndex: {
deep: true, // 深度监听
handler(newVal, oldVal) {
that.selectDataFun(newVal);
}
}
},
// 上拉加载
onReachBottom: function () {
/*
if (this.pagination.hasNextPage) {
this.doInfinite()
}
*/
},
onBackPress() {
uni.$off('deleteCardFun', that.deleteCardFun);
uni.$off('updateBjdListByIndex', that.updateBjdListByIndex)
uni.$off('addBjdItemInListFun', that.addBjdItemInListFun);
},
methods: {
onTabChange(index) {
const _self = this;
this.activeTabIndex = index;
},
/**
* 加载更多数据中
* @param infiniteScroll
*/
doInfinite(infiniteScroll) {
const _self = this;
new TbOrderCouponService().findTableTbOrderCouponList({
pagination: _self.pagination,
data: {
communityId: _self.globalVariable.userInfo.tbCommunity.id,
userId: _self.globalVariable.userInfo.id,
status: _self.tabList[_self.activeTabIndex].status,
orderBy: 'create_time desc',
},
}).then(result => {
_self.pagination.refreshPage(result);
_self.tbOrderCouponList = [..._self.tbOrderCouponList, ...result.list];
});
},
// 查询报价单
selectDataFun: function() {
/*
if (!that.isMore) {
return
}
uni.showLoading({
title: '加载中...',
mask: true
})*/
let aStatusName = "";
console.log("---->" +this.activeTabIndex + "<<<----" );
if (this.activeTabIndex == 0) {
aStatusName = "未审核"
}
else if (this.activeTabIndex == 1) {
aStatusName = "已审核"
};
uni.request({
url: util.apiurl + 'rest/db/opensql',
data: {
token: getApp().globalData.Token,
format: 'json',
data: {
db_name: getApp().globalData.AppDBName,
sql_command_id: 'APP.SaleShip.GetSaleAllocatedMaster',
params: [{
name: 'StatusName',
value: '%'+aStatusName+'%'
}, {
name: 'SUID',
value: getApp().globalData.EmployeeID
}, {
name: 'MUID',
value: getApp().globalData.EmployeeID
}]
},
},
success: (res) => {
this.triggered = false;
let data = res.data.data;
if (that.pageIndex == 1) {
that.list = [];
}
if (res.data == 20) {
that.pageIndex += 1;
that.isMore = true;
} else {
that.isMore = false;
}
that.list = that.list.concat(data);
},
})
},
// 卡片点击方法
cardClickFun: function(item, index) {
if (that.pageType == 'genjin') {
uni.$emit('gjOrderBindFun', item)
uni.navigateBack()
} else if (that.pageType != '') {
uni.$emit('baoJiaDanBindFun', item)
uni.navigateBack()
}
},
// 下拉框回调函数
dropDownFun1: function(e) {
let optionsReq = {};
let tabNoEqualArr = [];
let userInfo = uni.$userInfo;
that.depId = undefined;
if (e.label == '全部') {
that.depId = userInfo.depManager_Id;
} else if (e.label == '我负责的') {
optionsReq.fuZeRenId = userInfo._id;
} else if (e.label == '我创建的') {
optionsReq.cjRenId = userInfo._id;
} else if (e.label == '下属负责') {
that.depId = userInfo.depManager_Id;
tabNoEqualArr = [{
field: 'fuZeRenId',
value: userInfo._id
}]
optionsReq.department = userInfo.departmentId;
} else if (e.label == '下属创建') {
that.depId = userInfo.depManager_Id;
tabNoEqualArr = [{
field: 'cjRenId',
value: userInfo._id
}]
}
that.tabNoEqualArr = tabNoEqualArr;
that.optionsReq = JSON.stringify(optionsReq);
that.matchObj = Object.assign(optionsReq, JSON.parse(that.sxReq));
that.cxGetDataFun();
},
// 筛选框回调函数
optionSxFun: function(e) {
let arr = e.arr;
that.clientIdArr = e.selectKhList;
console.log(that.clientIdArr)
let matchReq = [];
let dateReq = [];
for (var i = 0; i < arr.length; i++) {
if (arr[i].current !== '' && !arr[i].isDate) {
matchReq.push({
field: arr[i].field,
value: arr[i].arr[arr[i].current]
})
} else if (arr[i].current !== '' && arr[i].isDate) {
dateReq.push({
field: arr[i].field,
sTime: arr[i].sTime,
eTime: arr[i].eTime
})
}
}
let reqObj = {};
// 动态生成请求对象
for (var i = 0; i < matchReq.length; i++) {
reqObj[matchReq[i].field] = matchReq[i].value
}
that.dateReq = dateReq;
that.sxReq = JSON.stringify(reqObj);
// 合并对象
that.matchObj = Object.assign(reqObj, JSON.parse(that.optionsReq));
that.cxGetDataFun();
},
// 排序筛选框回调函数
optionPxFun: function(arr) {
let sortObj = {
update_date: -1
}
for (var i = 0; i < arr.length; i++) {
if (arr[i].current !== '') {
sortObj = {}
if (arr[i].field == 'create_date') {
sortObj.create_date = arr[i].current == 1 ? 1 : -1
}
if (arr[i].field == 'update_date') {
sortObj.update_date = arr[i].current == 1 ? 1 : -1
}
if (arr[i].field == 'chengJiao_date') {
sortObj.chengJiao_date = arr[i].current == 1 ? 1 : -1
}
if (arr[i].field == 'bjPrice') {
sortObj.bjPrice = arr[i].current == 1 ? 1 : -1
}
that.sortObj = sortObj;
break;
}
}
that.cxGetDataFun();
},
// 搜索框回调方法
searchBoxEmitFun: function(e) {
that.searchValue = e.searchValue1;
that.cxGetDataFun()
},
// 下拉刷新
onRefresh: function() {
if (that.triggered) return
that.triggered = true;
that.cxGetDataFun();
},
onRestore: function(e) {
that.triggered = false; // 需要重置
},
// 重新获取数据
cxGetDataFun: function() {
that.pageIndex = 1;
that.isMore = true;
that.selectDataFun();
},
deleteCardFun: function(e) {
let arr = that.list;
arr.splice(e.index, 1);
that.list = arr;
},
// add页面新增数据
addBjdItemInListFun: function(e) {
that.cxGetDataFun()
},
// 通过下标更新list数据
updateBjdListByIndex: function(e) {
that.$set(that.list, parseInt(e.index), e.obj)
},
}
}
</script>
<style>
page {
background-color: #F8F8F8;
}
</style>