qb 1 year ago
parent
commit
84a15d6a29
  1. 1
      src/api/basicdata/basicClient.js
  2. 38
      src/api/basicdata/basicdataFreight.js
  3. 11
      src/views/aftersales/aftersalesWorkOrderend.vue
  4. 307
      src/views/basicdata/brand/basicdataFreight.vue
  5. 52
      src/views/basicdata/brand/basicdataFreightFrom.vue
  6. 4
      src/views/distribution/inventory/distributionStockListMarket.vue
  7. 51
      src/views/warehouse/warehouseStock/warehouseStock.vue
  8. 8
      vite.config.js

1
src/api/basicdata/basicClient.js

@ -89,3 +89,4 @@ export const selectName = (current, size, params) => {
})
}

38
src/api/basicdata/basicdataFreight.js

@ -48,3 +48,41 @@ export const update = (row) => {
})
}
// 查看用户名称
export const $_QueryUserName = (params) => {
return request({
url: '/api/logpm-basicdata-zqb/basicdataClient/detail',
method: 'get',
params
})
}
// 查询品牌
export const $_brand = (params) => {
return request({
url: '/api/logpm-basicdata-zqb/basicdataStoreBrand/detail',
method: 'get',
params
})
}
// 查询品类
export const $_category = (params) => {
return request({
url: '/api/logpm-basicdata-zqb/basicdataCategory/detail',
method: 'get',
params
})
}
export const $_getDeptLazyTree = params => {
return request({
url: '/api/logpm-basicdata/basicdataCategory/lazy-tree',
method: 'get',
params
});
};

11
src/views/aftersales/aftersalesWorkOrderend.vue

@ -749,7 +749,7 @@
</template>
</el-upload>
<el-select
<!-- <el-select
v-model="separateMessageResponsibility"
multiple
filterable
@ -765,7 +765,7 @@
:value="item.value"
:disabled="item.disabled"
/>
</el-select>
</el-select> -->
</div>
<el-button type="primary" class="el_next" @click="NextRecord()">
下一条
@ -780,6 +780,7 @@
@input="appoint(Msgtextarea)"
/>
<div class="msgHf">
<el-button type="primary" @click="replyMessage()"> 结束回复 </el-button>
<el-button type="primary" @click="replyMessage()"> 回复 </el-button>
</div>
</div>
@ -2699,7 +2700,6 @@ const CustomerServiceCompleted = () => {
right: 0;
bottom: 0;
:deep(.el-button) {
margin-left: 20px;
}
}
.ovhe {
@ -2935,7 +2935,10 @@ const CustomerServiceCompleted = () => {
align-items: center;
justify-content: space-between;
}
:deep(.el-upload){
:deep(.Transport_damage_photos){
.el-upload{
display: none;
}
}
</style>

307
src/views/basicdata/brand/basicdataFreight.vue

@ -51,14 +51,116 @@
<!-- @click="$refs.crud.rowAdd()">新增</el-button>-->
<!-- </template>-->
</avue-crud>
<el-dialog v-model="Detailspop" title="详情" width="60%">
<el-form
v-loading="Formloading"
class="el_formInfo"
:model="formInfo"
label-width="300px"
style="width: 100%"
disabled
>
<div class="el_box_1">
<el-form-item label="客户名称">
<el-input v-model="formInfo.clientName" />
</el-form-item>
<el-form-item label="品牌名称">
<el-input v-model="formInfo.brand" />
</el-form-item>
<el-form-item label="一口价">
<el-input v-model="formInfo.fixedPrice" />
</el-form-item>
<el-form-item label="品类">
<el-input v-model="formInfo.categoryName" />
</el-form-item>
</div>
<div class="el_box_2">
<el-form-item label="生效时间">
<el-input v-model="formInfo.effectiveTime" />
</el-form-item>
<el-form-item label="截止时间">
<el-input v-model="formInfo.expirationTime" />
</el-form-item>
<el-form-item label="服务类型">
<el-input v-model="formInfo.details" />
</el-form-item>
</div>
<el-tabs type="border-card">
<el-tab-pane label="干线">
<div class="el_groundline" v-for="item in groundlineZd" :key="item.dictKey">
<div class="checkbox checked" v-if="item.cost !=null"></div>
<el-form-item :label="item.label + '金额'">
<el-input :value="item.cost ? item.cost : '暂无'" disabled/>
</el-form-item>
<el-form-item label="单位">
<el-input :value="item.formulaModeName ? item.formulaModeName : '暂无'" disabled/>
</el-form-item>
</div>
</el-tab-pane>
<el-tab-pane label="仓库">
<div class="el_groundline_box">
<div class="el_groundline" v-for="item in warehouseZd" :key="item.dictKey">
<div class="checkbox checked" v-if="item.cost !=null"></div>
<el-form-item :label="item.label + '金额'">
<el-input :value="item.cost ? item.cost : '暂无'" disabled/>
</el-form-item>
<el-form-item label="单位">
<el-input :value="item.formulaModeName ? item.formulaModeName : '暂无'" disabled/>
</el-form-item>
</div>
</div>
</el-tab-pane>
<el-tab-pane label="配送">
<div class="el_groundline_box">
<div class="el_groundline" v-for="item in DeliveryZd" :key="item.dictKey">
<div class="checkbox checked" v-if="item.cost !=null"></div>
<el-form-item :label="item.label + '金额'">
<el-input :value="item.cost ? item.cost : '暂无'" disabled/>
</el-form-item>
<el-form-item label="单位">
<el-input :value="item.formulaModeName ? item.formulaModeName : '暂无'" disabled/>
</el-form-item>
</div>
</div>
</el-tab-pane>
</el-tabs>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button @click="Detailspop = false">关闭</el-button>
<!-- <el-button type="primary" @click="DetailspopFn">
确定
</el-button> -->
</div>
</template>
</el-dialog>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from '@/api/basicdata/basicdataFreight';
import {
getList,
getDetail,
add,
update,
remove,
$_QueryUserName,
$_brand,
$_category,
$_getDeptLazyTree,
} from '@/api/basicdata/basicdataFreight';
// import option from "@/option/basicdata/basicdataFreight";
import { mapGetters } from 'vuex';
import { exportBlob } from '@/api/common';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { getToken } from '@/utils/auth';
import { downloadXls } from '@/utils/util';
import { dateNow } from '@/utils/date';
@ -72,6 +174,15 @@ export default {
query: {},
search: {},
loading: true,
Detailspop: false,
Formloading:false,
formInfo: {}, //
groundlineZd: [], //线
warehouseZd: [], //
DeliveryZd: [], //
groundlineInfo: [], //线
warehouseInfo: [], //
DeliveryInfo: [], //
page: {
pageSize: 30,
currentPage: 1,
@ -469,7 +580,52 @@ export default {
data: [],
};
},
created() {},
created() {
//
// updateDictionary(targetArray, dictionaryType) {
// getDictionaryBiz(dictionaryType).then(res => {
// console.log(res, '');
// res.data.data.forEach(item => {
// targetArray.push({
// value: item.dictKey,
// label: item.dictValue,
// });
// });
// });
// };
// groundlineZd:[],//线
// warehouseZd:[],//
// DeliveryZd:[],//
getDictionaryBiz('artery').then(res => {
console.log(res, '干线字典');
res.data.data.forEach(item => {
this.groundlineZd.push({
value: item.dictKey,
label: item.dictValue,
});
});
});
getDictionaryBiz('entrepot').then(res => {
console.log(res, '仓库字典');
res.data.data.forEach(item => {
this.warehouseZd.push({
value: item.dictKey,
label: item.dictValue,
});
});
});
getDictionaryBiz('delivery').then(res => {
console.log(res, '配送字典');
res.data.data.forEach(item => {
this.DeliveryZd.push({
value: item.dictKey,
label: item.dictValue,
});
});
});
},
computed: {
...mapGetters(['permission']),
permissionList() {
@ -611,14 +767,85 @@ export default {
});
});
},
enrichDictionaryWithCosts(dictionary, dataArray, itemNameField) {
dictionary.forEach(dictItem => {
console.log(dictItem,'dictItem');
dataArray.forEach(dataItem => {
if (dictItem.label === dataItem[itemNameField]) {
dictItem.formulaModeName = dataItem.formulaModeName;
dictItem.cost = dataItem.cost;
}
});
});
},
//
beforeOpen(done, type) {
this.Detailspop = true; //
this.Formloading=true
this.formInfo={}
getDetail(this.form.id).then(res => {
console.log(res, 'res');
this.form = res.data.data;
this.formInfo.fixedPrice =
this.form.fixedPrice == 1 ? '否' : this.form.fixedPrice == 2 ? '是' : '暂无';
this.formInfo.categoryName = this.form.categoryName; //
this.formInfo.effectiveTime = this.form.effectiveTime; //
this.formInfo.expirationTime = this.form.expirationTime; //
this.formInfo.details = res.data.data.details.map(res => res.typeName).join(','); //
res.data.data.details.forEach(res => {
if (res.typeName == '干线') {
this.groundlineInfo.push(res);
} else if (res.typeName == '仓库') {
this.warehouseInfo.push(res);
} else if (res.typeName == '配送') {
this.DeliveryInfo.push(res);
}
});
this.enrichDictionaryWithCosts( this.groundlineZd,this.groundlineInfo, 'itemName');
this.enrichDictionaryWithCosts( this.DeliveryZd, this.DeliveryInfo,'itemName');
this.enrichDictionaryWithCosts(this.warehouseZd,this.warehouseInfo, 'itemName');
$_QueryUserName({
id: res.data.data.itemName,
}).then(res => {
this.formInfo.clientName = res.data.data.clientName;
console.log(res, '客户名称');
});
//
$_brand({
brandId: this.form.brand,
id: this.form.itemName,
}).then(res => {
console.log(res, '品牌');
this.formInfo.brand = res.data.data.brandName;
});
this.Formloading=false;
return;
$_category({
id: this.form.category,
}).then(res => {
console.log(res, '品类');
});
});
return;
if (['edit', 'view'].includes(type)) {
getDetail(this.form.id).then(res => {
this.form = res.data.data;
$_QueryUserName({
id: res.data.data.itemName,
}).then(res => {
this.formInfo.clientName = res.data.data.clientName;
console.log(res, '客户名称');
});
});
}
done();
},
searchReset() {
this.query = {};
this.onLoad(this.page);
@ -684,27 +911,73 @@ export default {
};
</script>
<style scoped lang='scss'>
:deep(.el-form-item__content){
<style scoped lang="scss">
:deep(.el-form-item__content) {
}
:deep(.avue-form__row){
margin-left:10px;
max-width:300px!important;
:deep(.avue-form__row) {
margin-left: 10px;
max-width: 300px !important;
}
:deep(.no-print){
margin-left:auto;
:deep(.no-print) {
margin-left: auto;
}
:deep(.avue-form__row){
margin-left:0;
:deep(.avue-form__row) {
margin-left: 0;
}
:deep(.el-form-item__label){
padding-left:0;
width:auto !important;
:deep(.el-form-item__label) {
padding-left: 0;
width: auto !important;
}
:deep(.no-print){
.el-button{
margin-right:0
:deep(.no-print) {
.el-button {
margin-right: 0;
}
}
.el_formInfo {
display: flex;
flex-direction: column;
.el_box_1,
.el_box_2 {
display: flex;
}
}
.el_groundline {
display: flex;
}
.el_groundline_box{
display: flex;
flex-wrap: wrap;
.el_groundline{
width: 50%;
}
}
.checkbox {
position: relative;
display: inline-block;
width: 20px;
height: 15px;
border: 1px solid orange;
margin-top: 8px;
cursor: pointer;
border-radius: 2px;
}
.checkbox::after {
content: '';
position: absolute;
top: 40%;
left: 34%;
width: 5px;
height: 10px;
border-style: solid;
border-color: orange;
border-width: 0 2px 2px 0;
transform: translateY(-50%) rotate(45deg);
opacity: 0; /* 初始时勾隐藏 */
}
.checkbox.checked::after{
opacity: 1; /* 勾显示 */
}
</style>

52
src/views/basicdata/brand/basicdataFreightFrom.vue

@ -4,7 +4,7 @@
<el-form :disabled="view" ref="form" :model="form" label-width="120px" :rules="rules">
<el-row :gutter="20">
<el-col :span="10">
<el-form-item label="户名称" prop="province">
<el-form-item label="户名称" prop="province">
<el-select
style="width: 100%"
v-model="form.clientIds"
@ -99,6 +99,7 @@
:show-all-levels="false"
style="width: 100%"
v-model="form.category"
@change="categoryChange"
></el-cascader>
</el-form-item>
</el-col>
@ -314,6 +315,8 @@ export default {
DryWarehouseDistributionBID: '', //ID
DryWarehouseDistributionCID: '', //ID
clientOptions: [], //
categoryData:[],//
categoryDataID:[],//ID
activeName: 'second',
//
page: {
@ -359,13 +362,20 @@ export default {
lazy: true,
multiple: true,
checkStrictly: true,
lazyLoad(node, resolve) {
lazyLoad:(node, resolve)=> {
console.log(this,'this');
let _this=this
const { level } = node;
setTimeout(async () => {
// console.log("node/////////",node);
const parentId = node.level === 0 ? 1 : node.data.value;
// console.log("par",parentId);
let shuju = await getDeptLazyTree(parentId);
console.log(shuju,'品类数据');
shuju.data.data.forEach((item=>{
_this.categoryData.push(item)
}))
console.log(_this.categoryData,'categoryData');
// console.log(")))))))))))",shuju);
const nodes = Array.from(shuju.data.data).map(item => ({
value: item.id,
@ -469,7 +479,7 @@ export default {
this.form.arterys = fei;
this.form.clientIds = this.form.clientIds;
this.form.brand = this.form.brand;
this.form.itemName = this.form.clientIds
this.form.category = this.form.category ? this.form.category.flat().join(',') : null;
console.log(this.DryWarehouseDistributionA, '干选择');
console.log(this.DryWarehouseDistributionB, '仓选择');
@ -478,6 +488,25 @@ export default {
// this.form.details = this.DryWarehouseDistributionB;
this.form.details = [].concat(...this.DryWarehouseDistributionA, ...this.DryWarehouseDistributionB, ...this.DryWarehouseDistributionC);
console.log('提交的数据》》》', this.form);
console.log(this.categoryDataID,'id');
console.log(this.categoryData,'名字');
let matchedData = this.categoryDataID.map(subArray => {
// subArray id
if (subArray.length === 1) {
let idToMatch = subArray[0];
// datas id
let matched = this.categoryData.find(data => data.id === idToMatch);
//
if (matched) {
return matched;
}
}
return null;
}).filter(item => item !== null); // null
console.log(matchedData,'筛选出来的值');
this.form.categoryName = matchedData.map(res=>res.name).join(',')
console.log('提交的数据》》》', this.form);
// return
add(this.form).then(() => {
this.$store.commit('DEL_TAG_CURRENT'); //
this.$router.push('/basicdata/brand/basicdataFreight'); //
@ -726,7 +755,21 @@ export default {
break;
}
},
categoryChange(val,a){
console.log(val,a);
let newArray = val.map(subArray => {
// 1
if (subArray.length > 1) {
return [subArray[subArray.length - 1]];
}
//
return subArray;
});
this.categoryDataID=newArray
console.log(this.categoryDataID,'data中的数据');
console.log(newArray,'重新组织的');
},
handleCheckedCitiesChange(value, index) {
//
console.log('>>>>>>>', value, index);
@ -872,6 +915,7 @@ export default {
// console.log("",res);
this.delivery = res.data.data;
});
},
},
};

4
src/views/distribution/inventory/distributionStockListMarket.vue

@ -826,7 +826,7 @@ export default {
//
let asd = await getListMaterial(this.page.currentPage, this.page.pageSize, {
name: query,
pid: this.stockList.materialId,
// pid: this.stockList.materialId,
}).then();
console.log('物料信息', asd.data.data);
if (!!asd.data.data) {
@ -1115,7 +1115,7 @@ export default {
this.getQuery.quantityStock = row.row.quantityStock;
this.formInline.descriptionGoods = this.getQuery.name;
let q = this.distributionUnit.find(i => i.dictKey == this.getQuery.logpmUnit);
this.getQuery.logpmUnitName = q.dictValue;
this.getQuery.logpmUnitName =q?q.dictValue:null;
// getListParcelDetails(this.pageDetails.currentPage,this.pageDetails.pageSize,par).then(res => {
// console.log("<><>===", res.data.data);
// const data = res.data.data;

51
src/views/warehouse/warehouseStock/warehouseStock.vue

@ -77,6 +77,7 @@ import option from '@/option/warehouse/warehouseStock';
import { mapGetters } from 'vuex';
import { ElMessage } from 'element-plus'
import { downloadXls,checkParams} from '@/utils/util';
import dayjs from 'dayjs';
export default {
data() {
return {
@ -93,7 +94,6 @@ export default {
sortable: false,
head: false,
},
{
prop: 'nodeName',
label: '节点名称',
@ -105,9 +105,10 @@ export default {
sortable: false,
head: false,
},
{
prop: 'scanNodeType',
label: '扫描详情',
label: '节点描述',
type: 2,
values: '',
width: '130',
@ -116,6 +117,16 @@ export default {
sortable: false,
head: false,
},
{
prop: 'operatorTime',
label: '操作时间',
type: 4,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'serviceNumber',
label: '服务号',
@ -283,16 +294,7 @@ export default {
fixed: false,
sortable: false,
},
{
prop: 'operatorTime',
label: '操作时间',
type: 6,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: '',
// label: '',
@ -485,18 +487,19 @@ checkParams(data, targetParam) {
}
},
timesc(index, row) {
// index = this.formatDate(index);
this.query[row.prop] = index;
console.log(checkParams(this.query, 'operatorTime'),'232323'); // true
if(checkParams(this.query, 'operatorTime')){
ElMessage({
message: '请携带其他任意参数',
type: 'warning',
})
return
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
this.query[row.prop] = index;
// if(checkParams(this.query, 'operatorTime')){
// ElMessage({
// message: '',
// type: 'warning',
// })
// return
// }
this.onLoad(this.page);
},
inputsc(index, row) {
@ -639,9 +642,9 @@ checkParams(data, targetParam) {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
}).catch(()=>{
}).catch(()=>{
}).finally(()=>{
this.loading = false;
});

8
vite.config.js

@ -15,15 +15,17 @@ export default ({ mode, command }) => {
// target: 'http://192.168.10.126:8889',
// hy
// target: 'http://192.168.3.12:13000',
// cg
// target: 'http://192.168.3.18:13000',
// lmy
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.101:8888',
// 老zyc
// target: 'http://192.168.10.75:8777',
// target: 'http://192.168.10.75:8777',
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.3.14:13000',
target: 'http://192.168.3.14:13000',
// target: 'http://192.168.10.25:2888',
// target: 'http://192.168.6.161:9777',//CY
// target: 'http://192.168.10.57:13000',
@ -31,7 +33,7 @@ export default ({ mode, command }) => {
// target: 'http://192.168.10.29:13000',
// target: 'http://192.168.3.5:13000',//?
// target: 'http://h5uapi.huitongys.com',
target: 'http://test.api.huo5you.com',
// target: 'http://test.api.huo5you.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},

Loading…
Cancel
Save