Browse Source

市配配送计划页面调整

dev-warehouse
kilo 2 years ago
parent
commit
a7cb54f276
  1. 38
      src/option/distribution/distributionReservation.js
  2. 18
      src/option/distribution/distributionStockArticle.js
  3. 27
      src/router/views/index.js
  4. 8
      src/views/distribution/reservation/atlas.vue
  5. 167
      src/views/distribution/reservation/reservation.vue
  6. 8
      src/views/distribution/reservation/reservationDetails.vue
  7. 233
      src/views/distribution/reservation/reservationFrom.vue
  8. 1
      src/views/distribution/stockup/distributionStockup.vue
  9. 10
      src/views/distribution/stockup/distributionStockupMarket.vue
  10. 7
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  11. 935
      src/views/distribution/turndelivery/deliveryInfo.vue
  12. 947
      src/views/distribution/turndelivery/deliveryMarket.vue
  13. 49
      src/views/reservation/order_list.vue
  14. 1170
      src/views/reservation/order_listFrom.vue

38
src/option/distribution/distributionReservation.js

@ -87,21 +87,45 @@ export default {
{
label: '时段',
prop: 'periodOfTime',
width: '100',
hide: true,
},
{
label: '时段',
prop: 'periodOfTimeName',
width: '100'
},
{
label: '配送方式',
prop: 'deliveryWay',
width: '100',
hide: true,
},
{
label: '配送方式',
prop: 'deliveryWayName',
width: '100'
},
{
label: '配送类型',
prop: 'deliveryType',
width: '100'
width: '100',
hide: true,
},
{
label: '配送类型',
prop: 'deliveryTypeName',
width: '100',
},
{
label: '服务类型',
prop: 'serveType',
width: '100',
hide: true,
},
{
label: '服务类型',
prop: 'serveTypeName',
width: '100'
},
{
@ -127,6 +151,12 @@ export default {
{
label: '预约信息状态',
prop: 'reservationStatus',
width: '120',
hide: true,
},
{
label: '预约信息状态',
prop: 'reservationStatusName',
width: '120'
},
{
@ -138,6 +168,12 @@ export default {
{
label: '备货状态',
prop: 'stockupStatus',
width: '100',
hide: true,
},
{
label: '备货状态',
prop: 'stockupStatusName',
width: '100'
},
{

18
src/option/distribution/distributionStockArticle.js

@ -534,6 +534,10 @@ export default {
prop: 'descriptionGoods',
search: true
},
{
label: '预约状态',
prop: 'reservationStatusName'
},
{
label: '仓库',
prop: 'warehouse',
@ -560,16 +564,16 @@ export default {
prop: 'completeSetName',
search: true
},
// {
// label: '服务类型',
// prop: 'typeService',
// search: true
// },
{
label: '品牌',
prop: 'brand',
search: true
},
{
label: '服务类型',
prop: 'typeService',
search: true
},
{
label: '顾客名字',
prop: 'customerName'
@ -578,6 +582,10 @@ export default {
label: '顾客电话',
prop: 'customerTelephone'
},
{
label: '可用数量',
prop: 'applyNum'
},
{
label: '顾客地址',
prop: 'customerAddress'

27
src/router/views/index.js

@ -450,15 +450,15 @@ export default [
// ],
// },
{
path: '/distribution/turndelivery/deliveryInfo',
path: '/distribution/turndelivery/deliveryMarket',
component: Layout,
redirect: '/distribution/turndelivery/deliveryInfo',
redirect: '/distribution/turndelivery/deliveryMarket',
children: [
{
path: '/distribution/turndelivery/deliveryInfo',
path: '/distribution/turndelivery/deliveryMarket',
name: 'name',
id:'id',
component: () => import('@/views/distribution/turndelivery/deliveryInfo.vue'),
component: () => import('@/views/distribution/turndelivery/deliveryMarket.vue'),
},
],
},
@ -719,6 +719,25 @@ export default [
},
],
},
{
path: '/reservation/order_listFrom',
component: Layout,
redirect: '/reservation/order_listFrom',
children: [
{
path: '/distribution/reservation/order_listFrom',
name: '自提明细',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/reservation/order_listFrom.vue'),
},
],
},
// {
// path: '/distribution/inventory/distributionPrints',
// component: Layout,

8
src/views/distribution/reservation/atlas.vue

@ -137,7 +137,7 @@ export default {
}
details.loading = true;
getReservationAddr(ids).then(res => {
res.data.data.forEach(item => {
res.data.data.records.forEach(item => {
details.ids.split(',').forEach(id => {
if (item.id == id) {
details.reservationIds.push(item.id);
@ -145,9 +145,9 @@ export default {
});
});
console.log(details.reservationIds);
details.reservationData = res.data.data;
details.reservationData = res.data.data.records;
details.addressList = res.data.data;
details.addressList = res.data.data.records;
});
details.loading = false;
}
@ -155,7 +155,7 @@ export default {
console.log('>>>>>>>>>>>', details.reservationIds);
let ids = details.reservationIds.join(',');
router.push({
path: '/distribution/turndelivery/deliveryInfo',
path: '/distribution/turndelivery/deliveryMarket',
query: {
id: ids,
name:'市配计划'

167
src/views/distribution/reservation/reservation.vue

@ -96,7 +96,7 @@
<el-button size="small" @click="cancelReservation(slotProps.scope)">取消预约</el-button>
<br/>
<!-- ${{slotProps.scope}}-->
<el-button v-if="this.query.reservationStatus==='1'?true:false " type="small" @click="confirmReservation(slotProps.scope)">确认预约</el-button>
<el-button v-if="this.query.reservationStatus==='1'?true:false " size="small" @click="confirmReservation(slotProps.scope)">确认预约</el-button>
</template>
</tablecmt>
<!-- <el-popover :visible="visible" placement="top-start" :width="160">-->
@ -242,6 +242,7 @@
import { getListOwn } from '@/api/system/user';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import dayjs from 'dayjs';
export default {
data() {
@ -278,6 +279,16 @@
sortable: true,
head: false
},
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true
},
{
prop: 'consignee',
label: '收货人',
@ -301,19 +312,9 @@
{
prop: 'deliveryPhone',
label: '收件人电话',
type: 3,
type: 2,
values: '',
width: '180',
checkarr: [
{
label: '1231213',
value: '123121123'
},
{
label: '112121',
value: '12312123111123'
}
],
fixed: false,
sortable: true
},
@ -329,18 +330,55 @@
},
{
prop: 'periodOfTime',
label: '时段1',
type: 3,
values: '',
width: '180',
checkarr: [
{
label: '上午',
value: '1'
},
{
label: '下午',
value: '2'
},
{
label: '全天',
value: '3'
},
],
fixed: false,
sortable: true,
head:true,
},
{
prop: 'periodOfTimeName',
label: '时段',
type: 4,
type: 3,
values: '',
width: '180',
checkarr: [],
checkarr: [
{
label: '上午',
value: '1'
},
{
label: '下午',
value: '2'
},
{
label: '全天',
value: '3'
},
],
fixed: false,
sortable: true
},
{
prop: 'deliveryWay',
label: '配送方式',
type: 2,
type: 3,
values: '',
width: '150',
checkarr: [],
@ -348,18 +386,38 @@
sortable: true,
head: true
},
// {
// prop: 'deliveryType',
// label: '',
// type: 3,
// values: '',
// width: '150',
// checkarr: [
// {
// label: '',
// value: '1',
// },
// {
// label: '',
// value: '2'
// },
// ],
// fixed: false,
// sortable: true
// },
{
prop: 'deliveryType',
label: '配送类型',
prop: 'serveType',
label: '服务类型1',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true
sortable: true,
head:true,
},
{
prop: 'serveType',
prop: 'serveTypeName',
label: '服务类型',
type: 2,
values: '',
@ -389,8 +447,8 @@
sortable: true
},
{
prop: 'collectFee',
label: '到付运费',
prop: 'collectionFee',
label: '待收货款',
type: 2,
values: '',
width: '150',
@ -410,7 +468,7 @@
},
{
prop: 'replaceFee',
label: '代运费',
label: '代运费',
type: 2,
values: '',
width: '150',
@ -418,25 +476,37 @@
fixed: false,
sortable: true
},
// {
// prop: 'fee',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true
// },
{
prop: 'fee',
label: '总费用',
type: 2,
prop: 'reservationStatus',
label: '预约信息状态1',
type: 4,
values: '',
width: '150',
width: '180',
checkarr: [],
fixed: false,
sortable: true
sortable: true,
hide: true,
},
{
prop: 'reservationStatus',
prop: 'reservationStatusName',
label: '预约信息状态',
type: 4,
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true
sortable: true,
},
{
prop: 'orderSource',
@ -458,16 +528,16 @@
fixed: false,
sortable: true
},
{
prop: 'goodsAreaName',
label: '备货区',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true
},
// {
// prop: 'goodsAreaName',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true
// },
// {
// prop: 'goodsAreaId',
// label: '',
@ -489,16 +559,7 @@
// fixed: false,
// sortable: true,
// },
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true
},
// {
// prop: 'notes',
// label: '',
@ -972,8 +1033,9 @@
}
let data = this.selectionList;
let a=[];
console.log(">>>>>>>>>>>>>",data);
data.forEach(d=>{
if (d.stockupStatus !== "未备货"){
if (d.stockupStatus === "1" ){
a.push(d.reservationCode);
}
})
@ -982,6 +1044,8 @@
return;
}
this.dialogFormCustomer = true;
this.info.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss')
this.getFork();
this.getTeam();
},
@ -994,7 +1058,6 @@
this.info.goodsAreaName = item.dictValue
}
})
confirms(this.info).then(res => {
this.$message({
type: 'success',

8
src/views/distribution/reservation/reservationDetails.vue

@ -11,15 +11,15 @@
<el-col :xl="5" :lg="7" :md="8" :sm="24">
<span>预约单号{{reservationData.reservationCode}} </span>
</el-col>
<el-col :xl="5" :lg="7" :md="8" :sm="24">
<span>商场名称{{reservationData.mallName}} </span>
</el-col>
<!-- <el-col :xl="5" :lg="7" :md="8" :sm="24">-->
<!-- <span>商场名称{{reservationData.mallName}} </span>-->
<!-- </el-col>-->
<el-col :xl="5" :lg="7" :md="8" :sm="24">
<span>预约时间{{reservationData.reservationDate}} </span>
</el-col>
<el-col :xl="3" :lg="7" :md="8" :sm="24">
<!-- <span>服务类型{{reservationData.deliveryType}}</span>-->
<span>市配</span>
<span>服务类型市配</span>
</el-col>
</el-row>
<el-divider>收货人信息</el-divider>

233
src/views/distribution/reservation/reservationFrom.vue

@ -5,7 +5,8 @@
<el-form ref="form"
:model="form"
prop="consignee"
label-width="80px">
label-width="80px"
:rules="reservationRules">
<el-row>
<el-col :span="10">
<el-form-item label="收货人:" prop="consignee" label-width="100px">
@ -31,7 +32,7 @@
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="时&emsp;&emsp;段:" prop="deliveryAddress" label-width="100px">
<el-form-item label="时&emsp;&emsp;段:" prop="periodOfTime" label-width="100px">
<el-radio-group v-model="form.periodOfTime" v-for="item in this.periodOfTimeData">
<el-radio
@ -54,8 +55,8 @@
<el-col :span="10">
<el-form-item label="配送类型:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryTypeData"-->
<el-radio-group v-model="form.deliveryType" >
<!-- v-for="item in this.deliveryTypeData"-->
<el-radio-group v-model="form.deliveryType">
<el-radio
:label="'2'"
:value="'2'">市配&emsp;
@ -68,19 +69,14 @@
<el-row>
<el-col :span="10">
<el-form-item label="备注:" prop="orderSource" label-width="100px" style="width: 100%">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
<el-form-item label="代收运费:" prop="replaceFee" label-width="100px">
<el-input v-model="form.replaceFee" :disabled="true"/>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="配送方式:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryWayData"-->
<el-radio-group v-model="form.deliveryWay" >
<!-- v-for="item in this.deliveryWayData"-->
<el-radio-group v-model="form.deliveryWay">
<el-radio :label="'1'"
:value="'1'">送货&emsp;
</el-radio>
@ -92,14 +88,38 @@
</el-row>
<el-row>
<!-- <el-col :span="10">-->
<!-- <el-form-item label="到付运费:" prop="collectFee" label-width="100px">-->
<!-- <el-input type="number" v-model="form.collectFee" :disabled="true"/>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="10">
<el-form-item label="到付运费:" prop="collectFee" label-width="100px">
<el-input type="number" v-model="form.collectFee" :disabled="true"/>
<el-form-item label="待收货款:" prop="collectionFee" label-width="100px">
<el-input type="number" v-model="form.collectionFee"/>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="加&emsp;&emsp;急:" prop="serveType" label-width="100px">
<!-- v-for="item in this.deliveryWayData"-->
<el-radio-group v-model="form.isUrgent" v-for="item in this.whetherData">
<el-radio
:label="item.dictKey"
:value="item.dictKey">{{item.dictValue}}&emsp;
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="增值服务类型:" prop="serveType" label-width="100px">
<el-form-item label="其他费用:" prop="collectFee" label-width="100px">
<el-input v-model="form.otherFee" placeholder="请输入其他费用"/>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="增值服务类型:" prop="serveType" label-width="120px">
<el-checkbox-group v-model="serveType" v-for="item in this.addvalueServeTypeData">
<el-checkbox :label="item.dictKey"
:value="item.dictKey">{{item.dictValue}}&emsp;
@ -107,16 +127,19 @@
</el-checkbox-group>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="代收运费:" prop="replaceFee" label-width="100px">
<el-input v-model="form.replaceFee" :disabled="true"/>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="其他费用:" prop="collectFee" label-width="100px">
<el-input v-model="form.otherFee" placeholder="请输入其他费用"/>
<el-form-item label="备注:" prop="orderSource" label-width="100px" style="width: 100%">
<el-input
type="textarea"
:rows="1"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
@ -154,9 +177,9 @@
@click="viewStockArticlePackage(row)">查看包件
</el-button>
<!-- 2023 07 25 取消增值服务 -->
<!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)">增值服务-->
<!-- </el-button>-->
<!-- 2023 07 25 取消增值服务 -->
<!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)">增值服务-->
<!-- </el-button>-->
<el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)">移除
</el-button>
@ -210,8 +233,8 @@
title="在库订单信息"
width="100%"
:model="addvalue"
>
<!-- :before-close="handleClose"-->
>
<!-- :before-close="handleClose"-->
<el-form :inline="true" :model="query">
<el-form-item label="订单自编号:">
<el-input v-model="query.orderCode" placeholder="请输入商场名称"></el-input>
@ -271,8 +294,8 @@
v-model="stockListShow"
title="库存品信息"
width="100%"
>
<!-- :before-close="handleClose"-->
>
<!-- :before-close="handleClose"-->
<el-form :inline="true" :model="query">
<el-form-item label="商场名称:">
<el-input v-model="query.marketName" placeholder="请输入服务类型"></el-input>
@ -487,6 +510,7 @@
addvalueServeTypeData: [],
//
deliveryWayData: [],
whetherData:[],
//
deliveryTypeData: [],
//
@ -521,7 +545,21 @@
stockListShow: false,
isaddvalue: false,
packageData: [],
packageList: []
packageList: [],
reservationRules: {
consignee: [
{ required: true, message: '请填写收货人名称!!!', trigger: 'change' }
],
deliveryAddress: [
{ required: true, message: '请填写收货人地址!!!', trigger: 'blur' }
],
deliveryPhone: [
{ required: true, message: '请填写收货人电话!!!', trigger: 'change' }
],
// enableStatus: [
// { required: true, message: '!', trigger: 'change' }
// ],
},
};
},
created() {
@ -592,7 +630,7 @@
params.id = this.orderInfo.id;
params.addvalue = addvalueInfos;
params.relatedId = 1;
console.log("params>>>>>>>>>>>>",params);
console.log('params>>>>>>>>>>>>', params);
addIncrement(params).then(res => {
this.dialogVisible = false;
this.$message({
@ -604,27 +642,64 @@
},
//
handleAddOrder() {
this.query.typeService=2;
this.query.genre = "1";
let page =this.page;
let params = {};
selectStockArticleList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{
const data = res.data.data;
data.records.forEach(item => {
item.reservationNum = item.handQuantity;
console.log('$$$$$$', this.reservationId);
if (this.reservationId) {
//使使
this.query.typeService = 2;
this.query.genre = '1';
//
let page = this.page;
let params = {};
selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
console.log('$$$$$$$$>', res);
let orderData = res.data.data;
console.log('$$$$$$$$', orderData);
orderData.records.forEach((item, index) => {
item.reservationNum = item.handQuantity;
// if ()
//
// if (item.reservationStatus !== '30' ){
// a.push(item)
// }
});
this.page.total = orderData.total;
this.stockArticleInfo = orderData;
this.loading = false;
this.selectionClear();
});
this.page.total = data.total;
this.stockArticleInfo = data.records;
this.loading = false;
this.selectionClear();
})
this.selectionList = [];
} else {
this.query.typeService = 2;
this.query.genre = '1';
let page = this.page;
let params = {};
selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
let data = res.data.data;
let a = [];
console.log('$$$$$$$$', data);
data.records.forEach((item, index) => {
item.reservationNum = item.handQuantity;
//
if (item.reservationStatus !== '30') {
a.push(item);
}
});
console.log('$$$$$$$$', a);
this.page.total = data.total;
this.stockArticleInfo = a;
this.loading = false;
this.selectionClear();
});
this.selectionList = [];
}
this.orderShow = true;
},
handleAddInventory() {
let page =this.page;
let page = this.page;
let params = {};
this.query.serviceType = "2";
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 => {
@ -687,6 +762,9 @@
getDictionaryBiz('period_of_time').then(res => {
this.periodOfTimeData = res.data.data;
});
getDictionaryBiz('yes_no').then(res => {
this.whetherData = res.data.data;
});
},
addvalueServe(row) {
//
@ -721,12 +799,12 @@
});
},
//
searchStockArticle(){
let params={};
searchStockArticle() {
let params = {};
let page = this.page;
this.query.typeService=2;
this.query.genre=1;
selectStockArticleList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{
this.query.typeService = 2;
this.query.genre = 1;
selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
data.records.forEach(item => {
item.reservationNum = item.handQuantity;
@ -735,10 +813,10 @@
this.stockArticleInfo = data.records;
this.loading = false;
this.selectionClear();
})
});
},
searchStockList(){
let params={};
searchStockList() {
let params = {};
let page = this.page;
this.query.serviceType = 2;
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
@ -752,14 +830,14 @@
this.selectionClear();
});
},
stockArticleSearchReset(){
stockArticleSearchReset() {
this.selectionList = [];
this.query={};
this.query = {};
this.handleAddOrder();
},
stockListSearchReset(){
stockListSearchReset() {
this.selectionList = [];
this.query={};
this.query = {};
this.handleAddInventory();
},
onSubmitPackage() {
@ -830,17 +908,17 @@
//
// this.form.packageList = this.packageList;
console.log(">>>>>>>>",this.form);
if (operation){
if (this.reservationId){
update(this.form).then(()=>{
console.log('>>>>>>>>', this.form);
if (operation) {
if (this.reservationId) {
update(this.form).then(() => {
this.$router.go(-1);
this.$message({
type: 'success',
message: '操作成功!'
});
})
}else {
});
} else {
add(this.form).then(() => {
this.$router.go(-1);
this.$message({
@ -994,7 +1072,7 @@
},
selectionClear() {
this.selectionList = [];
this.query={};
this.query = {};
// this.$refs.table.clearSelection();
},
currentChange(currentPage) {
@ -1007,10 +1085,13 @@
},
onLoad(page, params = {}) {
this.loading = true;
this.form.deliveryType = "1";
this.form.deliveryWay = "1";
this.form.periodOfTime = "3";
this.form.otherFee = 0 ;
this.form.deliveryType = '1';
this.form.deliveryWay = '1';
this.form.periodOfTime = '3';
this.form.otherFee = 0;
this.form.replaceFee = 0;
this.form.collectionFee = 0;
this.form.isUrgent = "1";
this.form.reservationDate = new Date();
if (this.orderIds) {
getStockArticleList(this.orderIds).then(res => {
@ -1042,9 +1123,9 @@
const reservation = res.data.data;
this.orderData = reservation.stockArticleList;
this.inventoryData = reservation.inventoryList;
this.inventoryData.forEach(item=>{
item.applyNum =item.quantityStock - item.quantityOccupied;
})
this.inventoryData.forEach(item => {
item.applyNum = item.quantityStock - item.quantityOccupied;
});
this.form.deliveryType = reservation.deliveryType;
this.form.periodOfTime = reservation.periodOfTime;
if (reservation.serveType) {
@ -1055,8 +1136,8 @@
}
this.form = reservation;
});
}else {
this.form.deliveryType = "2";
} else {
this.form.deliveryType = '2';
}
this.loading = false;

1
src/views/distribution/stockup/distributionStockup.vue

@ -309,6 +309,7 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'assignStatusName',
label: '指派状态',

10
src/views/distribution/stockup/distributionStockupMarket.vue

@ -320,6 +320,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'goodsAreaId',
label: '备货区Id',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'assignStatusName',
label: '指派状态',

7
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -457,9 +457,9 @@
@click="viewStockArticlePackage(row)"
>查看包件
</el-button>
<el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)"
>增值服务
</el-button>
<!-- <el-button type="primary" link icon="el-icon-delete" @click="addvalueServe(row)"-->
<!-- >增值服务-->
<!-- </el-button>-->
<el-button type="primary" link icon="el-icon-edit" @click="removeStockArticle(row)"
>移除
</el-button>
@ -1153,7 +1153,6 @@
this.loading = false;
this.isShowPackage = true;
},
/**
* 提交包件信息

935
src/views/distribution/turndelivery/deliveryInfo.vue

@ -1,935 +0,0 @@
<template>
<div>
<el-row>
<el-button type="primary" plain style="margin-left: 15%;width: 200px;height: 70px" @click="ccc">自主配送
</el-button>
<el-button type="primary" plain style="margin-left: 30%;width: 200px;height: 70px" @click="ddd">外协
</el-button>
</el-row>
</div>
<div style="margin: 2%" v-if="aaa">
<el-form ref="form" :model="form" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="车辆信息:" prop="goodsShelfId">
<el-select v-model="vehicleIds" multiple placeholder="请选择车辆" @change="changeVehicle">
<el-option
v-for="item in vehicleData"
:key="item.id"
:label="item.vehicleNub"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="8">-->
<!-- <el-form-item label="司机负责人:" prop="goodsShelfId" >-->
<!-- <el-select v-model="form.masterDriver" placeholder="请选择车辆" @change="changeMasterDriver">-->
<!-- <el-option-->
<!-- v-for="item in masterDriverData"-->
<!-- :key="item.id"-->
<!-- :label="item.name"-->
<!-- :value="item.id">-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="6">
<el-form-item label="配送司机信息:" prop="goodsShelfId">
<!-- @change="changeSlaveDriver"-->
<el-select v-model="deliveryDriver" multiple placeholder="请选择司机" @change="changeDriver">
<el-option
v-for="item in driverData"
:key="item.id"
:label="item.name"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<span>
<el-form-item label="主司机:" prop="forklift">
<el-input v-model="form.masterDriverName" :disabled="true">
</el-input>
</el-form-item>
<el-form-item label="主车辆:" prop="forklift">
<el-input v-model="form.masterVehicleNub" :disabled="true">
</el-input>
</el-form-item>
</span>
<!-- <span >主司机&emsp;:<strong>&emsp;{{this.masterDriverName}}</strong></span><br/>-->
<!-- <span >主车辆&emsp;:<strong>&emsp;{{this.masetervehictleName}}</strong></span>-->
</el-col>
<el-col :span="6">
<el-button round @click="viewDriverInfo" style="margin-left: 10%">查看司机配置</el-button>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="叉车司机:" prop="forklift">
<el-select v-model="form.forklift" placeholder="请选择叉车司机">
<el-option
v-for="item in this.forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
<!-- {{this.forkliftData}}-->
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="装卸班组:" prop="loader">
<el-select v-model="form.loader" placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="3">
<!-- <el-radio-group v-model="form.loadAndUnload" >-->
<!-- <el-radio v-for="item in this.loadAndUnloadData" :label="item.dictValue" :value="item.dictKey"></el-radio>-->
<!-- </el-radio-group>-->
<el-checkbox-group v-model="this.loadAndUnload">
<el-checkbox v-for="item in loadAndUnloadData" :label="item.dictKey" :value="item.dictKey">
{{item.dictValue}}
</el-checkbox>
</el-checkbox-group>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="备货区域:" prop="goodsAreaId">
<el-select v-model="form.goodsAreaId" placeholder="请选择备货区域">
<el-option
v-for="item in goodsAreaData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="备货时间:" prop="goodsShelfId">
<el-date-picker
v-model="form.stockupDate"
type="date"
placeholder="请选择备货时间">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" prop="remarks">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div style="margin: 2%" v-if="bbb">
<el-form ref="form" :model="form" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="外协来源:" prop="goodsShelfId">
<el-select v-model="form.tripartiteSource" placeholder="请选择来源">
<el-option
v-for="item in tripartiteSourceData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictValue">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机名称:" prop="goodsShelfId">
<el-input v-model="form.driverName" placeholder="请输入司机名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机电话:" prop="goodsShelfId">
<el-input v-model="form.driverPhone" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="车辆车牌:" prop="goodsShelfId">
<el-input v-model="form.vehicleNum" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送费用:" prop="goodsShelfId">
<el-input v-model="form.deliveryFee" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="叉车司机:" prop="forklift">
<el-select v-model="form.forklift" placeholder="请选择叉车司机">
<el-option
v-for="item in this.forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="装卸班组:" prop="loader">
<el-select v-model="form.loader" placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="3">
<!-- <el-radio-group v-model="form.loadAndUnload" >-->
<!-- <el-radio v-for="item in this.loadAndUnloadData" :label="item.dictValue" :value="item.dictKey"></el-radio>-->
<!-- </el-radio-group>-->
<el-checkbox-group v-model="form.loadAndUnload">
<el-checkbox v-for="item in loadAndUnloadData" :label="item.dictKey" :value="item.dictKey">
{{item.dictValue}}
</el-checkbox>
</el-checkbox-group>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="备货区域:" prop="goodsAreaId">
<el-select v-model="form.goodsAreaId" placeholder="请选择备货区域">
<el-option
v-for="item in goodsAreaData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="备货时间:" prop="goodsShelfId">
<el-date-picker
v-model="form.stockupDate"
type="date"
placeholder="请选择备货时间">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" prop="remarks">
<el-input
type="textarea"
:rows="2"
placeholder="请输入内容"
v-model="form.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div >
<el-row>
<!-- 列表模块 -->
<!-- <el-table-->
<!-- :data="data"-->
<!-- :height="height"-->
<!-- :border="option.border"-->
<!-- style="width: 100%">-->
<!-- <template v-for="(item,index) in option.column">-->
<!-- &lt;!&ndash; table字段 &ndash;&gt;-->
<!-- <el-table-column v-if="item.hide!==true"-->
<!-- :prop="item.prop"-->
<!-- :label="item.label"-->
<!-- :width="item.width"-->
<!-- :key="index">-->
<!-- </el-table-column>-->
<!-- </template>-->
<!-- </el-table>-->
<el-table ref="table" v-loading="loading"
:data="data"
style="width: 100%; height:100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="80px"
align="center"></el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</el-row>
<el-form-item style="margin-left: 45%;margin-top: 10px">
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder">提交(配送内容)</el-button>
<el-button icon="el-icon-circle-close" @click="this.$router.go(-1)"> </el-button>
</el-form-item>
</div>
<el-dialog
title="司机配置"
v-model="isDriverShow"
width="50%"
>
<div style="display: flex">
<div style="flex:1;">
<el-table ref="multipleTable" v-loading="loading"
:data="driverInfo"
style="width: 100%; "
:border="option.border"
@select-all="handleSelect"
@selection-change="selectionDriverChange"
@select="handleSelect">
<!-- @selection-change="handleSelectionChange"
@selection-change="handleCurrentChange"
-->
<!-- <el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>-->
<!-- <el-table-column v-if="option.index" label="序号" type="index" width="80px"-->
<!-- align="center"></el-table-column>-->
<!-- <el-table-column label="预约数量" type="index" width="200px">-->
<!-- <template #="{row}">-->
<el-table-column type="selection" v-if="option.selection" width="55"
align="center"></el-table-column>
<!-- </template>-->
<!-- </el-table-column>-->
<template v-for="(item,index) in option.columnDriverInfo">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</div>
<div style="flex:1;">
<el-table ref="table" v-loading="loading"
:data="vehticleInfo"
style="width: 100%; "
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<template v-for="(item,index) in option.columnVehicleInfo">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column label="预约数量" type="index" width="200px">
<template #="{row}">
<span>
<!-- <el-button type="primary" text size="small" @click="MoveUpVehictle(row)">置顶-->
<!-- </el-button>-->
<el-button type="primary" text size="small" @click="moveUpVehictle(row)">上移
</el-button>
</span>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-form-item style="margin-left: 45%;margin-top: 10px">
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="confirmDriver"> </el-button>
<el-button @click="isDriverShow = false"> </el-button>
</span>
</el-form-item>
</el-dialog>
</template>
<script>
import { getDictionaryBiz } from '@/api/system/dict';
import option from '@/option/distribution/distributionReservation';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import {
getReservationAddr,
deliveryTask
} from '@/api/distribution/distributionReservation';
import { getListUser } from '@/api/distribution/distributionStockup';
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
// import { ref } from 'vue'
export default {
data() {
return {
height: 0,
loading: false,
ids: null,
error: null,
form: {},
data: [],
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
aaa: true,
bbb: false,
option: option,
deliveryTypeData: [],
//
resvervationStatusData: [],
//
stockupStatusData: [],
//
orderSourceData: [],
//
periodOfTimeData: [],
//
deliveryWayData: [],
//
addvalueServeTypeData: [],
//
vehicleData: [],
//
forkliftData: [],
//
loaderData: [],
//
goodsAreaData: [],
//
deptId: '',
//
driverData: [],
//
loadAndUnloadData: [],
//
tripartiteSourceData: [],
//
loadAndUnload: [],
//
vehicleIds: [],
//
deliveryDriver: [],
//
isDriverShow: false,
//
driverInfo: [],
//
vehticleInfo: [],
//
masterDriverName: '',
//
masterVehictleName: '',
//
multipleSelection: [],
//
multipleTable: {},
driverList: [],
vehticleList: []
};
},
created() {
this.$watch(
() => this.$route.params,
() => {
this.fetchData();
},
//
// data observed
{ immediate: true }
);
this.getDictionary();
this.getFork();
this.getTeam();
this.getvehicleData();
this.getMasterDriverData();
},
computed: {},
mounted() {
this.onLoad();
},
methods: {
fetchData() {
this.error = this.post = null;
this.loading = true;
if (this.$route.query.id) {
this.ids = this.$route.query.id;
}
},
//
async getFork() {
let ides = '';
let ide = {};
await getListUser().then(res => {
console.log('res>>>', res.data.data);
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
});
await getPostList(ides).then(res => {
console.log('>>>>', res.data.data);
// this.forkliftData = res.data.data;
res.data.data.forEach(i => {
if (i.postName == '叉车') {
ide = i;
}
});
});
// console.log("ied>>>>>",ide);
let params = {
postId: ide.id, //
deptId: this.deptId //
// roleId: '', //
};
getListOwn(Object.assign(params, this.query)).then(res => {
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.name
};
fo.push(a);
});
this.forkliftData = fo;
});
await this.getStorageArea();
await this.getTeam();
},
//
async getTeam() {
let params = {
department: this.deptId
};
getListTeam(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
let fo = [];
res.data.data.records.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.name + '-' + i.groupName
};
fo.push(a);
});
this.loaderData = fo;
});
},
//
async getStorageArea() {
let params = {
department: this.deptId
};
stockUp(params).then(res => {
let fo = [];
res.data.data.forEach(i => {
let v = {
dictKey: i.id,
dictValue: i.name + '-' + i.headline
};
fo.push(v);
});
this.goodsAreaData = fo;
});
},
//
getMasterDriverData() {
getDriverList(1, 10, '').then(res => {
this.driverData = res.data.data.records;
});
},
//
getvehicleData() {
getVehicleList(1, 10, '').then(res => {
this.vehicleData = res.data.data.records;
console.log(res.data.data);
});
},
viewDriverInfo() {
console.log(this.driverInfo.length);
console.log(this.vehticleInfo.length);
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
}
this.isDriverShow = true;
},
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {
});
},
changeVehicle(params) {
console.log(params);
this.vehticleList = params;
let b = [];
if (params) {
this.vehicleData.forEach(item => {
this.vehticleList.forEach(p => {
if (p == item.id) {
b.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.form.masterVehicleNub = item.vehicleNub;
}
});
this.vehticleInfo = b;
}
},
changeDriver(params) {
this.driverList = params;
let a = [];
if (params) {
this.driverData.forEach(item => {
this.driverList.forEach(p => {
if (p == item.id) {
a.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.form.masterDriverName = item.name;
}
});
this.driverInfo = a;
}
},
//
moveUpVehictle(row) {
console.log(row);
let i = 0;
this.vehticleInfo.forEach((item, index) => {
if (item.id === row.id) {
i = index;
}
});
//
if (i > 0) {
let a = this.vehticleInfo[i - 1];
this.vehticleInfo.splice(i - 1, 1);
this.vehticleInfo.splice(i, 0, a);
} else {
this.$message({
message: '已经是第一条,上移失败',
type: 'warning'
});
}
},
selectionDriverChange(list){
this.multipleSelection = list;
},
handleSelect(selection, row) {
//
this.$refs.multipleTable.clearSelection();
if (row) {
if (selection.length === 1) {
this.multipleSelection = row;
this.$refs.multipleTable.toggleRowSelection(row, true);
} else if (selection.length > 1) {
let a = {};
selection.forEach((s, index) => {
if (s.id === row.id) {
selection.splice(index, 1);
a = s;
}
});
this.multipleSelection = selection;
this.$refs.multipleTable.toggleRowSelection(a, true);
}
}
},
confirmDriver() {
if (this.multipleSelection.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
console.log('this.adada', this.multipleSelection);
this.isDriverShow = false;
//
let i = 0;
this.driverInfo.forEach((item,index)=> {
if (item.id === this.multipleSelection[0].id) {
i = index;
}
});
this.form.masterDriverName = this.driverInfo[i].name;
this.form.masterVehicleNub = this.vehticleInfo[i].vehicleNub;
},
// //
getDictionary() {
getDictionaryBiz('addvalue_serve_type').then(res => {
this.addvalueServeTypeData = res.data.data;
});
getDictionaryBiz('distribution_type').then(res => {
this.deliveryTypeData = res.data.data;
});
//
getDictionaryBiz('order_source').then(res => {
this.orderSourceData = res.data.data;
console.log(this.deliveryTypeData);
});
//
getDictionaryBiz('resvervation_status').then(res => {
this.resvervationStatusData = res.data.data;
});
//
getDictionaryBiz('stockup_status').then(res => {
this.stockupStatusData = res.data.data;
});
//
getDictionaryBiz('period_of_time').then(res => {
this.periodOfTimeData = res.data.data;
});
getDictionaryBiz('delivery_way').then(res => {
this.deliveryWayData = res.data.data;
});
getDictionaryBiz('load_and_unload').then(res => {
this.loadAndUnloadData = res.data.data;
});
//
getDictionaryBiz('tripartite_source').then(res => {
this.tripartiteSourceData = res.data.data;
});
},
ccc() {
this.aaa = true;
this.bbb = false;
this.form = {};
this.loadAndUnload = [];
},
ddd() {
this.aaa = false;
this.bbb = true;
this.form = {};
this.loadAndUnload = [];
},
onSubmitOrder() {
const params = this.form;
let stockup = {};
let tripartite = {};
let data = {};
let allocationInfo = [];
//
if (params.loader) {
this.loaderData.forEach(a => {
if (params.loader === a.dictKey) {
stockup.loaderName = a.dictValue;
stockup.loaderId = a.dictKey;
}
});
data.stockup = stockup;
}
if (params.forklift){
this.forkliftData.forEach(b => {
if (params.forklift === b.dictKey) {
stockup.forkliftName = b.dictValue;
stockup.forkliftId = b.dictKey;
}
});
data.stockup = stockup;
}
if (params.goodsAreaId){
this.goodsAreaData.forEach(c => {
if (params.goodsAreaId === c.dictKey) {
stockup.goodsAreaId = c.dictKey;
stockup.goodsAreaName = c.dictValue;
}
});
data.stockup = stockup;
}
if (params.stockupDate) {
stockup.stockupDate = params.stockupDate;
data.stockup = stockup;
}
if (params.remarks) {
stockup.remarks = params.remarks;
data.stockup = stockup;
}
if (this.loadAndUnload.length>0){
stockup.loadAndUnload = this.loadAndUnload.join(',');
data.stockup = stockup;
}
//
if (params.tripartiteSource) {
//
if (params.driverName) {
tripartite.driverName = params.driverName;
}
if (params.deiverPhone) {
tripartite.deiverPhone = params.deiverPhone;
}
if (params.vehicleNum) {
tripartite.vehicleNum = params.vehicleNum;
}
if (params.deliveryFee) {
tripartite.deliveryFee = params.deliveryFee;
}
if (params.tripartiteSource) {
this.tripartiteSourceData.forEach(item => {
if (params.tripartiteSource === item.dictValue) {
tripartite.distributionCompanyId = item.dictKey;
tripartite.distributionCompany = item.dictValue;
}
});
}
} else {
//
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
} else {
let info = [];
for (let i = 0; i < this.driverInfo.length; i++) {
let obj = {};
obj.driver = this.driverInfo[i].name;
obj.driverId = this.driverInfo[i].id;
obj.driverPhone=this.driverInfo[i].phone;
obj.vehicleNub = this.vehticleInfo[i].vehicleNub;
obj.vehicleId = this.vehticleInfo[i].id;
info.push(obj);
this.driverInfo[i].name;
}
allocationInfo = info;
}
}
// data.stockup = stockup;
data.masterDriverName = this.form.masterDriverName;
data.masterVehicleNub = this.form.masterVehicleNub;
data.allocationInfo = allocationInfo;
data.tripartite = tripartite;
data.reservationIds = this.ids;
console.log(data);
deliveryTask(data).then((res) => {
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListmar',
name:'配送市配列表'
});
});
},
onLoad() {
this.loading = false;
if (this.ids){
getReservationAddr(this.ids).then(res => {
const data = res.data.data;
data.forEach(item => {
// this.orderSourceData.forEach(a => {
// console.log("#######",a);
// if (item.orderSource === a.dictKey) {
// item.orderSource = a.dictValue;
// }
// });
this.stockupStatusData.forEach(b => {
if (item.stockupStatus === b.dictKey) {
item.stockupStatus = b.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;
}
});
});
item.serveType = pa;
});
console.log('>>>>>>>>', data);
this.page.total = data.total;
this.data = data;
console.log('>>>>>>>>>>>', this.data);
this.loading = false;
});
}
}
}
};
</script>
<style scoped>
</style>

947
src/views/distribution/turndelivery/deliveryMarket.vue

@ -0,0 +1,947 @@
<template>
<div class="head_top">
<div @click="ccc" :class="aaa?'buts check':'buts'">
自主配送
</div>
<div @click="ddd" :class="bbb?'buts check':'buts'">
外协
</div>
</div>
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;" v-if="aaa">
<el-form ref="form" :model="driverForm" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="车辆信息:" prop="vehicleIds">
<el-select
filterable
multiple
v-model="vehicleIds"
placeholder="请选择车辆"
@change="changeVehicle"
>
<el-option
v-for="item in vehicleData"
:key="item.id"
:label="item.vehicleNub"
:value="item.id"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送司机信息:" prop="goodsShelfId">
<!-- @change="changeSlaveDriver"-->
<el-select
v-model="deliveryDriver"
multiple
filterable
@change="changeDriver"
placeholder="请选择司机"
>
<el-option
v-for="item in driverData"
:key="item.id"
:label="item.name"
:value="item.id"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<span>
<el-form-item label="主司机:" prop="forklift">
<el-input v-model="driverForm.masterDriverName" :disabled="true"> </el-input>
</el-form-item>
<el-form-item label="主车辆:" prop="forklift">
<el-input v-model="driverForm.masterVehicleNub" :disabled="true"> </el-input>
</el-form-item>
</span>
</el-col>
<el-col :span="6">
<el-button round @click="viewDriverInfo" style="margin-left: 10%">查看司机配置</el-button>
</el-col>
</el-row>
</el-form>
</div>
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;" v-if="bbb">
<el-form ref="form" :model="driverForm" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="外协来源:" prop="goodsShelfId">
<el-select filterable v-model="driverForm.tripartiteSource" placeholder="请选择来源">
<el-option
v-for="item in tripartiteSourceData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机名称:" prop="goodsShelfId">
<el-input v-model="driverForm.driverName" placeholder="请输入司机名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="司机电话:" prop="goodsShelfId">
<el-input v-model="driverForm.driverPhone" placeholder="请输入司机电话"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="车辆车牌:" prop="goodsShelfId">
<el-input v-model="driverForm.vehicleNum" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送费用:" prop="goodsShelfId">
<el-input v-model="driverForm.deliveryFee" placeholder="请输入本次费用"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div style="margin: 2%;background-color: #ffffff;padding: 20px;box-sizing: border-box;">
<el-form ref="form" :model="stockUpForm" label-width="100px" style="margin: 3px">
<el-row>
<el-col :span="6">
<el-form-item label="叉车司机:" prop="forklift">
<el-select filterable v-model="stockUpForm.forklift" placeholder="请选择叉车司机">
<el-option
v-for="item in this.forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
:disabled="isDisable"
>
</el-option>
<!-- {{this.forkliftData}}-->
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="装卸班组:" prop="loader">
<el-select filterable v-model="stockUpForm.loader" placeholder="请选择装卸班组">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
:disabled="isDisable"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="班组职能:" prop="goodsAreaId">
<el-checkbox-group v-model="loadAndUnload">
<el-checkbox
v-for="item in loadAndUnloadData"
:label="item.dictKey"
:value="item.dictKey"
:disabled="isDisable"
>
<span>{{ item.dictValue }}</span>
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="配送类型:" prop="goodsAreaId">
<el-radio-group v-model="stockUpForm.deliveryType">
<el-radio :label="'2'" :value="'2'">市配&emsp; </el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="备货区域:" prop="goodsAreaId">
<el-select filterable v-model="stockUpForm.goodsAreaId" placeholder="请选择备货区域">
<el-option
v-for="item in goodsAreaData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
:disabled="isDisable"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="备货时间:" prop="goodsShelfId">
<el-date-picker v-model="stockUpForm.stockupDate" type="datetime" placeholder="请选择备货时间" :disabled="isDisable">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="出库时间:" prop="outboundDate" label-width="100px">
<!-- <el-date-picker v-model="form.taskTime"-->
<!-- type="datetime"-->
<!-- placeholder="请选择配车时间"-->
<!-- value-format="YYYY-MM-DD HH:mm:ss"-->
<!-- >-->
<!-- </el-date-picker>-->
<el-date-picker v-model="stockUpForm.outboundDate" value-format="YYYY-MM-DD HH:mm:ss" type="datetime" placeholder="请选择配车时间">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="其他费用:" prop="collectFee" label-width="100px">
<el-input v-model="stockUpForm.otherFee" placeholder="请输入其他费用" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" prop="remarks">
<el-input type="textarea" :rows="1" placeholder="请输入内容" v-model="stockUpForm.remarks">
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<h3>预约列表</h3>
<div >
<el-row>
<el-table ref="table" v-loading="loading"
:data="data"
style="width: 100%; height:100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="80px"
align="center"></el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</el-row>
<el-form-item style="margin-left: 45%;margin-top: 10px">
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder">提交(配送内容)</el-button>
<el-button icon="el-icon-circle-close" @click="this.$router.go(-1)"> </el-button>
</el-form-item>
</div>
<el-dialog title="司机配置" v-model="isDriverShow" width="50%">
<div style="display: flex">
<div style="flex: 1">
<el-table
ref="multipleTable"
v-loading="loading"
:data="driverInfo"
style="width: 100%"
:border="option.border"
@select-all="handleSelect"
@select="handleSelect"
>
<el-table-column
type="selection"
v-if="option.selection"
width="55"
align="center"
></el-table-column>
<template v-for="(item, index) in option.columnDriverInfo">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
style="height: 50px"
>
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
</div>
<div style="flex: 1">
<el-table
ref="table"
v-loading="loading"
:data="vehticleInfo"
style="width: 100%"
:border="option.border"
>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<template v-for="(item, index) in option.columnVehicleInfo">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
style="height: 50px"
>
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column label="预约数量" type="index" width="200px">
<template #="{ row }">
<span>
<el-button type="primary" text size="small" @click="moveUpVehictle(row)"
>上移
</el-button>
</span>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-form-item style="margin-left: 45%; margin-top: 10px">
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="confirmDriver"> </el-button>
<el-button @click="isDriverShow = false"> </el-button>
</span>
</el-form-item>
</el-dialog>
</template>
<script>
import { getDictionaryBiz } from '@/api/system/dict';
import option from '@/option/distribution/distributionReservation';
import { getListTeamInfo } from '@/api/basicdata/basicdataTeamGroup';
import { deliveryTask, getReservationAddr } from '@/api/distribution/distributionReservation';
import { getListUser } from '@/api/distribution/distributionStockup';
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { stockUpInfo } from '@/api/basicdata/basicdataGoodsArea';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
import { mapGetters } from 'vuex';
import dayjs from 'dayjs';
export default {
data() {
return {
height: 0,
loading: false,
error: null,
form: {},
driverForm:{},
stockUpForm:{},
data: [],
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
query:{},
aaa: true,
bbb: false,
option: option,
deliveryTypeData: [],
//
resvervationStatusData: [],
//
stockupStatusData: [],
//
orderSourceData: [],
//
periodOfTimeData: [],
//
deliveryWayData: [],
//
addvalueServeTypeData: [],
//
vehicleData: [],
//
forkliftData: [],
//
loaderData: [],
//
goodsAreaData: [],
//
deptId: '',
//
driverData: [],
//
loadAndUnloadData: [],
//
tripartiteSourceData: [],
//
loadAndUnload: [],
//
vehicleIds: [],
//
deliveryDriver: [],
//
isDriverShow: false,
//
driverInfo: [],
//
vehticleInfo: [],
//
masterDriverName: '',
//
masterVehictleName: '',
//
multipleSelection: [],
//
multipleTable: {},
stockArticleTable: [],
stockArticleList:[],
driverList: [],
vehticleList: [],
packageList:[],
//
orderData:[],
//
inventoryData:[],
//
selectionList:[],
addvalue: {},
//
orderShow:false,
//
stockListShow:false,
//
stockArticleInfo:[],
//
inventoryInfo:[],
//
isShowPackage:false,
//
packageData:[],
//
loadAndUnload:[],
//
serveType:[],
//
tripartiteSourceData:[],
deliveryListId:'',
isDisable:false,
checked:true,
reservationIds:'',
obj:{
type:Object,
default:()=>({})
},
isInitialized:false,
isUpdate:false,
};
},
watch:{
// obj:{
// deep:true,
// handler(newVal,oldVal){
// if (this.isInitialized){
// console.log(''+JSON.stringify(oldVal)+''+JSON.stringify(newVal));
// //false;
// this.isUpdate = true;
// }else {
// this.isInitialized=true;
// }
// }
// }
},
created() {
this.$watch(
() => this.$route.params,
() => {
this.fetchData();
},
//
// data observed
{ immediate: true }
);
this.getDictionary();
this.getFork();
this.getTeam();
this.getvehicleData();
this.getMasterDriverData();
},
computed: {
...mapGetters(['permission']),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
}
},
mounted() {
this.onLoad(this.page);
},
methods: {
//
async getFork() {
let ides = '';
let ide = {};
await getListUser().then(res => {
console.log('res>>>', res.data.data);
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
});
await getPostList(ides).then(res => {
console.log('>>>>', res.data.data);
// this.forkliftData = res.data.data;
res.data.data.forEach(i => {
if (i.postName == '叉车') {
ide = i;
}
});
});
// console.log("ied>>>>>",ide);
let params = {
postId: ide.id, //
deptId: this.deptId //
// roleId: '', //
};
getListOwn(Object.assign(params, this.query)).then(res => {
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.name
};
fo.push(a);
});
this.forkliftData = fo;
});
await this.getStorageArea();
await this.getTeam();
},
//
async getTeam() {
let params = this.deptId;
console.log("%%%%%%%%%",params);
getListTeamInfo(params).then(res => {
console.log("aaaaaaaaa",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.groupName
};
fo.push(a);
});
this.loaderData = fo;
});
},
//
async getStorageArea() {
let params = this.deptId ;
console.log("^^^^^^^^^^^^^",params);
stockUpInfo(params).then(res => {
console.log("=========================》",res);
let fo = [];
res.data.data.forEach(i => {
let v = {
dictKey: i.id,
dictValue: i.headline
};
fo.push(v);
});
this.goodsAreaData = fo;
});
},
//
getMasterDriverData() {
return new Promise((rv,rev)=>{
getDriverList(1, 10, '').then(res => {
this.driverData = res.data.data.records;
console.log("===============>",res.data.data);
rv(res.data.data.records)
});
})
},
selectionChange(list) {
//
this.selectionList = list;
console.log(" this.selectionList = list", this.selectionList);
this.orderData.forEach(item=>{
if (item.id===this.obj.id){
item.isUpdate = true;
}
})
//
// this.obj.
},
selectionStockArticleChange(list) {
this.stockArticleList = list;
},
//
getvehicleData() {
return new Promise((rv,rev)=>{
getVehicleList(1, 10, '').then(res => {
this.vehicleData = res.data.data.records;
console.log("^^^^^^^^^^^^^^^^",res.data.data);
rv(res.data.data.records)
});
})
},
fetchData() {
this.error = this.post = null;
this.loading = true;
if (this.$route.query.id) {
this.reservationIds = this.$route.query.id;
}
},
viewDriverInfo() {
console.log(this.driverInfo.length);
console.log(this.vehticleInfo.length);
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
}
this.isDriverShow = true;
},
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {
});
},
onSubmitOrder() {
let stockup = {};
let tripartite = {};
let data = {};
let allocationInfo = [];
if (this.driverForm){
//
//
if (this.driverList.length !== this.vehticleList.length) {
this.$message({
message: '司机车辆数量有误!!!',
type: 'warning'
});
return;
} else {
let info = [];
for (let i = 0; i < this.driverInfo.length; i++) {
let obj = {};
obj.driver = this.driverInfo[i].name;
obj.driverId = this.driverInfo[i].id;
obj.driverPhone=this.driverInfo[i].phone;
obj.vehicleNub = this.vehticleInfo[i].vehicleNub;
obj.vehicleId = this.vehticleInfo[i].id;
info.push(obj);
this.driverInfo[i].name;
}
allocationInfo = info;
}
data.allocationInfo = allocationInfo;
data.masterDriverName = this.form.masterDriverName;
data.masterVehicleNub = this.form.masterVehicleNub;
}
if (this.stockUpForm) {
let params = this.stockUpForm;
if (params.tripartiteSource) {
//
if (params.driverName) {
tripartite.driverName = params.driverName;
}
if (params.deiverPhone) {
tripartite.deiverPhone = params.deiverPhone;
}
if (params.vehicleNum) {
tripartite.vehicleNum = params.vehicleNum;
}
if (params.deliveryFee) {
tripartite.deliveryFee = params.deliveryFee;
}
if (params.tripartiteSource) {
this.tripartiteSourceData.forEach(item => {
if (params.tripartiteSource === item.dictValue) {
tripartite.distributionCompanyId = item.dictKey;
tripartite.distributionCompany = item.dictValue;
}
});
}
data.tripartite = tripartite;
}else {
//
if (params.loader) {
this.loaderData.forEach(a => {
if (params.loader === a.dictKey) {
stockup.loaderName = a.dictValue;
stockup.loaderId = a.dictKey;
}
});
}
if (params.forklift){
this.forkliftData.forEach(b => {
if (params.forklift === b.dictKey) {
stockup.forkliftName = b.dictValue;
stockup.forkliftId = b.dictKey;
}
});
}
if (params.goodsAreaId){
this.goodsAreaData.forEach(c => {
if (params.goodsAreaId === c.dictKey) {
stockup.goodsAreaId = c.dictKey;
stockup.goodsAreaName = c.dictValue;
}
});
}
if (params.stockupDate) {
stockup.stockupDate = params.stockupDate;
}
if (params.remarks) {
stockup.remarks = params.remarks;
}
if (this.loadAndUnload.length>0){
stockup.loadAndUnload = this.loadAndUnload.join(',');
}
if (params.outboundDate){
stockup.outboundDate = params.outboundDate;
}
data.stockup = stockup;
}
}
data.reservationIds = this.reservationIds;
console.log(">>>>>>>>>>>>",data);
deliveryTask(data).then((res) => {
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListmar',
name:'配送市配列表'
});
});
},
changeVehicle(params) {
console.log(params);
this.vehticleList = params;
let b = [];
if (params) {
this.vehicleData.forEach(item => {
this.vehticleList.forEach(p => {
if (p == item.id) {
b.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.driverForm.masterVehicleNub = item.vehicleNub;
}
});
this.vehticleInfo = b;
}
},
changeDriver(params) {
this.driverList = params;
let a = [];
if (params) {
this.driverData.forEach(item => {
this.driverList.forEach(p => {
if (p == item.id) {
a.push(item);
console.log(this.driverInfo);
}
});
if (params[0] === item.id) {
this.driverForm.masterDriverName = item.name;
}
});
this.driverInfo = a;
}
},
//
moveUpVehictle(row) {
let i = 0;
this.vehticleInfo.forEach((item, index) => {
if (item.id === row.id) {
i = index;
}
});
//
if (i > 0) {
let a = this.vehticleInfo[i - 1];
this.vehticleInfo.splice(i - 1, 1);
this.vehticleInfo.splice(i, 0, a);
} else {
this.$message({
message: '已经是第一条,上移失败',
type: 'warning',
});
}
console.log(this.vehticleInfo);
},
handleSelect(selection, row) {
//
this.$refs.multipleTable.clearSelection();
if (row) {
if (selection.length === 1) {
this.multipleSelection = row;
this.$refs.multipleTable.toggleRowSelection(row, true);
} else if (selection.length > 1) {
let a = {};
selection.forEach((s, index) => {
if (s.id === row.id) {
selection.splice(index, 1);
a = s;
}
});
this.multipleSelection = selection;
this.$refs.multipleTable.toggleRowSelection(a, true);
}
}
},
confirmDriver() {
if (this.multipleSelection.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
console.log('this.adada', this.multipleSelection);
this.isDriverShow = false;
//
let a = 0;
this.driverInfo.forEach((item, index) => {
if (item.id === this.multipleSelection.id) {
a = index;
}
});
this.driverForm.masterDriverName = this.driverInfo[a].name;
this.driverForm.masterVehicleNub = this.vehticleInfo[a].vehicleNub;
},
// //
getDictionary() {
getDictionaryBiz('addvalue_serve_type').then(res => {
this.addvalueServeTypeData = res.data.data;
});
getDictionaryBiz('load_and_unload').then(res => {
this.loadAndUnloadData = res.data.data;
});
getDictionaryBiz('delivery_way').then(res => {
this.deliveryWayData = res.data.data;
});
//
getDictionaryBiz('tripartite_source').then(res => {
this.tripartiteSourceData = res.data.data;
});
},
ccc() {
if (this.deliveryListId){
//
this.driverForm.tripartiteSource = '';
this.driverForm.driverName = '';
this.driverForm.driverPhone = '';
this.driverForm.vehicleNum = '';
this.driverForm.deliveryFee = '';
}else {
this.loadAndUnload = [];
this.serveType=[];
this.driverForm = {};
}
this.aaa = true;
this.bbb = false;
this.stockUpForm.deliveryType="2";
this.stockUpForm.deliveryWay="2";
this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
},
ddd() {
if (this.deliveryListId){
this.vehicleIds=[];
this.deliveryDriver=[];
this.driverForm.masterDriverName = '';
this.driverForm.masterVehicleNub = '';
}else {
this.loadAndUnload = [];
this.serveType=[];
this.driverForm={};
}
this.aaa = false;
this.bbb = true;
this.stockUpForm.deliveryType="2";
this.stockUpForm.deliveryWay="2";
this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
},
selectionClear() {
this.selectionList = [];
this.query={};
},
onLoad(page, params = {}) {
console.log("》》》》》》》》》》》》》》》",this.reservationIds);
//
this.stockUpForm.deliveryType="2";
this.stockUpForm.deliveryWay="2";
this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss');
this.stockUpForm.otherFee = 0 ;
if (this.reservationIds){
let ids =this.reservationIds;
getReservationAddr(ids).then(res => {
console.log("------------->",res);
const reservationData = res.data.data;
this.page.total = reservationData.total;
this.data = reservationData.records;
console.log('>>>>>>>>>>>', this.data);
this.loading = false;
});
}
this.loading = false;
},
},
};
</script>
<style lang="scss" scoped>
.head_top {
width: 100%;
display: flex;
align-items: center;
background-color: #ffffff;
// border-bottom: 1px solid rgb(228, 228, 228);
padding-left: 10px;
>.buts{
padding: 10px 20px;
cursor: pointer;
margin-right: 10px;
font-size: 18px;
border-bottom: 4px solid #ffffff;
// background-color: #ffffff;
}
.check{
color: #D3832A;
border-bottom: 4px solid #D3832A;
}
}
.minaxbox{
display: flex;
flex-direction: column;
.tophed{
display: flex;
flex-wrap: wrap;
}
}
</style>

49
src/views/reservation/order_list.vue

@ -466,16 +466,17 @@
checkarr: [],
fixed: false,
sortable: true,
}, {
prop: 'availableQuantity',
label: '可用数量',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'availableQuantity',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'handQuantity',
label: '未入库数量',
@ -608,16 +609,16 @@
// fixed: false,
// sortable: true,
// },
{
prop: 'typeServerName',
label: '服务类型',
type: 3,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'typeServerName',
// label: '',
// type: 3,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'customerName',
label: '顾客名字',
@ -920,10 +921,10 @@
this.onLoad(this.page);
},
handleMoke(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
// if (this.selectionList.length === 0) {
// this.$message.warning("");
// return;
// }
let st = false;
this.selectionList.some( i =>{
if(i.stateName === "已预约"){
@ -947,7 +948,7 @@
// false,
if(!notEqualFlag){
this.$router.push({
path: '/distribution/reservation/reservationFrom',
path: '/distribution/reservation/order_listFrom',
query:{
id: this.ids,
name: '添加预约单'

1170
src/views/reservation/order_listFrom.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save