Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

fix_bug_pro20231227
qb 2 years ago
parent
commit
3398b5564a
  1. 2
      index.html
  2. 8
      src/components/tablecmt/tablecmt.vue
  3. 15
      src/router/views/index.js
  4. 13
      src/views/basicdata/brand/basicClient.vue
  5. 386
      src/views/distribution/reservation/atlas.vue
  6. 8
      src/views/distribution/reservation/reservationAddFrom.vue
  7. 367
      src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
  8. 1
      src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue
  9. 3
      vite.config.js

2
index.html

@ -23,7 +23,7 @@
</script>
<script type="text/javascript"
src='https://webapi.amap.com/maps?v=1.4.11&key=f003ec4feb3fcc4cf0742e94f569fd33&plugin=AMap.PlaceSearch,AMap.Geocoder,Map3D,ElasticMarker,AMap.Driving,AMap.TruckDriving'></script>
src='https://webapi.amap.com/maps?v=2.0&key=f003ec4feb3fcc4cf0742e94f569fd33&plugin=AMap.PlaceSearch,AMap.Geocoder,Map3D,ElasticMarker,AMap.Driving,AMap.TruckDriving'></script>
<script src="//webapi.amap.com/ui/1.1/main.js"></script>
<script type="text/javascript"
src="https://api.map.baidu.com/api?v=1.0&type=webgl&ak=FpjVxjf9nGo47eLj9I0ZuUvSZm1wGGqr"></script>

8
src/components/tablecmt/tablecmt.vue

@ -91,6 +91,8 @@
v-if="Number(column.type) < 6 && Number(column.type) > 0"
>{{ scope.row[column.prop] }}</el-text
>
<el-switch @change="makeCargo(scope.row,column)" v-if="column.type == 11" v-model="scope.row[column.prop]" />
<!-- <el-text
class="mx-2 tabculconte"
v-for="item in column.checkarr"
@ -202,6 +204,7 @@ interface TableColumnType {
* 8:带背景的文字
* 9:下载附件
* 10.输入框的表格内容
* 11.开关类型
*/
type: number | string;
/** 用于接受表头的值 */
@ -284,7 +287,7 @@ const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: nu
}
return '';
};
let emit = defineEmits(['inputTxt', 'timeCheck', 'selectCheck', 'selection']);
let emit = defineEmits(['inputTxt', 'timeCheck', 'selectCheck', 'selection','makeCargo']);
let newcolumnList = ref<TableColumnType[]>([]);
watchEffect(() => {
newcolumnList.value = [];
@ -355,6 +358,9 @@ function handleNumberRange(column: TableColumnType, row: TableDataType) {
function handleEdit(index: number, row: TableDataType) {
console.log(index, row);
}
function makeCargo(value,column: TableColumnType){
emit('makeCargo', value, column);
}
function inputchange(value, column: TableColumnType) {
if (typeof value == 'string') {
console.log(value, column);

15
src/router/views/index.js

@ -948,7 +948,20 @@ export default [
],
},
{
path: '/basicdata/warehouse/warehouse/basicdataWarehouse1',
component: Layout,
redirect: '/basicdata/warehouse/warehouse',
children: [
{
path: '/basicdata/warehouse/warehouse/basicdataWarehouse1',
name: '仓库资料管理',
component: () => import('@/views/basicdata/warehouse/warehouse/basicdataWarehouse1.vue'),
},
],
},
// {
// path: 'basicdata/goodsShelf/basicdataGoodsShelfView',
// component: Layout,

13
src/views/basicdata/brand/basicClient.vue

@ -90,6 +90,7 @@
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
@makeCargo="makeCargo"
>
<template #default="slotProps">
<el-text
@ -537,12 +538,12 @@ export default {
{
prop: 'cargoControl',
label: '控货',
type: 1,
type: 11,
values: '',
width: '180',
checkarr: [
{value:false,label:'否'},
{value:true,label:'是'},
// {value:false,label:''},
// {value:true,label:''},
],
fixed: false,
sortable: true,
@ -918,6 +919,12 @@ export default {
} else {
//false
//done
this.data.map(item=>{
if(item.id==row.id){
item.cargoControl=!item.cargoControl
}
return item
})
done();
}
},

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

@ -1,226 +1,226 @@
<template>
<basic-container>
<div class="avue-crud">
<div class="maboxviews">
<div class="bmap" id="container"></div>
<div class="checks">
<!-- @change="handleCheckedCitiesChange"-->
<el-checkbox-group v-model="reservationIds">
<el-col v-for="(item, index) in reservationData">
<el-checkbox :label="item.id" :key="item.id">
<div class="spanstime">
{{ item.consignee }}&emsp;{{ item.deliveryAddress }}&emsp;{{ item.deliveryPhone }}
</div>
</el-checkbox>
</el-col>
</el-checkbox-group>
<div class="mabxmp">
<div class="mapbox">
<div class="bmap" id="container"></div>
</div>
<div class="maplists">
<el-scrollbar>
<div class="mbx">
<el-text v-for="item in datalists" class="mx-1 txbx" type="primary">
{{ item.content }}--时间:{{ item.time }}--距离:{{ item.distance }}公里({{
item.items.handQuantity
}})
</el-text>
</div>
</el-scrollbar>
</div>
</div>
<div style="margin-left: 40%; margin-top: 5%; float: bottom">
<el-button type="primary" icon="el-icon-circle-close" @click="checkgoto" v-if="type"
>确认(转配送页面)</el-button
>
<div style="display: flex; align-items: center; justify-content: center">
<el-button icon="el-icon-circle-close" @click="back"> </el-button>
</div>
</div>
</basic-container>
</template>
<script>
<script setup>
import { useStore } from 'vuex';
import { getReservationAddr } from '@/api/distribution/distributionReservation';
import { getDictionaryBiz } from '@/api/system/dict';
import { onMounted, reactive, toRefs, watchEffect } from 'vue';
import { useRouter } from 'vue-router';
// import { ref } from 'vue'
export default {
data() {
return {
type: true,
};
},
mounted() {
let router = useRouter();
let type = router.currentRoute.value.query.type;
console.log('router>>>>>>>>', router.currentRoute.value.query.type);
this.type = true;
if (type == '2') {
this.type = false;
}
},
setup() {
let router = useRouter();
const useStores=useStore()
let details = reactive({
name: 'BmapDemo',
loading: true,
ids: null,
error: null,
addressList: [],
reservationData: [],
reservationIds: [],
mapLoc: null,
markersarr: [],
import { selectStockArticleAtlasInfo } from '@/api/distribution/distributionDeliveryList';
// import { getReservationAddr } from '@/api/distribution/distributionReservation';
let router = useRouter();
let useStores = useStore();
let details = reactive({
name: 'BmapDemo',
item: null,
error: null,
addressList: [],
reservationData: [],
reservationIds: [],
mapLoc: null,
markersarr: [],
lng: '',
lat: '',
datalists: [],
abbreviation: '',
drivingarrs: [],
// datalist:[]
});
onMounted(() => {
initmap();
});
watchEffect(() => {
console.log(router.currentRoute.value.query.id);
details.item = router.currentRoute.value.query.id;
getReservationAddr(details.item).then(res => {
// selectStockArticleAtlasInfo(details.item.id).then(res => {
console.log(res.data.data);
const data = res.data.data;
// details.lng = res.data.data[0].jingdu;
// details.lat = res.data.data[0].weidu;
// details.abbreviation=res?.data?.data[0]?.warehouseName
// console.log('res------------->', data);
details.reservationData = data;
details.mapLoc.remove(details.markersarr);
details.drivingarrs.map(item => {
if (item) {
item.clear();
}
});
onMounted(() => {
details.ids = router.currentRoute.value.query.id;
initMap(router.currentRoute.value.query.id);
init();
// setTimeout(()=>{
// details.mapLoc.clearOverlays();
// },9500)
details.drivingarrs = [];
details.datalists = [];
init(data);
});
// setTimeout(() => {
// init();
// }, 5000);
});
function initmap() {
details.mapLoc = new AMap.Map('container', {
viewMode: '2D', // 使 2D
zoom: 9, //
center: [104.293242, 30.582939], //
});
}
function init(data) {
// maplabel()
console.log(details.mapLoc);
let geocodess = [];
var geocoder = new AMap.Geocoder({});
data.map(async (item, index) => {
var marker = new AMap.Marker({
map: details.mapLoc,
position: [item.jingdu, item.weidu],
icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
anchor: 'bottom-center',
offset: new AMap.Pixel(0, 0),
});
watch(
() => [details.reservationIds, details.reservationData],
(newValue, oldValue) => {
console.log('watch 已触发', newValue);
if (details.mapLoc) {
details.mapLoc.remove(details.markersarr);
details.markersarr=[]
}
details.reservationIds.map((item, index) => {
details.reservationData.map(ite => {
if (item == ite.id) {
console.log(ite);
maplabel(ite, index);
}
});
marker.setMap(details.mapLoc);
marker.setLabel({
offset: new AMap.Pixel(0, -5), //
content: `<div class='info'>${item.warehouseName}</div>`, //
direction: 'top', //
});
details.markersarr.push(marker);
await geocoder.getLocation(item.deliveryAddress, (status, result) => {
if (status === 'complete' && result.info === 'OK') {
// result
details.mapLoc.setCenter([
result.geocodes[0].location.lng,
result.geocodes[0].location.lat,
]);
geocodess.push({
pontion: result.geocodes[0].location,
content: item.consignee + '--' + item.deliveryAddress + '' + '--' + item.deliveryPhone,
items: item,
});
},
{
immediate: true,
if (index + 1 == data.length) {
maker(geocodess);
Driving(geocodess);
}
}
);
// watchEffect(() => {
// if(details.mapLoc){
// details.mapLoc.remove(details.markersarr)
// }
// details.reservationIds.map((item, index) => {
// details.reservationData.map(ite => {
// if (item == ite.id) {
// console.log(ite);
// maplabel(ite, index);
// }
// });
// });
// // details.reservationData
// });
function init() {
details.mapLoc = new AMap.Map('container', {
viewMode: '2D', // 使 2D
zoom: 9, //
center: [104.293242, 30.582939], //
});
}
function maplabel(item, index) {
console.log(item);
var geocoder = new AMap.Geocoder({});
console.log(item.deliveryAddress);
geocoder.getLocation(item.deliveryAddress, (status, result) => {
if (status === 'complete' && result.info === 'OK') {
// result
console.log(result.geocodes[0].location);
var marker = new AMap.Marker({
map: details.mapLoc,
position: result.geocodes[0].location,
offset: new AMap.Pixel(0, 0),
});
marker.setMap(details.mapLoc);
marker.setLabel({
offset: new AMap.Pixel(0, -5), //
content: `<div class='info'>${item.consignee}</div>`, //
direction: 'top', //
});
details.markersarr.push(marker);
});
});
}
//
function maker(geocodess) {
geocodess.map(item => {
var marker = new AMap.Marker({
map: details.mapLoc,
position: item.pontion,
icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
anchor: 'bottom-center',
offset: new AMap.Pixel(0, 0),
});
marker.setMap(details.mapLoc);
marker.setLabel({
offset: new AMap.Pixel(0, -5), //
content: `<div class='info'>${item.content}</div>`, //
direction: 'top', //
});
details.markersarr.push(marker);
});
}
//
function Driving(geocodess) {
// 线
geocodess.map(item => {
var driving = new AMap.Driving({
map: details.mapLoc,
hideMarkers: true,
});
driving.search(
new AMap.LngLat(item.items.jingdu, item.items.weidu),
new AMap.LngLat(item.pontion.lng, item.pontion.lat),
function (status, result) {
if (status === 'complete') {
// console.log(result.routes[0]);
item.time = formatSeconds(result.routes[0].time);
item.distance = result.routes[0].distance / 1000;
// item.distance=result.routes[0].distance/1000
details.datalists.push(item);
} else {
console.log('获取驾车数据失败:' + result);
}
});
}
// init()
function initMap(ids) {
if (ids.length > 1) {
ids.split(',');
}
details.loading = true;
getReservationAddr(ids).then(res => {
res.data.data.records.forEach(item => {
details.ids.split(',').forEach(id => {
if (item.id == id) {
details.reservationIds.push(item.id);
}
});
});
console.log(details.reservationIds);
details.reservationData = res.data.data.records;
details.addressList = res.data.data.records;
});
details.loading = false;
}
function checkgoto() {
console.log('>>>>>>>>>>>', details.reservationIds);
let ids = details.reservationIds.join(',');
router.push({
path: '/distribution/turndelivery/deliveryMarket',
query: {
id: ids,
name: '市配计划',
},
});
}
function back() {
useStores.commit('DEL_TAG_CURRENT');
router.back(-1)
}
return {
back,
checkgoto,
init,
initMap,
...toRefs(details),
};
},
};
);
details.drivingarrs.push(driving);
});
}
//
function formatSeconds(seconds) {
var hours = Math.floor(seconds / 3600);
var minutes = Math.floor((seconds % 3600) / 60);
var remainingSeconds = seconds % 60;
var result = '';
if (hours > 0) {
result += hours.toString().padStart(2, '0') + '小时';
}
result += minutes.toString().padStart(2, '0') + '分钟';
return result;
}
function back() {
useStores.commit('DEL_TAG_CURRENT');
router.back(-1);
}
const { datalists } = toRefs(details);
</script>
<style lang="scss" scoped>
.maboxviews {
.bmap {
width: 100%;
height: 500px;
margin-bottom: 60px;
/* border: 1px solid pink; */
}
.mabxmp {
display: flex;
align-items: flex-start;
justify-content: center;
.spanstime {
word-wrap: break-word !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
font-size: 12px !important;
> .mapbox {
width: 50%;
}
> .maplists {
width: 50%;
height: 500px;
padding: 0 20px;
box-sizing: border-box;
.mbx {
display: flex;
flex-direction: column;
align-items: flex-start;
}
}
}
// .el-checkbox__input {
// display: inline-grid;
// white-space: pre-line;
// word-wrap: break-word;
// overflow: hidden;
// line-height: 20px;
// }
::v-deep .el-checkbox__label {
width: 95%;
word-break: break-all;
word-wrap: break-word;
white-space: pre-wrap !important;
}
.el-checkbox-option {
word-wrap: break-word;
word-break: break-all;
.info {
font-size: 10px !important;
}
.checks {
width: 48%;
.txbx {
padding: 5px 0px;
box-sizing: border-box;
margin-left: 20px;
}
.bmap {
width: 50%;
height: 600px;
/* border: 1px solid pink; */
width: 100%;
}
</style>

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

@ -2126,6 +2126,10 @@
});
},
removeStockArticle(row) {
if(this.inventoryData.length==0&&this.orderData.length==1&&this.reservationId){
this.$message.warning('最少剩下一个数据');
return
}
this.orderData.forEach((item, index) => {
if (item.id === row.id) {
this.orderData.splice(index, 1);
@ -2135,6 +2139,10 @@
console.log('>>>>>>>>>>>>>>>row', row);
},
removeStockList(row) {
if(this.inventoryData.length==1&&this.orderData.length==0&&this.reservationId){
this.$message.warning('最少剩下一个数据');
return
}
this.inventoryData.forEach((item, index) => {
if (item.id === row.id) {
this.inventoryData.splice(index, 1);

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

@ -1,23 +1,16 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row>
<el-row >
<!-- 查询模块 -->
<el-form
:inline="true"
ref="form"
:model="form"
label-width="120px"
:rules="rules"
:disabled="view"
>
<el-form :inline="true" ref="form" :model="form" label-width="120px" :rules="rules" :disabled="view">
<!-- 表单字段 -->
<el-col :span="24">
<el-form-item label="入库批次" prop="receiptBatch">
<el-input v-model="form.receiptBatch" placeholder="请输入入库批次" />
<el-input v-model="form.receiptBatch" placeholder="请输入入库批次"/>
</el-form-item>
<el-form-item label="入库时间" prop="receiptDate">
<!-- <el-input v-model="form.receiptDate" placeholder="请输入入库时间"/>-->
<!-- <el-input v-model="form.receiptDate" placeholder="请输入入库时间"/>-->
<el-date-picker
v-model="form.receiptDate"
placeholder="请选择入库时间"
@ -29,7 +22,7 @@
</el-col>
<el-col :span="24">
<el-form-item label="客户名称" prop="clientId">
<!-- <el-input v-model="form.customerName" placeholder="请输入客户名称"/>-->
<!-- <el-input v-model="form.customerName" placeholder="请输入客户名称"/>-->
<el-select
v-model="form.clientId"
filterable
@ -38,7 +31,7 @@
remote-show-suffix
:remote-method="remoteMethod"
:loading="loading"
@change="getMenDian($event)"
@change="getMenDian($event,1)"
placeholder="请输入客户名称"
>
<el-option
@ -49,16 +42,39 @@
/>
</el-select>
</el-form-item>
<el-form-item label="客户编码" prop="clientCode">
<!-- <el-input v-model="form.customerName" placeholder="请输入客户名称"/>-->
<el-select
v-model="form.clientCode"
filterable
remote
reserve-keyword
remote-show-suffix
:remote-method="remoteCodeMethod"
:loading="loading"
@change="getMenDian($event,2)"
placeholder="请输入客户编码"
>
<el-option
v-for="item in optionCodes"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="门店名称" prop="storeName">-->
<el-form-item label="门店名称">
<!-- <el-input v-model="form.storeName" placeholder="请输入门店名称"/>-->
<el-form-item label="门店名称" >
<!-- <el-input v-model="form.storeName" placeholder="请输入门店名称"/>-->
<el-select
v-model="form.storeId"
filterable
allow-create
default-first-option
:reserve-keyword="false"
@change="getMen($event, 1)"
@change="getMen($event,1)"
placeholder="请输入门店名称"
>
<el-option
@ -71,25 +87,25 @@
</el-form-item>
</el-col>
<el-col :span="24">
<!-- <el-form-item label="物流单号" prop="trainNumber">-->
<el-form-item label="物流单号">
<el-input v-model="form.trainNumber" placeholder="请输入物流车次" />
<!-- <el-form-item label="物流单号" prop="trainNumber">-->
<el-form-item label="物流车次" >
<el-input v-model="form.trainNumber" placeholder="请输入物流车次"/>
</el-form-item>
<!-- <el-form-item label="入库车牌" prop="licensePlate">-->
<el-form-item label="入库车牌">
<el-input v-model="form.licensePlate" placeholder="请输入入库车牌" />
<!-- <el-form-item label="入库车牌" prop="licensePlate">-->
<el-form-item label="入库车牌" >
<el-input v-model="form.licensePlate" placeholder="请输入入库车牌"/>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="订单自编号" prop="orderNumber">
<el-input v-model="form.orderNumber" placeholder="请输入订单自编号" />
<el-form-item label="订单自编号" prop="orderNumber" >
<el-input v-model="form.orderNumber" placeholder="请输入订单自编号" />
</el-form-item>
<!-- <el-form-item label="运单号" prop="waybillNumber ">-->
<!-- <el-input v-model="form.waybillNumber " placeholder="请输入运单号"/>-->
<!-- </el-form-item>-->
<el-form-item label="所在仓库" prop="warehouseId">
<el-form-item label="所在仓库" prop="warehouseId" >
<!-- <el-input placeholder="请输入所在仓库"/>-->
<el-select
v-model="form.warehouseId"
@ -98,7 +114,7 @@
reserve-keyword
remote-show-suffix
:remote-method="remoteWareHouse"
@change="getMen($event, 2)"
@change="getMen($event,2)"
placeholder="请输入所在仓库"
>
<el-option
@ -111,157 +127,97 @@
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="服务类型" prop="serviceType">
<!-- <el-input v-model="form.serviceType" placeholder="请输入服务类型"/>-->
<el-radio-group
v-model="form.serviceType"
class="ml-4"
v-for="(item, index) in distributionType"
>
<el-radio :label="item.dictKey" size="large" style="padding-right: 20px">{{
item.dictValue
}}</el-radio>
<el-form-item label="服务类型" prop="serviceType" >
<!-- <el-input v-model="form.serviceType" placeholder="请输入服务类型"/>-->
<el-radio-group v-model="form.serviceType" class="ml-4" v-for="(item,index) in distributionType">
<el-radio :label="item.dictKey" size="large" style="padding-right: 20px">{{item.dictValue}}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__header">
<el-row >
<div class="avue-crud__header" >
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd" :disabled="view"
> </el-button
>
<!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" icon="el-icon-plus" @click="handleAdd" :disabled="view"> </el-button>
<!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
</div>
<!-- 头部右侧按钮模块 -->
<!-- <div class="avue-crud__right">-->
<!-- <el-button icon="el-icon-refresh" @click="searchChange" circle :disabled="view"></el-button>-->
<!-- <el-button icon="el-icon-search" @click="searchHide" circle :disabled="view"></el-button>-->
<!-- </div>-->
<!-- <div class="avue-crud__right">-->
<!-- <el-button icon="el-icon-refresh" @click="searchChange" circle :disabled="view"></el-button>-->
<!-- <el-button icon="el-icon-search" @click="searchHide" circle :disabled="view"></el-button>-->
<!-- </div>-->
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="data"
:height="height"
style="width: 100%"
:border="option.border"
>
<el-table-column
type="selection"
v-if="option.selection"
width="55"
align="center"
></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center" ></el-table-column>
<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="80" align="center">
</el-table-column>
<template v-for="(item, index) in option.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 v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<el-table-column
prop="menu"
label="实际入库数量"
:width="150"
align="center"
v-if="this.$route.query.type == '3'"
>
<template #="{ row }">
<el-table-column prop="menu" label="实际入库数量" :width="150" align="center" v-if="this.$route.query.type == '3'">
<template #="{row}">
<el-input v-model="row.actualReceipt"></el-input>
</template>
</el-table-column>
<!-- 操作栏模块 -->
<el-table-column
prop="menu"
label="操作"
:width="300"
align="center"
v-if="!view || this.$route.query.type != '3'"
>
<template #="{ row }">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<el-button
type="primary"
text
icon="el-icon-edit"
@click="handleEditOwn(row)"
:disabled="typeView"
>编辑</el-button
>
<el-button
type="primary"
text
icon="el-icon-delete"
v-if="row.conditions == '1'"
@click="rowDelOwn(row)"
:disabled="typeView"
>删除</el-button
>
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleDrawer(row)">子表配置</el-button>-->
<el-table-column prop="menu" label="操作" :width="300" align="center" v-if="!view || this.$route.query.type != '3'">
<template #="{row}">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleEditOwn(row)" :disabled = typeView>编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" v-if="row.conditions == '1'" @click="rowDelOwn(row)" :disabled = typeView>删除</el-button>
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleDrawer(row)">子表配置</el-button>-->
</template>
</el-table-column>
</el-table>
</el-row>
<div
style="line-height: 20px; text-align: center; padding-top: 10px"
v-if="!typeView || this.$route.query.type == '3'"
>
<span class="dialog-footer">
<el-button
type="primary"
icon="el-icon-circle-check"
@click="handleSubmit"
:disabled="view && !this.$route.query.type == '3'"
> </el-button
>
<!-- <el-button icon="el-icon-circle-close" @click="box = false"> </el-button>-->
</span>
<div style="line-height: 20px;text-align:center;padding-top: 10px" v-if="!typeView || this.$route.query.type == '3'">
<span class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit" :disabled="view && !this.$route.query.type == '3'"> </el-button>
<!-- <el-button icon="el-icon-circle-close" @click="box = false"> </el-button>-->
</span>
</div>
<!-- <el-row>-->
<!-- <div class="avue-crud__pagination" style="width:100%">-->
<!-- &lt;!&ndash; 分页模块 &ndash;&gt;-->
<!-- <el-pagination align="right"-->
<!-- background-->
<!-- @size-change="sizeChange"-->
<!-- @current-change="currentChange"-->
<!-- :current-page="page.currentPage"-->
<!-- :page-sizes="[30, 50,80, 120]"-->
<!-- :page-size="page.pageSize"-->
<!-- layout="total, sizes, prev, pager, next, jumper"-->
<!-- :total="page.total">-->
<!-- </el-pagination>-->
<!-- </div>-->
<!-- </el-row>-->
<!-- <el-row>-->
<!-- <div class="avue-crud__pagination" style="width:100%">-->
<!-- &lt;!&ndash; 分页模块 &ndash;&gt;-->
<!-- <el-pagination align="right"-->
<!-- background-->
<!-- @size-change="sizeChange"-->
<!-- @current-change="currentChange"-->
<!-- :current-page="page.currentPage"-->
<!-- :page-sizes="[30, 50,80, 120]"-->
<!-- :page-size="page.pageSize"-->
<!-- layout="total, sizes, prev, pager, next, jumper"-->
<!-- :total="page.total">-->
<!-- </el-pagination>-->
<!-- </div>-->
<!-- </el-row>-->
<!-- 表单模块 -->
<el-dialog
:title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body
>
<el-form
:disabled="view"
ref="formDetail"
:model="formDetail"
label-width="80px"
:rules="rules"
>
<el-dialog :title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="formDetail" :model="formDetail" label-width="80px" :rules="rules">
<!-- 表单字段 -->
<el-form-item label="SKU" prop="sku">
<el-input v-model="formDetail.sku" placeholder="请输入SKU" />
@ -330,8 +286,8 @@
<el-form-item label="包装规格">
<el-input v-model="formDetail.packagingSpecifications" placeholder="请输入包装规格" />
</el-form-item>
<el-form-item label="物资品牌" prop="actualReceipt">
<!-- <el-input v-model="formDetail.actualReceipt" placeholder="请选择物资品牌"/>-->
<el-form-item label="产品品牌" prop="actualReceipt">
<!-- <el-input v-model="formDetail.actualReceipt" placeholder="请选择物资品牌"/>-->
<el-select
v-model="formDetail.brandId"
filterable
@ -340,7 +296,7 @@
remote-show-suffix
:remote-method="getBrandName"
@change="getBanerqd($event)"
placeholder="请输入物资品牌"
placeholder="请输入产品品牌"
>
<el-option
v-for="item in brandList"
@ -442,13 +398,14 @@ export default {
option: option,
//
data: [],
store: [], //
stuffName: [], //
stuffCode: [], //
stuff: [], //
brandList: [], //
shop: [], //
options: [], //
store: [],//
stuffName: [],//
stuffCode: [],//
stuff: [],//
brandList: [],//
shop: [],//
options: [],//
optionCodes: [],//
rules: {
sku: [
{ required: true, message: '请输入SKU', trigger: 'blur' },
@ -494,9 +451,16 @@ export default {
this.getOwnDeliver();
},
deep: true,
immediate: true,
immediate: true
},
// 'form.clientId': {
// handler(newVal) {
// console.log("newVal>>>>>>>>>>>>>>>",newVal)
// console.log("this.options>>>>>>>>>>>>>>>",this.options)
// },
// }
},
computed: {
...mapGetters(['permission']),
ids() {
@ -526,13 +490,18 @@ export default {
this.store = [];
let b = await getWarehouseDetail(a);
console.log('bbbb', b.data.data);
console.log('bbbb>>>>', b.data.data);
const da = b.data.data;
this.options.push({
label: da.customerName,
value: da.clientId,
});
this.optionCodes.push({
label: da.customerCode,
value: da.clientId,
});
if (!!da.storeId && da.storeId != '-1') {
console.log('门店》》》》');
this.shop.push({
@ -692,10 +661,38 @@ export default {
}
});
}
},
//
async getMenDian(row) {
//
async getMenDian(row,num){
// console.log("",row);
if (num==1){
const obj = this.options.find(item => item.value === row);
console.log("obj>>>>>>>>>>>",obj);
this.optionCodes =[
{
key:obj.value,
value:obj.value,
label:obj.code,
}
]
this.form.clientCode = obj.value;
} else {
const obj = this.optionCodes.find(item => item.value === row);
console.log("obj>>>>>>>>>>>",obj);
this.options =[
{
key:obj.value,
value:obj.value,
label:obj.code,
}
]
this.form.clientId = obj.value;
}
this.form.serviceType =null;
let aa = '';
this.options.some(i => {
// console.log(">><><><<>",i);
@ -705,6 +702,14 @@ export default {
aa = i.value;
}
});
this.optionCodes.some(i => {
console.log(">><><><<>",i);
if (i.value == row) {
this.form.clientCode = i.label;
//
aa = i.value;
}
});
let bu = await getListName(this.page.currentPage, this.page.pageSize, {
clientId: aa,
typeService: '3',
@ -763,7 +768,8 @@ export default {
let st = {
label: i.clientName,
value: i.id,
};
code: i.clientCode
}
this.options.push(st);
});
// setTimeout(() => {
@ -776,9 +782,34 @@ export default {
this.options = [];
}
},
handleEditOwn(row) {
this.title = '编辑';
this.box = true;
//
async remoteCodeMethod(query){
if (query) {
// this.loading = true;
this.optionCodes =[];
let cl = await getListClient(this.page.currentPage, this.page.pageSize,{clientCode:query});
console.log("客户信息1234>>>>",cl.data.data.records);
cl.data.data.records.forEach(i =>{
let st= {
label: i.clientCode,
value: i.id,
code: i.clientName
}
this.optionCodes.push(st);
});
// setTimeout(() => {
// this.loading = false
// this.loading = this.list.filter((item) => {
// return item.label.toLowerCase().includes(query.toLowerCase())
// })
// }, 200)
} else {
this.optionCodes = []
}
},
handleEditOwn (row) {
this.title = '编辑'
this.box = true
this.formDetail = row;
},
//
@ -858,7 +889,7 @@ export default {
this.$refs.form.validate(valid => {
if (valid) {
if (!this.form.id) {
// console.log("this.form111",this.form);
console.log("this.form111",this.form);
if (this.data.length > 0) {
this.form.list = this.data;
add(this.form).then(() => {
@ -883,7 +914,7 @@ export default {
// if(parseInt(this.$route.query.type) == 3){
//
// }
// console.log("this.form222",this.form);
console.log("this.form222",this.form);
if (!!this.form.totalInput && parseInt(this.form.totalInput) == '-1') {
this.form.totalInput = null;
}

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

@ -575,7 +575,6 @@ export default {
this.onLoad(this.page);
},
handleEditOwn (row) {
this.$router.push({
path: '/warehouse/warehousingentry/warehouseWarehouseingAddReceipt',
query:{

3
vite.config.js

@ -13,12 +13,15 @@ export default ({ mode, command }) => {
proxy: {
'/api': {
// target: 'http://192.168.10.126:8889',
// target: 'http://192.168.10.48:8888',
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.75:8777',
// target: 'http://test.api.huitongys.com',
target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.29:13000',
//target: 'http://test3.javablade.com',
// target: 'http://192.168.10.29:13000',
// target: 'http://test.api.huitongys.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},

Loading…
Cancel
Save