Browse Source

货位增加限制

pre-production
马远东 8 months ago
parent
commit
51a96d19d2
  1. 1
      src/api/distribution/CreateOrder.js
  2. 34
      src/api/storagecost/index.js
  3. 44
      src/option/reportforms/DeliveryDetails.js
  4. 22
      src/option/reportforms/Selfpickupreport.js
  5. 8
      src/option/storagecost/Categorypricingunit.js
  6. 18
      src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue
  7. 56
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue
  8. 1
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue
  9. 7
      src/views/cost/Deliverycostmanagement/Basicconfiguration.vue
  10. 139
      src/views/cost/Deliverycostmanagement/Categorypricingunit.vue
  11. 84
      src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue
  12. 17
      src/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue
  13. 12
      src/views/distribution/deliverylist/distributionDeliveryList.vue
  14. 1
      src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

1
src/api/distribution/CreateOrder.js

@ -18,7 +18,6 @@ export const postOpenOrderOpenWaybill = data => {
return request({ return request({
url: '/api/logpm-trunkline/openOrder/openWaybill', url: '/api/logpm-trunkline/openOrder/openWaybill',
method: 'post', method: 'post',
data,
}); });
}; };

34
src/api/storagecost/index.js

@ -149,3 +149,37 @@ export const $_WarehouseTemplateHome = data => {
data, data,
}); });
}; };
// 配送-删除模板
export const $_removeTemplate = params => {
return request({
url: '/api/logpm-statisticsdata/expenseDispatchPriceTemplate/remove',
method: 'post',
params,
});
};
// 配送-模板-品牌品类计价单位
export const $_expenseDispatchPriceUnit = params => {
return request({
url: '/api/logpm-statisticsdata/expenseDispatchPriceUnit/page',
method: 'get',
params,
});
};
// 配送-模板-品牌品类计价单位-新增
export const $_expenseDispatchPriceUnitadd = data => {
return request({
url: '/api/logpm-statisticsdata-zqb/expenseDispatchPriceUnit/save',
method: 'post',
data,
});
};
// 配送-模板-品牌品类计价单位-修改
export const $_expenseDispatchPriceUnitupdate = data => {
return request({
url: '/api/logpm-statisticsdata-zqb/expenseDispatchPriceUnit/update',
method: 'post',
data,
});
};

44
src/option/reportforms/DeliveryDetails.js

@ -59,6 +59,50 @@ export const columnList = [
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'brand',
label: '品牌',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'signNum',
label: '签收数量',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'loadingMode',
label: '装车方式',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'signType',
label: '签收方式',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'type', prop: 'type',
label: '配送类型', label: '配送类型',

22
src/option/reportforms/Selfpickupreport.js

@ -36,6 +36,28 @@ export const columnList = [
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'brand',
label: '品牌',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'signNum',
label: '签收数量',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'consigneeUnit', prop: 'consigneeUnit',
label: '收货单位', label: '收货单位',

8
src/option/storagecost/Categorypricingunit.js

@ -7,7 +7,7 @@ export const columnList = [
fixed: true, fixed: true,
}, },
{ {
prop: 'xh', prop: '',
label: '序号', label: '序号',
type: 12, type: 12,
values: '', values: '',
@ -15,7 +15,7 @@ export const columnList = [
fixed: true, fixed: true,
}, },
{ {
prop: 'a1', prop: 'categoryId',
label: '成本结算品类', label: '成本结算品类',
type: 2, type: 2,
values: '', values: '',
@ -27,7 +27,7 @@ export const columnList = [
}, },
{ {
prop: 'a3', prop: 'unit',
label: '计价单位', label: '计价单位',
type: 1, type: 1,
values: '', values: '',
@ -38,7 +38,7 @@ export const columnList = [
head: false, head: false,
}, },
{ {
prop: 'createUserName', prop: '',
label: '操作', label: '操作',
type: 6, type: 6,
values: '', values: '',

18
src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue

@ -173,7 +173,15 @@
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item label="货区名称:" prop="headline" label-width="110px"> <el-form-item label="货区名称:" prop="headline" label-width="110px">
<el-input v-model="form.headline" placeholder="请输入标题" style="width: 100%" /> <!-- <el-input v-model="form.headline" placeholder="请输入标题" style="width: 100%" /> -->
<el-input
v-model="form.headline"
style="width: 100%"
placeholder="请输入货区"
@input="headlineinput"
>
<template #append></template>
</el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -614,6 +622,7 @@ export default {
this.buttonLoadingList.handleSubmitBtn = true; this.buttonLoadingList.handleSubmitBtn = true;
try { try {
if (!this.form.id) { if (!this.form.id) {
this.form.headline=this.form.headline+'区'
add(this.form).then(() => { add(this.form).then(() => {
this.box = false; this.box = false;
this.isShow = false; this.isShow = false;
@ -624,6 +633,7 @@ export default {
}); });
}); });
} else { } else {
this.form.headline=this.form.headline+'区'
update(this.form).then(() => { update(this.form).then(() => {
this.box = false; this.box = false;
this.onLoad(this.page); this.onLoad(this.page);
@ -659,6 +669,7 @@ export default {
this.aaa = true; this.aaa = true;
getDetail(row.id).then(res => { getDetail(row.id).then(res => {
this.form = res.data.data; this.form = res.data.data;
this.headlineinput(this.form.headline)
console.log(this.form); console.log(this.form);
}); });
}, },
@ -693,6 +704,11 @@ export default {
}); });
}); });
}, },
headlineinput(data){
if (data.includes('区')) {
this.form.headline = data.replace('区', '');
}
},
handleExports() { handleExports() {
if (this.selectionList.length === 0) { if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据'); this.$message.warning('请选择至少一条数据');

56
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue

@ -166,11 +166,19 @@
<!-- </el-col>--> <!-- </el-col>-->
<el-col :span="12" v-if="!allocation"> <el-col :span="12" v-if="!allocation">
<el-form-item label="货架名称:" prop="goodsShelfName" label-width="100px"> <el-form-item label="货架名称:" prop="goodsShelfName" label-width="100px">
<el-input <!-- <el-input
v-model="form.goodsShelfName" v-model="form.goodsShelfName"
placeholder="请输入货架名称" placeholder="请输入货架名称"
style="width: 88%" style="width: 88%"
/> /> -->
<el-input
v-model.trim="form.goodsShelfName"
style="width: 100%"
placeholder="请输入货架名称"
@input="headlineinput"
>
<template #append></template>
</el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12" v-if="allocation"> <el-col :span="12" v-if="allocation">
@ -338,7 +346,8 @@
width="600px" width="600px"
v-model="dialogVisible" v-model="dialogVisible"
> >
<div> <div class="el_ewm" v-loading="ewmloading"
element-loading-text="二维码加载中...">
<!-- <div v-for="(item,index) in qrCodeObj" class="pdf-dom">--> <!-- <div v-for="(item,index) in qrCodeObj" class="pdf-dom">-->
<!-- <el-divider></el-divider>--> <!-- <el-divider></el-divider>-->
@ -375,10 +384,17 @@
> >
<template #menu-left> <template #menu-left>
<el-button type="warning" plain icon="el-icon-camera" @click="handleqr" <el-button type="warning" plain icon="el-icon-camera" @click="handleqr"
>查看二维码 >批量查看二维码
</el-button> </el-button>
</template> </template>
<template #menu="{ size, row, index }"> <template #menu="{ size, row, index }">
<el-button
type="primary"
text
icon="el-icon-view"
@click="viewhandleqr(row)"
>查看二维码</el-button
>
<el-button <el-button
type="primary" type="primary"
text text
@ -455,6 +471,7 @@ export default {
goodsAreaId: null, goodsAreaId: null,
}, },
form2: {}, form2: {},
ewmloading:true,
box2: false, box2: false,
form3: {}, form3: {},
box3: false, box3: false,
@ -670,7 +687,7 @@ export default {
searchMenuSpan: 6, searchMenuSpan: 6,
border: true, border: true,
index: true, index: true,
viewBtn: true, viewBtn: false,
selection: true, selection: true,
editBtn: false, editBtn: false,
delBtn: false, delBtn: false,
@ -992,6 +1009,7 @@ export default {
return; return;
} }
this.ewmloading=true;
let checkcode = []; let checkcode = [];
this.allselectionList.map(item => { this.allselectionList.map(item => {
checkcode.push(item.id); checkcode.push(item.id);
@ -1007,6 +1025,22 @@ export default {
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
}); });
this.dialogVisible = true; this.dialogVisible = true;
this.ewmloading=false;
},
viewhandleqr(row){
console.log(row);
let ids = row.id;
this.html = '';
this.ewmloading=true;
getPrintTemplate({ ids }).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisible = true;
this.ewmloading=false;
}, },
// childrenundefined // childrenundefined
formatCascaderData(data) { formatCascaderData(data) {
@ -1123,6 +1157,7 @@ export default {
handleSubmit() { handleSubmit() {
if (this.allocation) { if (this.allocation) {
console.log('this.form>>>>>>>货位', this.form); console.log('this.form>>>>>>>货位', this.form);
addAllocation(this.form).then(() => { addAllocation(this.form).then(() => {
this.box = false; this.box = false;
this.onLoad(this.page); this.onLoad(this.page);
@ -1148,6 +1183,7 @@ export default {
// this.form.goodsAreaName = item.headline // this.form.goodsAreaName = item.headline
// } // }
// }) // })
this.form.goodsShelfName=this.form.goodsShelfName+'排'
add(this.form).then(() => { add(this.form).then(() => {
this.box = false; this.box = false;
this.onLoad(this.page); this.onLoad(this.page);
@ -1157,6 +1193,7 @@ export default {
}); });
}); });
} else { } else {
this.form.goodsShelfName=this.form.goodsShelfName+'排'
update(this.form).then(() => { update(this.form).then(() => {
this.box = false; this.box = false;
this.onLoad(this.page); this.onLoad(this.page);
@ -1193,6 +1230,7 @@ export default {
this.idShowStatus = true; this.idShowStatus = true;
getDetail(row.id).then(res => { getDetail(row.id).then(res => {
this.form = res.data.data; this.form = res.data.data;
this.headlineinput(this.form.goodsShelfName)
console.log('>>>>>>>>>>', this.form); console.log('>>>>>>>>>>', this.form);
//TODO //TODO
}); });
@ -1223,6 +1261,11 @@ export default {
}); });
}); });
}, },
headlineinput(data){
if (data.includes('排')) {
this.form.goodsShelfName = data.replace('排', '');
}
},
handleDelete() { handleDelete() {
if (this.selectionList.length === 0) { if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据'); this.$message.warning('请选择至少一条数据');
@ -1493,4 +1536,7 @@ export default {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.el_ewm{
min-height: 300px;
}
</style> </style>

1
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue

@ -2667,6 +2667,7 @@ const {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-start; justify-content: flex-start;
padding: 10px 0;
// width: 6000px; // width: 6000px;
} }
.item { .item {

7
src/views/cost/Deliverycostmanagement/Basicconfiguration.vue

@ -78,12 +78,13 @@ const nextstep = () => {
$_WarehouseTemplateHome(data).then(res => { $_WarehouseTemplateHome(data).then(res => {
console.log(res, '新增成功'); console.log(res, '新增成功');
if(res.data.code ==200){ if(res.data.code ==200){
emit('request-data',{id:res.data.data}); //
console.log(props, '最新参数');
} }
}); });
return; return;
emit('request-data', '给父页面传递的参数:'); //
console.log(props, '最新参数');
}; };
</script> </script>

139
src/views/cost/Deliverycostmanagement/Categorypricingunit.vue

@ -17,7 +17,9 @@
<!-- 控件模块 --> <!-- 控件模块 -->
<el-row> <el-row>
<div class="avue-crud__header"> <div class="avue-crud__header">
<div class="avue-crud__left"></div> <div class="avue-crud__left">
<el-button type="primary" icon="el-icon-search" @click="addCategory"> </el-button>
</div>
<div class="avue-crud__right"> <div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> <el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> <el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
@ -69,13 +71,29 @@
</div> </div>
</el-row> </el-row>
</div> </div>
<el-dialog v-model="dialogedit" title="编辑" width="40%"> <el-dialog v-model="dialogedit" :title="categorytitle" width="40%">
<el-form :model="form" class="elform"> <el-form :model="form" class="elform">
<el-form-item label="成本结算品类"> <el-form-item label="成本结算品类">
<el-input v-model.trim="form.name" placeholder="暂无成本结算品类" disabled /> <el-select
v-model="form.categoryId"
filterable
remote
reserve-keyword
placeholder="请输入成本结算品类"
:remote-method="remoteMethod"
:loading="Methodloading"
style="width: 240px"
>
<el-option
v-for="item in categoryList"
:key="item.goodsId"
:label="item.goodsName"
:value="item.goodsId"
/>
</el-select>
</el-form-item> </el-form-item>
<el-form-item label="计价单位"> <el-form-item label="计价单位">
<el-select v-model="form.value" placeholder="请选择计价单位" style="width: 240px"> <el-select v-model="form.unit" placeholder="请选择计价单位" style="width: 240px">
<el-option <el-option
v-for="item in Pricingunit" v-for="item in Pricingunit"
:key="item.value" :key="item.value"
@ -88,7 +106,7 @@
<template #footer> <template #footer>
<div class="dialog-footer"> <div class="dialog-footer">
<el-button @click="dialogedit = false">取消</el-button> <el-button @click="dialogedit = false">取消</el-button>
<el-button type="primary" @click="dialogVisible = false"> 确定 </el-button> <el-button type="primary" @click="Categoryaddition"> 确定 </el-button>
</div> </div>
</template> </template>
</el-dialog> </el-dialog>
@ -106,36 +124,27 @@
<script setup> <script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/storagecost/Categorypricingunit.js'; import { columnList } from '@/option/storagecost/Categorypricingunit.js';
import {
$_expenseDispatchPriceUnit,
$_expenseDispatchPriceUnitadd,
$_expenseDispatchPriceUnitupdate,
} from '@/api/storagecost/index.js';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { getDictionaryBiz } from '@/api/system/dict'; // import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util'; import { processRowProperty, setNodeHeight } from '@/utils/util';
import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus'; import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util'; import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex'; import { useStore } from 'vuex';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
const categorytitle = ref('新增');
const $router = useRouter(); // const $router = useRouter(); //
const $useStore = useStore(); // const $useStore = useStore(); //
const Methodloading = ref(false);
const $route = useRoute(); // const $route = useRoute(); //
const dialogedit = ref(false); // const dialogedit = ref(false); //
const form = ref({}); const form = ref({});
const Pricingunit=ref([ const categoryList = ref([]); //
{ const Pricingunit = ref([]);
value: '1',
label: '按件',
},
{
value: '2',
label: '按方',
},
{
value: '3',
label: '按重量',
},
{
value: '4',
label: '按吨',
},
])
const details = reactive({ const details = reactive({
/** 是否开启搜索 */ /** 是否开启搜索 */
search: false, search: false,
@ -177,7 +186,7 @@ const details = reactive({
columnList, columnList,
/** 列表数据 */ /** 列表数据 */
data: [{}], data: [],
/** 页面loading */ /** 页面loading */
loadingObj: { loadingObj: {
/** 列表加载loading */ /** 列表加载loading */
@ -269,19 +278,21 @@ const selectionChange = list => {
}; };
// //
const searchChange = () => { const searchChange = () => {
details.search = false; // onLoad();
}; };
// //
const sizeChange = val => { const sizeChange = val => {
page.value.pageSize = val; details.page.pageSize = val;
onLoad();
}; };
/** 页码改变执行的回调 */ /** 页码改变执行的回调 */
const currentChange = val => { const currentChange = val => {
page.value.currentPage = val; details.page.currentPage = val;
onLoad();
}; };
// //
const searchChangeS = () => { const searchChangeS = () => {
details.search = false; // onLoad();
}; };
// //
const searchHide = () => { const searchHide = () => {
@ -302,14 +313,80 @@ function updateDictionary(targetArray, dictionaryType) {
}); });
}); });
} }
//
const onLoad = () => {};
//
const onLoad = value => {
let data = {
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
...value,
};
details.loadingObj.list = true;
$_expenseDispatchPriceUnit(data)
.then(res => {
if (res.data.code == 200) {
details.data = res.data.data.records || [];
details.page.total = res.data.data.total; //
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
details.loadingObj.list = false;
});
};
const PageOnload = () => {
updateDictionary(Pricingunit.value, 'expense_pricing_unit');
onLoad(); //
};
//
PageOnload();
// //
const handleEdit = row => { const handleEdit = row => {
console.log(row); console.log(row);
dialogedit.value = true; dialogedit.value = true;
}; };
//
const addCategory = () => {
dialogedit.value = true;
};
const remoteMethod = goodsName => {
if (goodsName) {
Methodloading.value = true;
let data = {
goodsName: goodsName,
};
postFindCategoryInfo(data)
.then(res => {
console.log(res, '品类');
if (res.data.code == 200) {
categoryList.value = res.data.data;
}
})
.catch(() => {})
.finally(() => {
Methodloading.value = false;
});
}
};
//
const Categoryaddition = () => {
let data = {
categoryId: form.value.categoryId, //
unit: form.value.unit, //
};
if (categorytitle.value == '新增') {
$_expenseDispatchPriceUnitadd(data).then(res => {
console.log(res, '新增成功');
});
} else {
$_expenseDispatchPriceUnitupdate(data).then(res => {
console.log(res, '修改成功');
});
}
};
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

84
src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue

@ -81,7 +81,8 @@
> >
<template #default="slotProps"> <template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'"> <template v-if="slotProps.scope.column.label === '操作'">
<el-text size="small" @click="EditTemplate(slotProps.scope.row)"> </el-text> <el-text size="small" @click="EditTemplate(slotProps.scope.row)"> </el-text>
<el-text size="small" @click="deleteTemplate(slotProps.scope.row)"> </el-text>
</template> </template>
</template> </template>
</tablecmt> </tablecmt>
@ -122,17 +123,22 @@
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/storagecost/WarehousePricingTemplate.js'; import { columnList } from '@/option/storagecost/WarehousePricingTemplate.js';
import { getDictionaryBiz } from '@/api/system/dict'; // import { getDictionaryBiz } from '@/api/system/dict'; //
import { $_getMyWarehouseList ,$_WarehousePricingTemplate} from '@/api/storagecost/index.js'; import {
$_getMyWarehouseList,
$_WarehousePricingTemplate,
$_removeTemplate,
} from '@/api/storagecost/index.js';
import { processRowProperty, setNodeHeight } from '@/utils/util'; import { processRowProperty, setNodeHeight } from '@/utils/util';
import functions from '@/utils/functions.js'; import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus'; import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util'; import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex'; import { useStore } from 'vuex';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import error from '@/error';
const $router = useRouter(); // const $router = useRouter(); //
const $useStore = useStore(); // const $useStore = useStore(); //
const $route = useRoute(); // const $route = useRoute(); //
const queryTop=ref({}) const queryTop = ref({});
const warehouseList = ref([]); const warehouseList = ref([]);
const details = reactive({ const details = reactive({
/** 是否开启搜索 */ /** 是否开启搜索 */
@ -267,7 +273,7 @@ const selectionChange = list => {
}; };
// //
const searchChange = () => { const searchChange = () => {
details.search = false; // onLoad()
}; };
// //
const sizeChange = val => { const sizeChange = val => {
@ -309,18 +315,20 @@ const onLoad = value => {
...details.query, ...details.query,
...value, ...value,
}; };
details.loadingObj.list=true; details.loadingObj.list = true;
$_WarehousePricingTemplate(data).then(res => { $_WarehousePricingTemplate(data)
if (res.data.code == 200) { .then(res => {
details.data = res.data.data.records || []; if (res.data.code == 200) {
details.page.total = res.data.data.total; // details.data = res.data.data.records || [];
} details.page.total = res.data.data.total; //
}).catch((error)=>{ }
console.log(error); })
}).finally(()=>{ .catch(error => {
details.loadingObj.list=false; console.log(error);
}); })
; .finally(() => {
details.loadingObj.list = false;
});
}; };
// //
const MyWarehouseList = () => { const MyWarehouseList = () => {
@ -335,27 +343,57 @@ const MyWarehouseList = () => {
}); });
}; };
// //
const EditTemplate = (row) => { const EditTemplate = row => {
$router.push({ $router.push({
path: '/cost/Deliverycostmanagement/WarehouseTemplateHome', path: '/cost/Deliverycostmanagement/WarehouseTemplateHome',
query:{ query: {
id:row.id id: row.id,
} },
}); });
}; };
//
const deleteTemplate = row => {
ElMessageBox.confirm('是否删除该模板?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
let data = {
ids: row.id,
};
details.loadingObj.list = true;
$_removeTemplate(data).then(res => {
console.log(res, '删除成功');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
onLoad();
}
});
})
.catch(error => {
console.log(error);
})
.finally(() => {
details.loadingObj.list = false;
})
.catch(() => {});
};
const PageOnload = () => { const PageOnload = () => {
MyWarehouseList(); // MyWarehouseList(); //
onLoad(); // onLoad(); //
}; };
// //
PageOnload(); PageOnload();
const lyadded=()=>{ const lyadded = () => {
$router.push({ $router.push({
path: '/cost/Deliverycostmanagement/WarehouseTemplateHome', path: '/cost/Deliverycostmanagement/WarehouseTemplateHome',
}); });
} };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

17
src/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue

@ -33,7 +33,7 @@
import { ref, defineAsyncComponent } from 'vue'; import { ref, defineAsyncComponent } from 'vue';
import { ElMessage } from 'element-plus'; import { ElMessage } from 'element-plus';
import { $_getMyWarehouseList } from '@/api/storagecost/index.js'; import { $_getMyWarehouseList } from '@/api/storagecost/index.js';
const templateInfo=ref({a:'1'});// const templateInfo=ref({});//
const active = ref(1); const active = ref(1);
// //
// const WarehouseTemplate = defineAsyncComponent(() => // const WarehouseTemplate = defineAsyncComponent(() =>
@ -63,25 +63,14 @@ const input = ref('');
const handleClick = (tab, event) => { const handleClick = (tab, event) => {
console.log(tab, event); console.log(tab, event);
}; };
//
const nextstep = () => {
if (active.value == 4) {
ElMessage({
message: '已经最后一步了',
type: 'warning',
});
return;
}
active.value++;
};
const onLoad=()=>{ const onLoad=()=>{
} }
onLoad(); onLoad();
const provideData=(data)=>{ const provideData=(data)=>{
console.log(data,'数据'); templateInfo.value={...data}
} }
</script> </script>

12
src/views/distribution/deliverylist/distributionDeliveryList.vue

@ -330,7 +330,7 @@ import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import print from '@/utils/print'; import print from '@/utils/print';
import { getBillLadingExport } from '@/api/distribution/distrilbutionBillLading'; import { getBillLadingExport } from '@/api/distribution/distrilbutionBillLading';
import { downloadXls, getObjType, setNodeHeight } from '@/utils/util'; import { downloadXls, getObjType, setNodeHeight } from '@/utils/util';
import dayjs from 'dayjs';
export default { export default {
data() { data() {
return { return {
@ -1088,7 +1088,15 @@ export default {
params.taskTimeStart = this.query.taskTimeArr[0]; params.taskTimeStart = this.query.taskTimeArr[0];
params.taskTimeEnd = this.query.taskTimeArr[1]; params.taskTimeEnd = this.query.taskTimeArr[1];
} }
//
const currentDate = dayjs();
//
const startDate = currentDate.subtract(1, 'month');
// 'YYYY-MM-DD'
const formatDate = (date) => date.format('YYYY-MM-DD');
this.query.taskTimeArr = []
this.query.taskTimeArr[0] = formatDate(startDate), //
this.query.taskTimeArr[1] = formatDate(currentDate) //
getPage(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { getPage(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data; const data = res.data.data;
// eslint-disable-next-line no-empty // eslint-disable-next-line no-empty

1
src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

@ -141,7 +141,6 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item label="备注" prop="remark"> <el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="备注" /> <el-input v-model="form.remark" type="textarea" placeholder="备注" />

Loading…
Cancel
Save