Browse Source

新增预约数据缓存

dev-xx
qb 1 year ago
parent
commit
4cb6aa0acf
  1. 10
      src/router/views/index.js
  2. 5
      src/store/getters.js
  3. 55
      src/store/modules/tags.js
  4. 9
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse3.vue
  5. 1
      src/views/distribution/inventory/carry/distributionStockCarry.vue
  6. 1
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  7. 1
      src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue
  8. 1
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  9. 11
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  10. 1
      src/views/distribution/inventory/delivery/distributionStockArticleWhole.vue
  11. 3
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  12. 2
      src/views/distribution/inventory/distributionStockRoute.vue
  13. 34
      src/views/distribution/inventory/distrilbutionBillLading.vue
  14. 69
      src/views/distribution/inventory/distrilbutionBillLadingList.vue
  15. 12
      src/views/distribution/reservation/reservation.vue
  16. 85
      src/views/distribution/reservation/reservationAddFrom.vue
  17. 736
      src/views/mail/order/list.vue
  18. 104
      src/views/mail/reservation/list.vue
  19. 26
      src/views/warehouse/parcelList/distributionParcelList.vue
  20. 1
      src/views/warehouse/warehousesignedorder/distributionStockArticle.vue

10
src/router/views/index.js

@ -676,12 +676,12 @@ export default [
],
},
{
path: '/distribution/reservation/reservationAddFrom',
path: '/distribution/reservation',
component: Layout,
redirect: '/distribution/reservation/reservationAddFrom',
// meta: {
// keepAlive: true,
// },
meta: {
keepAlive: true,
},
children: [
{
path: '/distribution/reservation/reservationAddFrom',
@ -845,7 +845,7 @@ export default [
],
},
{
path: '/distribution/inventory/distrilbutionBillLading',
path: '/distribution/inventory',
component: Layout,
redirect: '/distribution/inventory',
children: [

5
src/store/getters.js

@ -15,13 +15,14 @@ const getters = {
lockPasswd: state => state.common.lockPasswd,
tagList: state => state.tags.tagList,
tagsKeep: (state, getters) => {
console.log(getters.tagList,'-----')
console.log(getters.tagList, '-----');
return getters.tagList
.filter(ele => {
return (ele.meta || {}).keepAlive;
})
.map(ele => {
return ele.fullPath;
// return ele.fullPath;
return ele.path;
});
},
tagWel: state => state.tags.tagWel,

55
src/store/modules/tags.js

@ -1,7 +1,7 @@
import { setStore, getStore } from 'utils/store';// 从 'utils/store' 导入 setStore 和 getStore 方法
import website from '@/config/website';// 从项目的配置文件中导入 website 对象
import { setStore, getStore } from 'utils/store'; // 从 'utils/store' 导入 setStore 和 getStore 方法
import website from '@/config/website'; // 从项目的配置文件中导入 website 对象
const tagWel = website.fistPage;// 从 website 配置中获取第一个页面的配置
const tagWel = website.fistPage; // 从 website 配置中获取第一个页面的配置
const navs = {
state: {
tagList: getStore({ name: 'tagList' }) || [], // 尝试从本地存储获取标签列表,如果没有则设为空数组
@ -9,48 +9,67 @@ const navs = {
tagWel: tagWel, // 设置第一个页面的配置为 tagWel
},
mutations: {
// 添加新的标签
// 添加新的标签
ADD_TAG: (state, action) => {
if (typeof action.name == 'function') action.name = action.name(action.query);
state.tag = action;// 设置当前的标签
setStore({ name: 'tag', content: state.tag });// 在本地存储中保存当前标签
state.tag = action; // 设置当前的标签
setStore({ name: 'tag', content: state.tag }); // 在本地存储中保存当前标签
if (state.tagList.some(ele => ele.fullPath == action.fullPath)) return; // 如果列表中已经有了这个标签则不添加
state.tagList.push(action);// 将新标签添加到列表中
state.tagList.push(action); // 将新标签添加到列表中
setStore({ name: 'tagList', content: state.tagList }); // 在本地存储中保存标签列表
},
// 关闭指定标签
DEL_TAG: (state, action) => {
state.tagList = state.tagList.filter(item => {
return item.fullPath !== action.fullPath;// 保留列表中不是指定路径的标签
return item.fullPath !== action.fullPath; // 保留列表中不是指定路径的标签
});
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储中的标签列表
setStore({ name: 'tagList', content: state.tagList }); // 更新本地存储中的标签列表
},
// 关闭指定页面标签
DEL_ONCE_TAG: (state, action) => {
const reg = new RegExp(action);
state.tagList = state.tagList.filter(item => {
return !reg.test(item.fullPath); // 保留列表中不是指定路径的标签
});
setStore({ name: 'tagList', content: state.tagList }); // 更新本地存储中的标签列表
},
// 关闭所有标签
DEL_ALL_TAG: (state, tagList = []) => {
state.tagList = tagList;// 清空标签列表
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储
state.tagList = tagList; // 清空标签列表
setStore({ name: 'tagList', content: state.tagList }); // 更新本地存储
},
// 关闭除了当前页面的所有页面
DEL_TAG_OTHER: state => {
state.tagList = state.tagList.filter(item => {
console.log("关闭其他111state.tag.fullPath, website.fistPage.path",state.tag.fullPath, website.fistPage.path,item);
return [state.tag.fullPath, website.fistPage.path].includes(item.fullPath);// 保留当前路径和第一个页面的路径
console.log(
'关闭其他111state.tag.fullPath, website.fistPage.path',
state.tag.fullPath,
website.fistPage.path,
item
);
return [state.tag.fullPath, website.fistPage.path].includes(item.fullPath); // 保留当前路径和第一个页面的路径
});
console.log("2222state.tagList",state.tagList);
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储
console.log('2222state.tagList', state.tagList);
setStore({ name: 'tagList', content: state.tagList }); // 更新本地存储
},
// 关闭当前页面
DEL_TAG_CURRENT: state => {
state.tagList = state.tagList.filter(item => {
console.log("state.tag.fullPath, website.fistPage.path",state.tag.fullPath, website.fistPage.path,item);
console.log(
'state.tag.fullPath, website.fistPage.path',
state.tag.fullPath,
website.fistPage.path,
item
);
// const del = '3'
// this.demoData = this.demoData.filter((o) => {
// return state.tag.fullPath !== del
// })
return state.tag.fullPath !== item.fullPath;// 保留不是当前路径的标签
return state.tag.fullPath !== item.fullPath; // 保留不是当前路径的标签
});
// console.log("state.tagList",state.tagList);
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储
setStore({ name: 'tagList', content: state.tagList }); // 更新本地存储
},
},
};

9
src/views/basicdata/warehouse/warehouse/basicdataWarehouse3.vue

@ -66,11 +66,7 @@
<el-text type="primary" text icon="el-icon-view" @click="handleEdit(slotProps.scope)"
>编辑</el-text
>
<el-text
type="primary"
text
icon="el-icon-edit"
@click="handleDelete(slotProps.scope)"
<el-text type="primary" text icon="el-icon-edit" @click="handleDelete(slotProps.scope)"
>删除</el-text
>
</template>
@ -1035,6 +1031,9 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

1
src/views/distribution/inventory/carry/distributionStockCarry.vue

@ -514,6 +514,7 @@ export default {
//
handlebill(row) {
console.log('>>>>', this.ids);
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

1
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -912,6 +912,7 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

1
src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue

@ -821,6 +821,7 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

1
src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue

@ -848,6 +848,7 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

11
src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue

@ -555,7 +555,7 @@ export default {
return {
columnList: _newCol,
columnListedit: [],
loadingwaybillrecipient:false,
loadingwaybillrecipient: false,
drawerShow: false,
height: 0,
//
@ -605,7 +605,7 @@ export default {
//
option: option,
waybillrecipient: false, //
waybillrecipientForm:{},
waybillrecipientForm: {},
//
data: [],
optionsName: [],
@ -1039,8 +1039,8 @@ export default {
});
});
},
//
Modifywaybillrecipient() {
//
Modifywaybillrecipient() {
if (!this.selectionList.length) {
this.$message.warning('请选择至少一条数据');
return;
@ -1076,7 +1076,7 @@ export default {
console.log(resT, '修改成功后返回值');
if (resT.data.code == 200) {
this.waybillrecipient = false; //
this.onLoad(this.page);
}
})
@ -1163,6 +1163,7 @@ export default {
if (!flag) {
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

1
src/views/distribution/inventory/delivery/distributionStockArticleWhole.vue

@ -1305,6 +1305,7 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

3
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -1060,6 +1060,9 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

2
src/views/distribution/inventory/distributionStockRoute.vue

@ -508,6 +508,8 @@ export default {
//
handlebill(row) {
console.log('>>>>', this.ids);
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

34
src/views/distribution/inventory/distrilbutionBillLading.vue

@ -624,7 +624,7 @@ import {
zeroMaterial,
zeroUpdateMaterial,
} from '@/api/distribution/distrilbutionBillLading';
import { ElMessage } from 'element-plus'
import { ElMessage } from 'element-plus';
import { getListOwn, getList, getEditList } from '@/api/distribution/distributionParcelList';
import option from '@/option/distribution/distrilbutionBillLading';
import { mapGetters } from 'vuex';
@ -639,6 +639,7 @@ import { useStore } from 'vuex';
import { setNodeHeight } from '@/utils/util.js';
const $store = useStore();
export default {
name: '/distribution/inventory/distrilbutionBillLading',
data() {
return {
tabletit: '', //
@ -705,7 +706,7 @@ export default {
total: 0,
},
//
form: {},
form: { freightMark: [] },
orderChooseId: '',
//
selectionList: [],
@ -1873,6 +1874,7 @@ export default {
};
},
mounted() {
console.log('123 :>> ', 123);
this.setTableHeight();
this.init();
@ -2270,7 +2272,7 @@ export default {
//
callFordelivery(inde) {
if (!this.selectionList.length) {
console.log(this.selectionListStock,'23');
console.log(this.selectionListStock, '23');
this.$message.warning('至少选择一条数据!');
return;
}
@ -2592,17 +2594,17 @@ export default {
// if ()
}
this.$refs.form.validate(async valid => {
console.log(this.data,'当前选择的数据');
if(this.data.length){
const allQuantitiesAreFalsy = this.data.every(item => item.inventoryQuantity)
console.log(allQuantitiesAreFalsy,'allQuantitiesAreFalsy');
if(!allQuantitiesAreFalsy){
ElMessage({
message: '请移除添加数量为0的订单',
type: 'warning',
})
return
}
console.log(this.data, '当前选择的数据');
if (this.data.length) {
const allQuantitiesAreFalsy = this.data.every(item => item.inventoryQuantity);
console.log(allQuantitiesAreFalsy, 'allQuantitiesAreFalsy');
if (!allQuantitiesAreFalsy) {
ElMessage({
message: '请移除添加数量为0的订单',
type: 'warning',
});
return;
}
}
if (valid) {
if (!this.form.id) {
@ -2906,7 +2908,7 @@ export default {
params.genre = 1;
params.typeService = 3;
params.reservation = '30';
params.isAll=0;
params.isAll = 0;
getListOne(page.currentPage, page.pageSize, Object.assign(params, this.queryOrder)).then(
res => {
const data = res.data.data;
@ -3001,7 +3003,7 @@ export default {
this.view = false;
},
selectionChange(list) {
console.log(list,'勾选的数据');
console.log(list, '勾选的数据');
this.selectionList = list;
},
handleHighlightChangeTable(row) {

69
src/views/distribution/inventory/distrilbutionBillLadingList.vue

@ -53,10 +53,7 @@
@click="handleBillAdd"
>创建自提</el-button
>
<el-button
type="primary"
icon="el-icon-plus"
@click="pickupCancellation"
<el-button type="primary" icon="el-icon-plus" @click="pickupCancellation"
>批量取消</el-button
>
<!-- <el-button
@ -247,7 +244,7 @@ import {
getBillLadingDetail,
getListOwnNUm,
getBillLadingExport,
$_distrilbutionBillLading
$_distrilbutionBillLading,
} from '@/api/distribution/distrilbutionBillLading';
import { printBatch } from '@/api/distribution/distributionDeliveryList';
import print from '@/utils/print';
@ -257,7 +254,7 @@ import { getDictionaryBiz } from '@/api/system/dict';
import { getToken } from '@/utils/auth';
import dayjs from 'dayjs';
import { downloadXls } from '@/utils/util';
import { ElMessage, ElMessageBox } from 'element-plus'
import { ElMessage, ElMessageBox } from 'element-plus';
export default {
data() {
return {
@ -871,6 +868,8 @@ export default {
this.box = true;
},
handleBillAdd() {
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {
@ -878,41 +877,34 @@ export default {
},
});
},
pickupCancellation(){
pickupCancellation() {
if (!this.selectionList.length) {
this.$message.warning('请选择至少一条数据');
return;
}
ElMessageBox.confirm(
'是否取消该任务?',
'提示',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}
)
.then(() => {
//
let data={
billLodingIds:''
}
data.billLodingIds=this.selectionList.map(res=>res.id).join(',')
console.log(data,'处理好的值');
this.loading=true;//
$_distrilbutionBillLading(data).then(res=>{
console.log(res,'批量取消车成功');
}).catch(res=>{
}).finally(()=>{
this.loading=false;//
ElMessageBox.confirm('是否取消该任务?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
})
.catch(() => {
})
.then(() => {
//
let data = {
billLodingIds: '',
};
data.billLodingIds = this.selectionList.map(res => res.id).join(',');
console.log(data, '处理好的值');
this.loading = true; //
$_distrilbutionBillLading(data)
.then(res => {
console.log(res, '批量取消车成功');
})
.catch(res => {})
.finally(() => {
this.loading = false; //
});
})
.catch(() => {});
},
//
handleSign(row, num) {
@ -1024,6 +1016,8 @@ export default {
name = '上传签收图片';
type = '4';
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {
@ -1093,9 +1087,8 @@ export default {
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
console.log(this.selectionList,'2');
console.log(this.selectionList, '2');
},
selectionClear() {
this.selectionList = [];

12
src/views/distribution/reservation/reservation.vue

@ -1002,6 +1002,8 @@ export default {
},
editsolt(scope) {
const { row } = scope;
this.$store.commit('DEL_ONCE_TAG', '/distribution/reservation/reservationAddFrom');
this.$router.push({
path: '/distribution/reservation/reservationAddFrom',
query: {
@ -1286,19 +1288,11 @@ export default {
});
},
handleAdd() {
this.$store.commit('DEL_ONCE_TAG', '/distribution/reservation/reservationAddFrom');
this.$router.push({
path: '/distribution/reservation/reservationAddFrom',
});
},
handleEdit(row) {
console.log(row);
this.$router.push({
path: '/distribution/reservation/reservationAddFrom',
query: {
reservationId: row.id,
},
});
},
aaa() {
this.queryA.reservationStatus = '1';
this.onLoad(this.page);

85
src/views/distribution/reservation/reservationAddFrom.vue

@ -319,24 +319,24 @@
</el-col> -->
<el-col :xl="5" :lg="4" :md="4" :sm="12">
<div class="el_sumS">
<span>操作数量</span>
<el-input-number
v-if="this.isrReservationEntry"
v-model="item.reservationNum"
min="0"
:max="item.reservationNum"
placeholder="请输入预约数量"
></el-input-number>
<el-input-number
v-else
v-model="item.number"
min="0"
:max="maxSum"
placeholder="请输入预约数量"
></el-input-number>
</div>
</el-col>
<div class="el_sumS">
<span>操作数量</span>
<el-input-number
v-if="this.isrReservationEntry"
v-model="item.reservationNum"
min="0"
:max="item.reservationNum"
placeholder="请输入预约数量"
></el-input-number>
<el-input-number
v-else
v-model="item.number"
min="0"
:max="maxSum"
placeholder="请输入预约数量"
></el-input-number>
</div>
</el-col>
</el-row>
<!-- <el-input-number v-model="item.reservationNum" min="0" :max="item.quantity - item.deliveryQuantity -item.outboundQuantity " placeholder="请输入预约数量"></el-input-number>-->
@ -507,13 +507,14 @@ import { entryNum, updateEntryNum } from '@/api/distribution/distributionParcelN
import { setNodeHeight, removeZeroWidth } from '@/utils/util.js';
export default {
name: '/distribution/reservation/reservationAddFrom',
data() {
return {
Inventoryloading: true, //
packageQuery: {},
reservationloading: false,
orderRow: {},
Appointmentquantity:0,//
Appointmentquantity: 0, //
/** 订单 */
columnList: [
{
@ -1977,11 +1978,14 @@ export default {
/** 提交按钮 */
submitBtnLoading: false,
},
/** 页面id 决定是否进行刷新 */
// pageId: 'add',
};
},
created() {
console.log('123 :>> ', 123);
this.fetchData();
this.onLoad(this.page);
// this.$watch(
// () => this.$route.params,
// () => {
@ -2003,9 +2007,13 @@ export default {
watch: {
'$route.query.reservationId': {
handler(newVal, oldVal) {
console.log(newVal, oldVal);
this.fetchData();
this.onLoad(this.page);
if (this.$route.path !== '/distribution/reservation/reservationAddFrom') return;
// const _id = this.$route.query.reservationId || '';
// if (_id === this.pageId) return;
// this.pageId = _id;
// console.log(newVal, oldVal);
// this.fetchData();
// this.onLoad(this.page);
},
deep: true,
immediate: true,
@ -2476,26 +2484,6 @@ export default {
this.onLoadOrder(this.page);
},
searchStockList() {
// let params = {};
// let page = this.page;
// this.query.serviceType = 2;
// getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
// res => {
// const inventoryList = res.data.data;
// inventoryList.records.forEach(item => {
// item.reservationNum = '0';
// if (item.unpack) {
// item.unpackName = '';
// } else {
// item.unpackName = '';
// }
// });
// this.page.total = inventoryList.total;
// this.inventoryInfo = inventoryList.records;
// this.loading = false;
// this.selectionClear();
// }
// );
this.inventoryPage.currentPage = 1;
onLoadInventory();
},
@ -2520,12 +2508,11 @@ export default {
this.orderData.forEach(item => {
if (item.id === this.obj.id) {
item.packageList = this.packageDataSec;
item.reservationNum=this.packageDataSec.length
item.reservationNum = this.packageDataSec.length;
}
});
// this.Appointmentquantity = this.packageDataSec.length;//
console.log('this.orderData------------>', this.orderData);
this.isaddvalue = false;
},
@ -3066,9 +3053,9 @@ export default {
//
this.orderData = [...this.orderList];
this.orderData.forEach(item=>{
item.reservationNum = item.handQuantity
})
this.orderData.forEach(item => {
item.reservationNum = item.handQuantity;
});
this.handleSearchOrder();
this.orderShow = false;
},
@ -3203,7 +3190,7 @@ export default {
console.log('->>>>>>>>>>>>>>>>>>查看包件', res);
this.packageData = data.data.packageList;
let idList = data.data.reservationPackageList.map(v => {
let idList = (data.data.reservationPackageList || []).map(v => {
return v.id;
});
this.packageDataSec = this.packageData.filter(val => idList.includes(val.id));

736
src/views/mail/order/list.vue

File diff suppressed because it is too large Load Diff

104
src/views/mail/reservation/list.vue

@ -45,7 +45,6 @@
>添加预约
</el-button>
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo(1)" plain
>导出
</el-button>
@ -89,7 +88,6 @@
@click="cancelReservation(slotProps.scope)"
>取消预约
</el-text>
</template>
</tablecmt>
</template>
@ -103,7 +101,6 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="danger" icon="el-icon-download" @click="handleExportInfo(2)" plain
>导出
</el-button>
@ -138,7 +135,6 @@
@click="viewReservation(slotProps.scope)"
>查看
</el-text>
</template>
</tablecmt>
</template>
@ -927,6 +923,8 @@ export default {
},
editsolt(scope) {
const { row } = scope;
this.$store.commit('DEL_ONCE_TAG', '/distribution/reservation/reservationAddFrom');
this.$router.push({
path: '/distribution/reservation/reservationAddFrom',
query: {
@ -1368,62 +1366,64 @@ export default {
query.reservationStatus = '20';
if (this.activename === 'nocheck') {
query = this.queryA;
query.reservationStatus= '10';
query.reservationStatus = '10';
}
// if (this.queryA.reservationStatus)
getReservationList(page.currentPage, page.pageSize, Object.assign(params, query)).then(res => {
const data = res.data.data;
console.log('>>>>>>>', data);
if (data.records) {
data.records.forEach(item => {
this.orderSourceData.forEach(a => {
if (item.orderSource === a.dictKey) {
item.orderSource = a.dictValue;
}
});
getReservationList(page.currentPage, page.pageSize, Object.assign(params, query)).then(
res => {
const data = res.data.data;
console.log('>>>>>>>', data);
if (data.records) {
data.records.forEach(item => {
this.orderSourceData.forEach(a => {
if (item.orderSource === a.dictKey) {
item.orderSource = a.dictValue;
}
});
this.resvervationStatusData.forEach(e => {
if (item.reservationStatus === e.dictKey) {
item.reservationStatus = e.dictValue;
}
});
this.deliveryTypeData.forEach(c => {
if (item.deliveryType === c.dictKey) {
item.deliveryType = c.dictValue;
}
});
this.resvervationStatusData.forEach(e => {
if (item.reservationStatus === e.dictKey) {
item.reservationStatus = e.dictValue;
}
});
this.deliveryTypeData.forEach(c => {
if (item.deliveryType === c.dictKey) {
item.deliveryType = c.dictValue;
}
});
this.deliveryWayData.forEach(c => {
if (item.deliveryWay === c.dictKey) {
item.deliveryWay = c.dictValue;
}
});
this.periodOfTimeData.forEach(d => {
if (item.periodOfTime === d.dictKey) {
item.periodOfTime = d.dictValue;
}
});
let pa = [];
if (item.serveType.length > 1) {
pa = item.serveType.split(',');
} else {
pa.push(item.serveType);
}
this.addvalueServeTypeData.forEach(f => {
pa.forEach((p, index) => {
if (p === f.dictKey) {
pa[index] = f.dictValue;
this.deliveryWayData.forEach(c => {
if (item.deliveryWay === c.dictKey) {
item.deliveryWay = c.dictValue;
}
});
this.periodOfTimeData.forEach(d => {
if (item.periodOfTime === d.dictKey) {
item.periodOfTime = d.dictValue;
}
});
let pa = [];
if (item.serveType.length > 1) {
pa = item.serveType.split(',');
} else {
pa.push(item.serveType);
}
this.addvalueServeTypeData.forEach(f => {
pa.forEach((p, index) => {
if (p === f.dictKey) {
pa[index] = f.dictValue;
}
});
});
item.serveType = pa.join(',');
});
item.serveType = pa.join(',');
});
}
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
}
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
);
},
/**

26
src/views/warehouse/parcelList/distributionParcelList.vue

@ -1,9 +1,9 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row v-if="!search">
<div v-h5uShow="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr">
<el-form :inline="true" :model="query" class="header_search">
<el-form-item label="入库时间:" class="el-times">
<el-date-picker
v-model="warehouseEntryTimeEnd"
@ -42,7 +42,7 @@
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
</div>
<el-row>
<div class="avue-crud__header">
@ -68,6 +68,7 @@
<el-row>
<!-- 列表模块 -->
<tablecmt
ref="tableNode"
:columnList="columnList"
:tableData="data"
:loading="loading"
@ -202,7 +203,7 @@ import {
import { getDictionaryBiz } from '@/api/system/dict';
import option from '@/option/distribution/distributionParcelList';
import { mapGetters } from 'vuex';
import { downloadXls, debounce } from '@/utils/util';
import { downloadXls, debounce, setNodeHeight } from '@/utils/util';
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import print from '@/utils/print';
@ -706,6 +707,8 @@ export default {
onLoad: debounce(async function (page, params = {}) {
this.loading = true;
try {
if (Object.keys(this.query).length === 0) return (this.data = []);
const res = await getpage(
page.currentPage,
page.pageSize,
@ -1001,8 +1004,17 @@ export default {
},
searchHide() {
this.search = !this.search;
setNodeHeight(this.$refs.tableNode.$el, '', true);
},
searchChange() {
if (
this.warehouseEntryTimeEnd.length === 0 &&
this.loadingTime.length === 0 &&
this.signingTime.length === 0
)
return this.$message.warning('请输入搜索条件!!!');
/** 入库时间 */
this.query.startWarehouseEntryTimeEnd = this.warehouseEntryTimeEnd[0];
this.query.lastWarehouseEntryTimeEnd = this.warehouseEntryTimeEnd[1];
@ -1024,6 +1036,12 @@ export default {
this.signingTime = [];
this.query = {};
this.page.currentPage = 1;
for (let i = 0; i < this.columnList.length; i++) {
const item = this.columnList[i];
item.values = '';
}
this.onLoad(this.page);
},
handleSubmit() {

1
src/views/warehouse/warehousesignedorder/distributionStockArticle.vue

@ -916,6 +916,7 @@ export default {
this.$message.warning('请选择至少一条数据');
return;
}
this.$store.commit('DEL_ONCE_TAG', '^/distribution/inventory/distrilbutionBillLading\\?');
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query: {

Loading…
Cancel
Save