Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dev-warehouse
0.0 2 years ago
parent
commit
3b8de83a22
  1. 2
      build.sh
  2. 5
      package.json
  3. 7
      src/api/basicdata/basicStoreContact.js
  4. 11
      src/api/distribution/distributionParcelList.js
  5. 7
      src/api/distribution/distributionStockArticle.js
  6. 2
      src/components/tablecmt/tablecmt.vue
  7. 7
      src/main.js
  8. 132
      src/option/basicdata/basicClientFrom.js
  9. 5
      src/option/basicdata/basicStoreContact.js
  10. 284
      src/option/distribution/distributionStockArticle.js
  11. 147
      src/option/distribution/distributionStockArticleFrom.js
  12. 38
      src/router/views/index.js
  13. 30
      src/views/basicdata/brand/basicClient.vue
  14. 33
      src/views/basicdata/brand/basicClientFrom.vue
  15. 96
      src/views/basicdata/brand/basicStoreContact.vue
  16. 2
      src/views/distribution/delivery/distributionDelivery.vue
  17. 78
      src/views/distribution/inventory/distributionStockArticle.vue
  18. 570
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  19. 281
      src/views/distribution/inventory/distributionStockArticleFrom.vue
  20. 278
      src/views/distribution/reservation/atlas.vue
  21. 2
      src/views/distribution/signdetail/distributionSigndetail.vue
  22. 19
      vite.config.js

2
build.sh

@ -4,6 +4,6 @@ echo "====================打包文件===================="
yarn build
echo "====================传输文件===================="
scp -P 22 -r ./dist/** root@192.168.0.188:/docker/nginx/web/html
scp -P 22 -r ./dist/** root@192.168.2.110:/www/wwwroot/192.168.2.110/
echo "====================部署完毕===================="

5
package.json

@ -7,7 +7,6 @@
"serve": "vite preview --host"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@antfu/utils": "^0.7.2",
"@element-plus/icons-vue": "^2.0.9",
"@saber/nf-design-base-elp": "^1.0.0",
@ -15,7 +14,6 @@
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"animate.css": "^4.1.1",
"avue-plugin-map": "^1.0.1",
"axios": "^0.21.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.6",
@ -29,8 +27,7 @@
"nprogress": "^0.2.0",
"vite-plugin-mock": "^2.9.4",
"vue": "^3.2.40",
"vue-amap": "^0.5.10",
"vue-bmap-gl": "^0.1.2",
"vue-baidu-map": "^0.21.22",
"vue-i18n": "^9.1.9",
"vue-router": "^4.1.5",
"vuex": "^4.0.2"

7
src/api/basicdata/basicStoreContact.js

@ -22,6 +22,13 @@ export const getListStore = (current, size, params) => {
}
})
}
export const updateCargoControl = (row) => {
return request({
url: '/api/logpm-basicdata/basicdataStoreContact/update',
method: 'post',
data: row
})
}
export const getDetail = (id) => {
return request({

11
src/api/distribution/distributionParcelList.js

@ -11,6 +11,17 @@ export const getList = (current, size, params) => {
}
})
}
export const getListOwn = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionParcelList/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({

7
src/api/distribution/distributionStockArticle.js

@ -39,6 +39,13 @@ export const add = (row) => {
data: row
})
}
export const addStockRow = (row) => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/saveStockRow',
method: 'post',
data: row
})
}
export const addStock = (ids) => {
return request({

2
src/components/tablecmt/tablecmt.vue

@ -35,7 +35,7 @@
<el-input
v-if="column.type == 2"
v-model="column.values"
clearable
:clearable="true"
size="10"
:placeholder="`请输入${column.label}`"
@change="inputchange($event,column)"

7
src/main.js

@ -27,10 +27,6 @@ import dayjs from 'dayjs';
import 'styles/common.scss';
// 业务组件
import tenantPackage from './views/system/tenantpackage.vue';
import AvueMap from 'avue-plugin-map';
import AMap from 'vue-amap'
window.$crudCommon = crudCommon;
@ -51,8 +47,7 @@ app.config.globalProperties.website = website;
app.config.globalProperties.getScreen = getScreen;
app.use(error);
app.use(i18n);
app.use(AvueMap);
app.use(AMap);

132
src/option/basicdata/basicClientFrom.js

@ -0,0 +1,132 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: true,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: "客户名称",
prop: "clientName",
search: true,
},
{
label: "客户类型",
prop: "clientType",
search: true,
hide: true,
},
{
label: "客户类型",
prop: "typeService",
search: true,
},
{
label: "地址",
prop: "bladeRegionProvinceId",
search: true,
},
{
label: "合同附件",
prop: "fileName",
},
{
label: "控货",
prop: "cargoControl",
hide: true,
},
{
label: "合同开始时间",
prop: "contractStartTime",
search: true,
},
{
label: "合同结束时间",
prop: "contractEntTime",
search: true,
},
]
}

5
src/option/basicdata/basicStoreContact.js

@ -98,6 +98,11 @@ export default {
prop: "phone",
search: true,
},
{
label: "默认联系人",
prop: "defaultType",
search: true,
},
{
label: "创建时间",
prop: "createTime",

284
src/option/distribution/distributionStockArticle.js

@ -3,6 +3,290 @@ export default {
index: true,
border: true,
selection: true,
columnBasic: [
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "服务号",
prop: "serviceNumber",
},
{
label: "订单自编号",
prop: "orderSelfNumbering",
},
{
label: "商场名称",
prop: "mallName",
search: true,
},
{
label: "仓库",
prop: "warehouse",
search: true,
},
{
label: "品牌",
prop: "brand",
search: true,
},
{
label: "服务类型",
prop: "typeService",
search: true,
},
],
columnTakeOver: [
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "顾客名字",
prop: "customerName",
},
{
label: "顾客电话",
prop: "customerTelephone",
},
{
label: "顾客地址",
prop: "customerAddress",
},
],
columnParcels: [
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: "仓库",
prop: "warehouse",
},
{
label: "状态",
prop: "conditions",
search: true,
},
{
label: "包条码",
prop: "packetBarCode",
},
{
label: "货位信息",
prop: "goodsAllocation",
},
{
label: "所在托盘",
prop: "pallet",
},
{
label: "一级品",
prop: "firsts",
},
{
label: "二级品",
prop: "second",
},
{
label: "三级品",
prop: "thirdProduct",
},
{
label: "物料",
prop: "material",
},
{
label: "数量",
prop: "quantity",
},
{
label: "车次号",
prop: "trainNumber",
},
],
column: [
{
label: "租户号",

147
src/option/distribution/distributionStockArticleFrom.js

@ -0,0 +1,147 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: "仓库",
prop: "warehouse",
},
{
label: "状态",
prop: "conditions",
search: true,
},
{
label: "包条码",
prop: "packetBarCode",
},
{
label: "货位信息",
prop: "goodsAllocation",
},
{
label: "所在托盘",
prop: "pallet",
},
{
label: "一级品",
prop: "firsts",
},
{
label: "二级品",
prop: "second",
},
{
label: "三级品",
prop: "thirdProduct",
},
{
label: "物料",
prop: "material",
},
{
label: "数量",
prop: "quantity",
},
{
label: "转库存品数量",
prop: "inventoryQuantity",
hide: true,
},
{
label: "车次号",
prop: "trainNumber",
},
{
label: "在库订单ID",
prop: "stockArticleId",
hide: true,
},
]
}

38
src/router/views/index.js

@ -548,6 +548,44 @@ export default [
},
],
},
{
path: '/distribution/inventory/distributionStockArticleFrom',
component: Layout,
redirect: '/inventory/distributionStockArticleFrom',
children: [
{
path: '/distribution/inventory/distributionStockArticleFrom',
name: '转库存品',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distributionStockArticleFrom.vue'),
},
],
},
{
path: '/distribution/inventory/distributionStockArticleDetails',
component: Layout,
redirect: '/inventory/distributionStockArticleDetails',
children: [
{
path: '/distribution/inventory/distributionStockArticleDetails',
name: '查询订单详情',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distributionStockArticleDetails.vue'),
},
],
},
// {
// path: '/distribution/inventory/distributionPrints',
// component: Layout,

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

@ -104,10 +104,14 @@
<el-link target="_blank" @click="downloadLink(row)">{{ row.fileName }}</el-link>
</template>
<template #default="{row,$index}" v-if="item.prop === 'clientType'">
<span target="_blank" v-if="row.clientType == '1'">工厂</span>
<span target="_blank" v-if="row.clientType == '2'">商场</span>
<span target="_blank" v-if="row.clientType == '3'">装饰</span>
<span target="_blank" v-if="row.clientType == '4'">个人</span>
<span target="_blank" v-for="item in clientType" :key="item.dictKey" v-if="row.clientType == item.dictKey">{{item.dictValue}}</span>
<!-- <span target="_blank" v-if="row.clientType == '1'">工厂</span>-->
<!-- <span target="_blank" v-if="row.clientType == '2'">商场</span>-->
<!-- <span target="_blank" v-if="row.clientType == '3'">装饰</span>-->
<!-- <span target="_blank" v-if="row.clientType == '4'">个人</span>-->
<!-- <span target="_blank" v-if="row.clientType == '5'">待调整</span>-->
<!-- <span target="_blank" v-if="row.clientType == '6'">待调整</span>-->
<!-- <span target="_blank" v-else>收货方</span>-->
</template>
<!-- <el-link href="https://element.eleme.io" target="_blank" v-if="item.prop === 'fileName'">{{scope}}</el-link>-->
@ -150,6 +154,9 @@
<el-dropdown-item>
<el-button type="primary" text icon="el-icon-setting" @click="handleLinkman(row)">联系人</el-button>
</el-dropdown-item>
<el-dropdown-item>
<el-button type="primary" text icon="el-icon-setting" @click="handleBrand(row)">品牌</el-button>
</el-dropdown-item>
<!-- <el-dropdown-item v-if="!!row.clientType">-->
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleBase(row)" v-if=" row.clientType == '1'">基地</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleStore(row)" v-if=" row.clientType == '2'">门店</el-button>-->
@ -361,7 +368,7 @@
</template>
<script>
import { getList, getDetail, add, update, updateCargoControl } from '@/api/basicdata/basicClient';
import { getList, getDetail, add, update, updateCargoControl,remove } from '@/api/basicdata/basicClient';
import option from '@/option/basicdata/basicClient';
import { mapGetters } from 'vuex';
import BasicShopSub from '@/views/basicdata/brand/basicShopSub.vue';
@ -461,7 +468,7 @@ export default {
rules: {
clientName: [
{ required: true, message: '请输入客户名称', trigger: 'blur' },
{ min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' }
// { min: 3, max: 5, message: ' 3 5 ', trigger: 'blur' }
],
typeService: [
{ required: true, message: '请选择客户端类型', trigger: 'change' }
@ -851,6 +858,16 @@ export default {
this.basicClientId = row.id;
this.drawer = true;
},
handleBrand(row) { //
this.$router.push({
path:'/basicdata/brand/basicdataStoreBrand',
query:{
id: row.id,
name: "品牌 - "+row.clientName
}
});
},
//
handleHistory(row) {
// this.basicClientId = row.id;
@ -889,7 +906,6 @@ export default {
query: {
id: row.id,
name: '联系人 - ' + row.clientName,
type: 2
}
});
},

33
src/views/basicdata/brand/basicClientFrom.vue

@ -137,6 +137,9 @@
<el-dropdown-item>
<el-button type="primary" text icon="el-icon-setting" @click="handleLinkman(row)">联系人</el-button>
</el-dropdown-item>
<el-dropdown-item>
<el-button type="primary" text icon="el-icon-setting" @click="handleBrand(row)">品牌</el-button>
</el-dropdown-item>
<!-- <el-dropdown-item v-if="!!row.clientType">-->
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleBase(row)" v-if=" row.clientType == '1'">基地</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleStore(row)" v-if=" row.clientType == '2'">门店</el-button>-->
@ -349,13 +352,12 @@
<script>
import { getList, getDetail, add, update, updateCargoControl } from '@/api/basicdata/basicClient';
import option from '@/option/basicdata/basicClient';
import option from '@/option/basicdata/basicClientFrom';
import { mapGetters } from 'vuex';
import BasicShopSub from '@/views/basicdata/brand/basicShopSub.vue';
import { getDictionaryBiz } from '@/api/system/dict';
import { getSelect, getLazyTree, getLazyList, getLazyTreeAll } from '@/api/base/region';
import { getToken } from '@/utils/auth';
import globalc from '@/api/basicdata/globalc';
import { Base64 } from 'js-base64';
@ -481,7 +483,17 @@ export default {
created() {
},
mounted() {
watch: {
'$route.query.id': {
handler(newVal, oldVal) {
console.log(newVal, oldVal);
this.onLoad(this.page);
},
deep: true,
immediate: true
}
},
mounted() {
this.init();
getLazyTreeAll().then(res => {
if (res.data.success) {
@ -622,7 +634,7 @@ export default {
},
async init() {
//
getDictionaryBiz('client_type_add').then(res => {
getDictionaryBiz('client_type').then(res => {
// console.log("",res);
this.clientType = res.data.data;
});
@ -752,7 +764,7 @@ export default {
},
handleAddSon(row) {
this.$router.push({
path: '/basicdata/brand/basicClient',
path: '/basicdata/brand/basicClientFrom',
query: {
id: row.id,
name: '新增 - ' + row.clientName
@ -839,6 +851,15 @@ export default {
this.basicClientId = row.id;
this.drawer = true;
},
handleBrand(row) { //
this.$router.push({
path:'/basicdata/brand/basicdataStoreBrand',
query:{
id: row.id,
name: "品牌 - "+row.clientName
}
});
},
//
handleHistory(row) {
// this.basicClientId = row.id;
@ -954,7 +975,7 @@ export default {
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
// this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;

96
src/views/basicdata/brand/basicStoreContact.vue

@ -53,6 +53,15 @@
:label="item.label"
:width="item.width"
:key="index">
<template #default="{row,$index}" v-if="item.prop === 'defaultType'">
<el-switch
v-model="row.defaultType"
active-text="开"
inactive-text="关"
@click="makeCargo(row)"
>
</el-switch>
</template>
</el-table-column>
</template>
<!-- 操作栏模块 -->
@ -111,16 +120,16 @@
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/basicdata/basicStoreContact";
import { getList, getDetail, add, update, remove,updateCargoControl } from "@/api/basicdata/basicStoreContact";
import option from "@/option/basicdata/basicStoreContact";
import { mapGetters } from "vuex";
export default {
props: {
mainId: {
type: String
},
},
// props: {
// mainId: {
// type: String
// },
// },
data () {
return {
height: 0,
@ -176,17 +185,72 @@ export default {
}
},
watch:{
mainId: {
handler(newVal, oldVal) {
// console.log("");
this.onLoad(this.page);
}
}
// mainId: {
// handler(newVal, oldVal) {
// // console.log("");
// this.onLoad(this.page);
// }
// },
'$route.query.id': {
handler(newVal, oldVal) {
// console.log(newVal, oldVal);
this.onLoad(this.page);
},
deep: true,
immediate: true
}
},
methods: {
init () {
this.height = this.setPx(document.body.clientHeight - 340);
},
//
makeCargo(row) {
console.log('设置默认联系人!!', row);
let r = {
id: row.id,
shopId: row.shopId,
defaultType: row.defaultType
};
console.log("this.page.total",this.page.total);
if(this.page.total < 2){
this.$message.warning("只有一个联系人,暂不支持关闭");
row.defaultType = true;
return
}
this.$confirm(`确定要修改默认联系人吗?`, {
type: 'warning',
//beforeClose
beforeClose: async (action, instance, done) => {
//
if (action === 'confirm') {
//
updateCargoControl(r).then(res => {
console.log(res);
if (res.statusText == 'OK') {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!'
});
done();
} else {
this.$message({
type: 'warning',
message: '操作失败!'
});
}
});
} else {
//false
//done
done();
}
}
});
},
searchHide () {
this.search = !this.search;
@ -297,7 +361,7 @@ export default {
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
@ -310,8 +374,8 @@ export default {
onLoad (page, params = {}) {
this.loading = true;
this.query.shopId = this.$route.query.id; //ID
this.query.partitionType = this.$route.query.type; //ID
console.log('this.$route.query.id',this.$route.query.id);
// this.query.partitionType = this.$route.query.type; //ID
// console.log('this.$route.query.id',this.$route.query.id);
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;

2
src/views/distribution/delivery/distributionDelivery.vue

@ -144,7 +144,7 @@
</template>
<script>
import { addDelivery, getDetailDelivery, addDelivery, updateDelivery, removeDelivery } from "@/api/distribution/distributionDelivery";
import { getDetailDelivery, addDelivery, updateDelivery, removeDelivery } from "@/api/distribution/distributionDelivery";
import option from "@/option/distribution/distributionDelivery";
import { mapGetters } from "vuex";

78
src/views/distribution/inventory/distributionStockArticle.vue

@ -330,6 +330,7 @@
<script>
import { getList, getDetail, add, update, remove,addStock } from "@/api/distribution/distributionStockArticle";
import { getListOwn } from "@/api/distribution/distributionParcelList";
import { addCallDelivery } from "@/api/distribution/distrilbutionCallDelivery";
import { addClient } from "@/api/distribution/distributionClientMessage";
import { addService } from "@/api/distribution/distributionServiceLog";
@ -410,21 +411,72 @@ export default {
this.$message.warning("请选择至少一条数据");
return;
}
let a = '';
let b = '';
let c = '';
let d = true;
this.selectionList.forEach( i =>{
if(!!a){
}else{
a = i.customerName
}
})
// orderId
const notEqualFlag = this.selectionList.some(
(item) =>
this.selectionList.filter((ele) =>
ele.customerName !== item.customerName
&& ele.customerTelephone !== item.customerTelephone
&& ele.customerAddress !== item.customerAddress ).length >= 1
);
console.log("notEqualFlag=====",notEqualFlag);
// true,
// false,
if(!notEqualFlag){
this.$router.push({
path: '/distribution/reservation/reservationFrom',
query:{
id: this.ids,
name: '添加预约单'
}
});
}else{
this.$message.warning("请选择相同收货信息的订单!!!")
}
},
handleStockList(){
async handleStockList(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}else if (this.selectionList.length > 1){
this.getSock();
}else if (this.selectionList.length < 2){
//
let params ={
stockArticleId : this.selectionList[0].id
}
let a = await getListOwn(this.page.currentPage,this.page.pageSize,params);
console.log("aaaaaaa===",a.data.data);
if(a.data.data.records.length > 0){
this.$router.push({
path: '/distribution/inventory/distributionStockArticleFrom',
query: {
id : this.ids,
name : "转库存单"
}
});
}else{
this.getSock();
}
}
},
getSock(){
this.$confirm("确定将选择的订单转为库存品吗?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
@ -494,7 +546,6 @@ export default {
query:{
id: this.ids,
}
});
},
@ -635,12 +686,21 @@ export default {
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
// this.title = ''
// this.view = true;
// this.box = true;
// getDetail(row.id).then(res => {
// this.form = res.data.data;
// });
this.$router.push({
path: '/distribution/inventory/distributionStockArticleDetails',
query: {
id : row.id,
name: "详情"+row.orderSelfNumbering
},
})
},
handleDelete () {
if (this.selectionList.length === 0) {

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

@ -0,0 +1,570 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px;margin-bottom: 5%">
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
:data="data"
height="20%"
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="60" align="center">-->
<!-- </el-table-column>-->
<template v-for="(item,index) in option.columnBasic">
<!-- 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-row style="margin-bottom: 5%">
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
height="20%"
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="60" align="center">-->
<!-- </el-table-column>-->
<template v-for="(item,index) in option.columnTakeOver">
<!-- 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 prop="menu" label="操作" :width="220" align="center">
<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="handleCallDelivery('3',row)">编辑</el-button>
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="dataPare"
: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="60" align="center">
</el-table-column>
<template v-for="(item,index) in option.columnParcels">
<!-- 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 prop="menu" label="操作" :width="220" align="center">
<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="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer">
<el-form-item label="姓名" :label-width="formLabelWidth">
<el-input v-model="formCustomer.name" autocomplete="off" />
</el-form-item>
<el-form-item label="电话" :label-width="formLabelWidth">
<el-input v-model="formCustomer.phone" autocomplete="off" />
</el-form-item>
<el-form-item label="地址" :label-width="formLabelWidth">
<el-input
v-model="formCustomer.address"
:rows="2"
type="textarea"
placeholder="请填写地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove,addStock } from "@/api/distribution/distributionStockArticle";
import { getListOwn } from "@/api/distribution/distributionParcelList";
import { addCallDelivery } from "@/api/distribution/distrilbutionCallDelivery";
import { addClient } from "@/api/distribution/distributionClientMessage";
import { addService } from "@/api/distribution/distributionServiceLog";
import option from "@/option/distribution/distributionStockArticle";
import { mapGetters } from "vuex";
import { getDictionaryBiz } from '@/api/system/dict';
export default {
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
formCall: {},//
formService: {}, //
formCustomer: {}, //
//
selectionList: [],
//
option: option,
//
data: [],
dataPare: [],
distributionType: [],
dialogTableVisible: false,
dialogFormVisible: false,
dialogFormCustomer: false,
dialogFormService: false,
formLabelWidth: '120px',
handler:true, //
trade:false, //
municipal:true, //
taker:true, //
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
watch:{
'$route.query.id':{
handler(newVal, oldVal) {
// console.log(newVal, oldVal);
this.onLoad(this.page);
this.onLoadOwn(this.page);
},
deep: true,
immediate: true
}
},
computed: {
...mapGetters(["permission"]),
permissionList() {
return {
addBtn: this.validData(this.permission.basicdataBrandCategory_add, false),
viewBtn: this.validData(this.permission.basicdataBrandCategory_view, false),
delBtn: this.validData(this.permission.basicdataBrandCategory_delete, false),
editBtn: this.validData(this.permission.basicdataBrandCategory_edit, false)
};
},
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
handleMoke(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$router.push({
path: '/distribution/reservation/reservationFrom',
query:{
id: this.ids,
name: '添加预约单'
}
});
},
handleStockList(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$router.push({
path: '/distribution/inventory/distributionStockArticleFrom',
query: {
id : this.ids,
name : "转库存单"
}
});
//
// this.$confirm("", {
// confirmButtonText: "",
// cancelButtonText: "",
// type: "warning"
// })
// .then(() => {
// return addStock(this.ids);
// })
// .then(() => {
// this.selectionClear();
// this.onLoad(this.page);
// this.$message({
// type: "success",
// message: "!"
// });
// });
},
//
callFordelivery(inde){
switch (inde) {
case '1':
console.log(this.formCall);
this.formCall.waybillNumber = this.ids;
addCallDelivery(this.formCall).then(() => {
this.$message({
type: "success",
message: "操作成功!"
});
this.dialogFormVisible = false;
this.formCall={}
});
break;
case '2':
// console.log("",this.formService);
addService(this.formService).then(() =>{
this.$message({
type: "success",
message: "操作成功!"
});
this.dialogFormService = false;
this.formService={}
})
break;
case '3':
// console.log("",this.formCustomer);
this.formCustomer.stockArticleId = this.$route.query.id;
console.log("客户信息!!!",this.formCustomer);
addClient(this.formCustomer).then(() =>{
this.$message({
type: "success",
message: "操作成功!"
});
this.dialogFormCustomer = false;
this.formCustomer={}
this.onLoad(this.page);
})
break;
}
},
//
handlebill(row){
console.log(">>>>",this.ids);
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query:{
id: this.ids,
}
});
},
//
handleCallDelivery(ind,row){
switch (ind) {
case '1':
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.orderSelfNumbering);
});
this.formCall.waybill = ids;
this.dialogFormVisible = true;
break;
case '2':
this.dialogFormService = true;
break;
case '3':
this.dialogFormCustomer = true;
console.log("<><>",row);
this.formCustomer.name = row.customerName;
this.formCustomer.phone = row.customerTelephone;
this.formCustomer.address = row.customerAddress;
break;
}
},
init () {
this.height = this.setPx(document.body.clientHeight - 580);
getDictionaryBiz('distribution_type').then(res => {
this.distributionType = res.data.data;
});
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
//
handleEntire(){
this.handler = true;
this.taker = true;
this.trade = false;
},
//
handleTrade(){
// this.handler = true;
this.trade = true;
},
//
handleMunicipal(){
// this.handler = true;
// this.taker = true;
},
//
handlePickUpStore(){
this.loading = true;
// console.log("this.query",this.query);
let params = {};
this.query.typeService = '1';
getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
this.handler = false;
this.taker = false;
});
}, //
handleInform(index){
this.loading = true;
// console.log("this.query",this.query);
let params = {};
this.query.typeService = '1';
switch (index) {
case '1':
this.query.notification = index;
break;
case '2':
this.query.notification = index;
break;
}
this.query.typeService = '1';
getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
this.handler = false;
this.taker = false;
});
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
// console.log("",list);
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
this.query.id = this.$route.query.id;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
} ,
onLoadOwn (page, params = {}) {
this.loading = true;
getListOwn(page.currentPage, page.pageSize, {stockArticleId : this.$route.query.id}).then(res => {
console.log(">>>><>><",res.data.data);
const data = res.data.data;
this.page.total = data.total;
this.dataPare = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
<style scoped>
.el-button--text {
margin-right: 15px;
}
.el-select {
width: 300px;
}
.el-input {
width: 300px;
}
.dialog-footer button:first-child {
margin-right: 10px;
}
</style>

281
src/views/distribution/inventory/distributionStockArticleFrom.vue

@ -0,0 +1,281 @@
<template>
<basic-container>
<div class="avue-crud">
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleTrade">确定</el-button>
</div>
</div>
<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-column v-if="option.index" label="序号" type="index" width="70" 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-column prop="menu" label="转库存品数量" :width="220" align="center">
<template #="{row}">
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
<!-- <el-input v-model="row.inventoryQuantity" @blur="handleNumberRange($event,row)" :disabled= !this.ids.includes(row.id) ></el-input>-->
<el-input v-model="row.quantity" disabled ></el-input>
</template>
</el-table-column>
<!-- 操作栏模块 -->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <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="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionParcelList";
import option from "@/option/distribution/distributionStockArticleFrom";
import { mapGetters } from "vuex";
import { addStockRow } from '@/api/distribution/distributionStockArticle';
export default {
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
handleTrade(){
if(this.ids.length > 0){
let par ={
ids : this.ids,
id: this.$route.query.id
}
let a = addStockRow(par);
console.log(">>>>===",a.data);
if(a.data.success){
this.onLoad(this.page);
}
}else{
this.$message.warning("请选择需要转的包件信息!!!");
}
},
//
handleNumberRange(e,row) {
console.log("执行了2222",e,e.target.value,row);
if(e.target.value) {
e.target.value = e.target.value.replace(/[^\.\d]/g,'') //
if(e.target.value) { //
e.target.value = parseInt(e.target.value); //
}
if((e.target.value > row.quantity )) {
this.$message.error('数量不能大于订单数')
e.target.value = row.quantity;
return
}
}
},
init () {
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
this.selectionList = list;
console.log("<><><><><==",list);
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
this.query.stockArticleId = this.$route.query.id;
this.query.conditions = "1";
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>

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

@ -1,134 +1,170 @@
<template>
<div class="bmap" id="container" style="float: left"></div>
<div
style="
border: 1px solid pink;
margin-left: 5px;
height: 600px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
"
>
<!-- @change="handleCheckedCitiesChange"-->
<el-checkbox-group v-model="reservationIds">
<el-col v-for="(item, index) in reservationData">
<el-checkbox :label="item.id" :key="item.id"
>{{ item.consignee }}&emsp;{{ item.deliveryAddress }}&emsp;{{
item.deliveryPhone
}}</el-checkbox
>
</el-col>
</el-checkbox-group>
</div>
<div class="bmap" id="container" style="float: left">
</div>
<div style="border:1px solid pink ;margin-left: 5px;height: 600px;box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)" >
<!-- @change="handleCheckedCitiesChange"-->
<el-checkbox-group v-model="reservationIds" >
<el-col v-for="(item,index) in reservationData">
<el-checkbox :label="item.id" :key="item.id">{{item.consignee}}&emsp;{{item.deliveryAddress}}&emsp;{{item.deliveryPhone}}</el-checkbox>
</el-col>
</el-checkbox-group>
</div>
<div style="margin-left: 40%;margin-top: 5%;float: bottom">
<el-button type="primary" icon="el-icon-circle-close" @click="aaa">确认(转配送页面)</el-button>
<el-button icon="el-icon-circle-close" @click="this.$router.go(-1)"> </el-button>
</div>
<div style="margin-left: 40%; margin-top: 5%; float: bottom">
<el-button type="primary" icon="el-icon-circle-close" @click="checkgoto"
>确认(转配送页面)</el-button
>
<el-button icon="el-icon-circle-close" @click="back"> </el-button>
</div>
</template>
<script>
import { useStore } from 'vuex'
import { getReservationAddr } from '@/api/distribution/distributionReservation';
import { getDictionaryBiz } from '@/api/system/dict';
// import { ref } from 'vue'
export default {
data () {
return {
name: 'BmapDemo',
loading: true,
ids: null,
error: null,
addressList:[],
reservationData:[],
reservationIds:[],
setup() {
// const store = useStore()
// let latitude = ref('')
// let longitude = ref('')
// console.log(store.state.record.latitude)
// latitude.value = store.state.record.latitude
// longitude.value = store.state.record.longitude
// return {
// latitude,
// longitude
// }
}
}
},
created() {
this.$watch(
() => this.$route.params,
() => {
this.fetchData();
},
//
// data observed
{ immediate: true }
)
//
this.initMap(this.ids);
},
methods:{
fetchData() {
this.error = this.post = null
this.loading = true
if (this.$route.query.id){
this.ids= this.$route.query.id;
}
},
initMap(ids){
if (ids.length>1){
ids.split(",")
}
this.loading = true;
getReservationAddr(ids).then(res=>{
res.data.data.forEach(item=>{
this.ids.split(",").forEach(id=>{
if (item.id==id){
this.reservationIds.push(item.id)
}
})
})
console.log(this.reservationIds);
this.reservationData = res.data.data;
this.addressList=res.data.data;
})
this.loading = false;
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 {
setup() {
let router = useRouter();
let details = reactive({
name: 'BmapDemo',
loading: true,
ids: null,
error: null,
addressList: [],
reservationData: [],
reservationIds: [],
mapLoc: null,
});
onMounted(() => {
console.log(router);
details.ids = router.currentRoute.value.query.id;
initMap(router.currentRoute.value.query.id);
setTimeout(() => {
init();
}, 1500);
// setTimeout(()=>{
// details.mapLoc.clearOverlays();
},
aaa(){
console.log(">>>>>>>>>>>",this.reservationIds);
let ids = this.reservationIds.join(",")
this.$router.push({
path: '/distribution/deliveryInfo/deliveryInfo',
query: {
id: ids
// },9500)
});
watchEffect(() => {
console.log(details.reservationIds);
if(details.mapLoc){
details.mapLoc.clearOverlays();
}
// details.mapLoc.clearOverlays();
// details.mapLoc.clearLabels()
details.reservationIds.map((item,index) => {
details.reservationData.map(ite => {
if (item == ite.id) {
console.log(ite)
maplabel(ite,index)
}
});
},
},
mounted() {
let map = new BMapGL.Map("container"); //
let point = new BMapGL.Point(116.404, 39.915); //
map.centerAndZoom(point, 15);
let content = "label";
let label = new BMapGL.Label(content, { //
position: point, //
offset: new BMapGL.Size(10, 20) //
})
map.addOverlay(label);
map.addOverlay(label); //
label.setStyle({ // label
color: '#000',
fontSize: '30px',
border: '2px solid #1E90FF'
})
},
});
// details.reservationData
});
function init() {
details.mapLoc = new BMapGL.Map('container'); //
let point = new BMapGL.Point(116.404, 39.915); //
details.mapLoc.centerAndZoom(point, 12);
details.mapLoc.enableScrollWheelZoom(true);
// maplabel()
}
function maplabel(item,index) {
let myGeo = new BMapGL.Geocoder();
myGeo.getPoint(item.deliveryAddress, function (point) {
if (point) {
console.log(point,'---------------');
if(index==0){
details.mapLoc.centerAndZoom(point, 12);
}
let content = item.consignee;
let label = new BMapGL.Label(content, {
//
position:point,
offset: new BMapGL.Size(10, 20),
});
details.mapLoc.addOverlay(label); //
label.setStyle({
// label
color: '#000',
fontSize: '10px',
border: '1px solid #1E90FF',
borderRadius:'20px',
padding:'5px 10px'
});
console.log(label,'---------------');
} else {
// alert('');
console.log(point);
console.log('您选择的地址没有解析到结果!');
}
});
}
// init()
function initMap(ids) {
if (ids.length > 1) {
ids.split(',');
}
details.loading = true;
getReservationAddr(ids).then(res => {
res.data.data.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;
}
details.addressList = res.data.data;
});
details.loading = false;
}
function checkgoto() {
console.log('>>>>>>>>>>>', details.reservationIds);
let ids = details.reservationIds.join(',');
router.push({
path: '/distribution/deliveryInfo/deliveryInfo',
query: {
id: ids,
},
});
}
function back() {
router.back(-1);
}
return {
back,
checkgoto,
init,
initMap,
...toRefs(details),
};
},
};
</script>
<style scoped>
.bmap {
width: 800px;
height: 600px;
border: 1px solid pink;
}
.bmap {
width: 800px;
height: 600px;
border: 1px solid pink;
}
</style>

2
src/views/distribution/signdetail/distributionSigndetail.vue

@ -7,7 +7,7 @@
<el-form-item label="时间">
<!-- <el-input v-model="query.warehousingTime" placeholder="请输入时间"></el-input>-->
<el-date-picker
v-model="query.warehousingTime"
v-model="query.createTime"
type="date"
placeholder="请输入时间"
format="YYYY-MM-DD"

19
vite.config.js

@ -12,7 +12,7 @@ export default ({ mode, command }) => {
port: 2888,
proxy: {
'/api': {
target: 'http://192.168.2.29:13000',
target: 'http://192.168.2.11:8889',
//target: 'http://test3.javablade.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
@ -29,5 +29,22 @@ export default ({ mode, command }) => {
},
},
plugins: createVitePlugins(env, command === 'build'),
build: {
chunkSizeWarningLimit: 1000,
rollupOptions: {
output: {
// 分包
manualChunks(id) {
if (id.includes("node_modules")) {
return id
.toString()
.split("node_modules/")[1]
.split("/")[0]
.toString();
}
},
},
},
}
});
};

Loading…
Cancel
Save