You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1283 lines
43 KiB

<template>
<basic-container>
<div class="avue-crud">
<el-row v-if="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<el-form-item label="客户名称:">
<el-input v-model="query.clientName" placeholder="请输入客户名称"></el-input>
</el-form-item>
2 years ago
<el-form-item label="客户类型:">
<!-- <el-input v-model="query.typeService" placeholder="请输入客户类型;1 C端 2 B端"></el-input>-->
<el-select v-model="query.clientType" class="m-2" placeholder="请选择客户端类型">
<el-option
v-for="item in clientType"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
/>
</el-select>
</el-form-item>
<el-form-item label="地址:">
2 years ago
<!-- <el-input v-model="query.bladeRegionProvinceId" placeholder="请输入省份"></el-input>-->
<el-cascader :options="optioner" v-model="query.bladeRegionProvinceId">
<template #default="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
2 years ago
<!-- <el-form-item label="市:">-->
<!-- <el-input v-model="query.bladeRegionCityId" placeholder="请输入市"></el-input>-->
2 years ago
<!-- </el-form-item>-->
<!-- <el-form-item label="区/县:">-->
<!-- <el-input v-model="query.bladeRegionAreaId" placeholder="请输入区/县"></el-input>-->
<!-- -->
<!-- </el-form-item>-->
<el-form-item label="合同开始时间:">
2 years ago
<!-- <el-input v-model="query.contractStartTime" placeholder="请输入合同开始时间"></el-input>-->
<div class="block">
2 years ago
<!-- <span class="demonstration">With quick options</span>-->
<el-date-picker
v-model="dataShi"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
:size="'default'"
format="YYYY/MM/DD"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
</el-form-item>
2 years ago
<!-- <el-form-item label="合同结束时间:">-->
<!-- <el-input v-model="query.contractEntTime" placeholder="请输入合同结束时间"></el-input>-->
<!-- </el-form-item>-->
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </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></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<tablecmt
:columnList="columnList"
:tableData="data"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope.row)">查看</el-text>
<el-text type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope.row)">编辑</el-text>
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text>
<!-- <el-text type="primary" text icon="el-icon-delete" @click="handleAddSon(slotProps.scope.row)">新增</el-text>
<el-text type="primary" text icon="el-icon-delete" @click="handleHistory(slotProps.scope.row)">合同历史记录</el-text>
<el-text type="primary" text icon="el-icon-delete" @click="handleEntrepot(slotProps.scope.row)">服务仓</el-text>
<el-text type="primary" text icon="el-icon-delete" @click="handleLinkman(slotProps.scope.row)">联系人</el-text>
<el-text type="primary" text icon="el-icon-delete" @click="handleBrand(slotProps.scope.row)">品牌</el-text>
<el-text type="primary" text icon="el-icon-delete" @click="handleMall(slotProps.scope.row)">三方商城</el-text> -->
<el-dropdown @command="(command)=>handleCommand(command,slotProps.scope.row)">
<el-text type="primary" text>
2 years ago
更多
<el-icon class="el-icon--right">
<arrow-down />
</el-icon>
</el-text>
2 years ago
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item command="1">
<el-text>新增</el-text>
2 years ago
</el-dropdown-item>
<el-dropdown-item command="2">
<el-text>合同历史记录</el-text>
2 years ago
</el-dropdown-item>
<el-dropdown-item command="3">
<el-text>服务仓</el-text>
2 years ago
</el-dropdown-item>
<el-dropdown-item command="4">
<el-text>联系人</el-text>
2 years ago
</el-dropdown-item>
<el-dropdown-item command="5">
<el-text>品牌</el-text>
</el-dropdown-item>
<el-dropdown-item command="6">
<el-text>三方商城</el-text>
2 years ago
</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
</template>
</tablecmt>
<!-- 列表模块 -->
</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"
2 years ago
: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="35%"
:before-close="beforeClose"
2 years ago
:close-on-click-modal="false"
append-to-body>
<el-form :disabled="view" ref="form" :model="form" :rules="rules" label-width="120px">
<!-- 表单字段 -->
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
<el-form-item label="客户编码" prop="clientCode">
<el-input v-model="form.clientCode" :validate-method="validateInput" placeholder="请输入客户编码" style="width: 100%" :disabled = viewClientEntd />
</el-form-item>
<el-form-item label="客户名称" prop="clientName">
2 years ago
<el-input v-model="form.clientName" placeholder="请输入客户名称" style="width: 100%" />
</el-form-item>
<el-form-item label="客户类型" prop="clientType">
2 years ago
<!-- <el-input v-model="form.clientName" placeholder="请输入客户名称" style="width: 100%"/>-->
<!-- <el-select v-model="form.clientType" class="m-2" placeholder="请选择客户类型" style="width: 100%">-->
<!-- <el-option label="发货方" value="1"/>-->
<!-- <el-option label="收货方" value="2"/>-->
<!-- </el-select>-->
<el-select v-model="form.clientType" class="m-2" placeholder="请选择客户端类型" style="width: 100%">
<el-option
v-for="item in clientType"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
/>
</el-select>
2 years ago
</el-form-item>
<el-form-item label="服务类型" prop="typeServiceList">
2 years ago
<el-select v-model="form.typeServiceList" multiple placeholder="请选择" style="width: 100%" @change="coverCharge">
<el-option
v-for="item in freightType"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="配送类型" prop="businessType" v-if="distriType">
2 years ago
<el-radio-group v-model="form.businessType" class="ml-4" v-for="item in distributionType">
<el-radio :label="item.dictKey" size="large" style="margin-right: 25px">{{item.dictValue}}</el-radio>
2 years ago
<!-- <el-radio label="2" size="large">Option 2</el-radio>-->
</el-radio-group>
<!-- </div>-->
</el-form-item>
<!-- <el-form-item label="客户端类型" prop="typeService">
&lt;!&ndash; <el-input v-model="form.typeService" placeholder="请输入客户类型"/>&ndash;&gt;
&lt;!&ndash; <el-input v-model="form.typeService" placeholder="请输入客户类型;1 C端 2 B端"/>&ndash;&gt;
<el-select v-model="form.typeService" class="m-2" placeholder="请选择客户端类型" style="width: 100%">
<el-option
v-for="item in clientType"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
/>
</el-select>
</el-form-item>-->
<el-form-item label="联系人" prop="linkman" v-if="viewEntd">
2 years ago
<el-input v-model="form.linkman" placeholder="请输入联系人" style="width: 100%" />
</el-form-item>
<el-form-item label="联系电话" prop="phone" v-if="viewEntd">
2 years ago
<el-input v-model="form.phone" placeholder="请输入联系电话" style="width: 100%" />
</el-form-item>
2 years ago
<el-form-item label="地址" prop="bladeRegionProvinceId">
<!-- <el-input v-model="form.bladeRegionProvinceId" placeholder="请输入省份"/>-->
<el-cascader :options="optioner" style="width: 100%" v-model="form.bladeRegionProvinceId">
<template #default="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
<el-form-item label="详细地址" prop="detailedly">
2 years ago
<el-input v-model="form.detailedly" placeholder="请填写详细地址" style="width: 100%" />
</el-form-item>
<!-- <el-form-item label="三方商城" prop="tripartiteMall">-->
<!-- <el-input v-model="form.tripartiteMall" placeholder="请填写三方商城" style="width: 100%" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="开票信息" prop="billingInformation">-->
<!-- <el-input v-model="form.billingInformation" placeholder="请填写开票信息" style="width: 100%" />-->
<!-- </el-form-item>-->
2 years ago
<!-- <el-form-item label="市" prop="bladeRegionCityId">-->
<!-- <el-input v-model="form.bladeRegionCityId" placeholder="请输入市"/>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="区/县" prop="bladeRegionAreaId">-->
<!-- <el-input v-model="form.bladeRegionAreaId" placeholder="请输入区/县"/>-->
<!-- </el-form-item>-->
<el-form-item label="合同附件" prop="leaseAccessories" style="width: 100%">
2 years ago
<!-- <el-input v-model="form.leaseAccessories" placeholder="请输入合同附件"/>-->
<el-upload
v-model:file-list="fileList"
class="upload-demo"
:action="action"
:headers="headers"
multiple
:on-preview="handlePreview"
:on-success="(response, file, fileList) => {uploadSuccess(fileList)}"
:on-remove="handleRemove"
:before-remove="beforeRemove"
2 years ago
:before-upload="beforeUploadFn"
:limit="3"
:on-exceed="handleExceed"
>
2 years ago
<el-button>上传</el-button>
<template #tip>
<div class="el-upload__tip">
大小不超过500KB的jpg/png文件
</div>
</template>
</el-upload>
<el-image-viewer
v-if="showImgViewer"
:url-list="imgPreviewUrl"
@close="handleCo"
:z-index="300"
fit="cover"
/>
</el-form-item>
<el-form-item label="合同开始时间" prop="contractStartTime" label-width="120px">
2 years ago
<!-- <el-input v-model="form.contractStartTime" placeholder="请输入合同开始时间"/>-->
<div class="demo-date-picker" style="width: 60%">
<div class="block">
2 years ago
<!-- <span class="demonstration">Default</span>-->
<el-date-picker
v-model="form.contractStartTime"
type="date"
placeholder="选择时间"
2 years ago
format="YYYY/MM/DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
</div>
</el-form-item>
<el-form-item label="合同结束时间" prop="contractEntTime" label-width="120px">
2 years ago
<!-- <el-input v-model="form.contractEntTime" placeholder="请输入合同结束时间"/>-->
<div class="demo-date-picker">
<div class="block">
<!-- <span class="demonstration">Default</span>-->
<el-date-picker
v-model="form.contractEntTime"
type="date"
placeholder="选择时间"
2 years ago
format="YYYY/MM/DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
</div>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit('form')"> </el-button>
<el-button icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
<el-drawer
title="子表操作"
append-to-body
size="60%"
v-model="drawer"
:direction="direction"
:before-close="handleDrawerClose">
<BasicShopSub :mainId="basicClientId"></BasicShopSub>
</el-drawer>
2 years ago
<!-- <el-drawer-->
<!-- title="历史记录"-->
<!-- append-to-body-->
<!-- size="60%"-->
<!-- v-model="drawer"-->
<!-- :direction="direction"-->
<!-- :before-close="handleDrawerClose">-->
<!-- <BasicShopSub :mainId="basicClientId"></BasicShopSub>-->
<!-- </el-drawer>-->
</div>
</basic-container>
</template>
2 years ago
<script>
2 years ago
import { getList, getDetail, add, update, updateCargoControl, remove, getListCode } from '@/api/basicdata/basicClient';
2 years ago
import option from '@/option/basicdata/basicClient';
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';
export default {
2 years ago
components: {
BasicShopSub
},
2 years ago
data() {
return {
columnList: [
{
prop: '',
label: '序号',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'clientName',
label: '客户名称',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'clientCode',
label: '客户编码',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'clientType',
label: '客户类型',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'typeService',
label: '客户类型',
type: 2,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'bladeRegionProvinceId',
label: '地址',
type: 2,
values: '',
width: '300',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'fileName',
label: '合同附件',
type: 9,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
downprop:'leaseAccessories'
},
{
prop: 'cargoControl',
label: '控货',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'contractStartTime',
label: '合同开始时间',
type: 5,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'contractEntTime',
label: '合同结束时间',
type: 5,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: '',
label: '操作',
type: 6,
values: '',
width: '250',
checkarr: [],
fixed: 'right',
hide: true,
},
],
columnListedit: [],
2 years ago
activeNames: ['1'],
height: 0,
showImgViewer: false,
2 years ago
imgPreviewUrl: [],// 当前要放大的图片存放位置
fileList: [],
// 主键
basicClientId: '',
// fileList:[], // 上传数据
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否展示抽屉
drawer: false,
// 抽屉方向
direction: 'rtl',
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
viewEntd: true,
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
viewClientEntd: false,
// 查询信息
query: {},
//查询时间
2 years ago
dataShi: '',
// 分页信息
page: {
currentPage: 1,
2 years ago
pageSize: 30,
total: 40
},
// 表单数据
form: {
2 years ago
contractStartTime: '',
contractEntTime: ''
},
// 选择行
selectionList: [],
2 years ago
testForm: {},
// 表单配置
option: option,
// 表单列表
data: [],
2 years ago
clientType: [],
freightType: [],
2 years ago
optioner: [],
distributionType: [],
distriType: false, // 配送自提
shortcuts: [
{
text: '上周',
value: () => {
2 years ago
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
}
},
{
text: '上个月',
value: () => {
2 years ago
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
}
},
{
text: '最近3个月',
value: () => {
2 years ago
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
}
}
],
rules: {
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
clientCode: [
{ required: true, message: '请输入客户编码', trigger: 'blur' },
// { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' }
2 years ago
{ validator: this.validateInput, trigger: 'blur' }
],
clientName: [
{ required: true, message: '请输入客户名称', trigger: 'blur' },
// { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' }
],
typeService: [
2 years ago
{ required: true, message: '请选择客户端类型', trigger: 'blur' }
],
businessType: [
{ required: true, message: '请选择配送业务类型', trigger: 'change' },
// { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' }
],
clientType: [
{ required: true, message: '请选择客户类型', trigger: 'change' }
],
typeServiceList: [
{ required: true, message: '请选择服务类型', trigger: 'change' }
],
linkman: [
{ required: true, message: '请填写联系人', trigger: 'blur' }
],
detailedly: [
{ required: true, message: '请填写详细地址', trigger: 'blur' }
],
phone: [
{ required: true, message: '请填写联系电话', trigger: 'blur' }
],
2 years ago
contractEntTime: [
{ type: 'date', required: true, message: '请选择合同结束时间', trigger: 'change' }
],
contractStartTime: [
{ type: 'date', required: true, message: '请选择合同开始时间', trigger: 'change' }
],
2 years ago
bladeRegionProvinceId: [
{ required: true, message: '请选择地址', trigger: 'change' }
],
leaseAccessories: [
{ required: true, message: '请上传合同文件', trigger: 'blur' }
]
},
2 years ago
bianji: false
};
},
created() {
},
2 years ago
mounted() {
this.init();
},
computed: {
2 years ago
...mapGetters(['permission']),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
2 years ago
return ids.join(',');
},
headers() {
return {
2 years ago
'Blade-Auth': 'Bearer ' + getToken()
};
},
action() {
return '/api/blade-resource/oss/endpoint/put-file';
// return '/api/blade-resource/oss/endpoint/put-file-attach'
}
},
methods: {
handleCommand(command,row){
console.log(command,row)
switch (Number(command)) {
case 1:
this.handleAddSon(row)
break;
case 2:
this.handleHistory(row)
break;
case 3:
this.handleEntrepot(row)
break;
case 4:
this.handleLinkman(row)
break;
case 5:
this.handleBrand(row)
break;
case 6:
this.handleMall(row)
break;
}
},
2 years ago
//远程校验
validateInput(value,a) {
// console.log("执行了",value,a);
return new Promise((resolve, reject) => {
// 发送异步请求到服务器进行校验
// 假设请求返回的数据为 { valid: true } 表示校验通过
// 模拟异步请求,假设延时1秒
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
if(!this.viewClientEntd){
setTimeout(async () => {
const response = { valid: false }; // 假设校验通过
await getListCode({ code: a }).then(res =>{
// console.log("smgsmg",res.data);
if (res.data.data.length > 0) {
reject(new Error('编码已存在')); // 校验不通过,调用 reject() 并传递错误信息
} else {
resolve(); // 校验通过,调用 resolve()
}
})
}, 1000);
}else{
resolve();
}
2 years ago
});
},
2 years ago
coverCharge(num) {
this.distriType = false;
2 years ago
// console.log(num);
2 years ago
num.forEach(i =>{
if(i == '3'){
this.distriType = true;
}
})
},
handleChange(val) {
console.log(val);
},
//
handleMall(row) {
2 years ago
// console.log('>>>', row);
2 years ago
this.$router.push({
path: '/basicdata/brand/basicdataTripartiteMall',
query: {
id: row.id,
name: '商场 - ' + row.clientName
}
});
},
//打开文件
2 years ago
downloadLink(row) {
console.log('>>>>>', row);
2 years ago
window.open('http://192.168.10.100:8012/onlinePreview?url=' + encodeURIComponent(Base64.encode(row.leaseAccessories)));
},
//控制控货
2 years ago
makeCargo(row) {
console.log('控货操作!!', row);
let r = {
2 years ago
id: row.id,
cargoControl: row.cargoControl
2 years ago
};
this.$confirm(`确定要修改${row.clientName}的控货状态吗?`, {
2 years ago
type: 'warning',
//beforeClose 阻止关闭弹窗
beforeClose: async (action, instance, done) => {
//下面这行代码就是弹出的确认删除和取消删除
2 years ago
if (action === 'confirm') {
// 调取接口
updateCargoControl(r).then(res => {
console.log(res);
2 years ago
if (res.statusText == 'OK') {
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
done();
2 years ago
} else {
this.$message({
2 years ago
type: 'warning',
message: '操作失败!'
});
}
});
2 years ago
} else {
//点击其他地方时就相当于点击了false
//done 关闭窗口
done();
}
}
});
},
uploadSuccess(fileList) {
2 years ago
console.log('123123123', fileList);
// this.form.fileName =
// this.$set(row, 'imageCos', fileList);
2 years ago
if (this.title == '编辑') {
this.bianji = true;
}
},
handleRemove(file) {
2 years ago
console.log('3333333', file);
let id1 = this.fileList.findIndex(item => {
if (item.id == file.url) {
2 years ago
return true;
}
2 years ago
});
this.fileList.splice(id1, 1);
2 years ago
console.log('fileList', this.fileList);
},
handleCo(file, fileList) {
// console.log('3333333',file, fileList);
2 years ago
this.showImgViewer = false;
},
2 years ago
//文件上传前的一些业务需要的校验
beforeUploadFn (file, fileList) {
// console.log("上传校验");
let fileNameLength = file.name.lastIndexOf('.') // 文件名开始到最后一个点的长度
let fileFormat = file.name.substring(fileNameLength + 1, (file.name).length)
fileFormat = fileFormat.toLowerCase()
let imgArr = ['txt']
if (imgArr.includes(fileFormat)) {
// this.warning(this.$t('lang.fileFormat'))
return false
} else {
return true
}
},
handlePreview(file) {
2 years ago
console.log('111111', file);
this.imgPreviewUrl[0] = file.response.data.link;
// this.imgPreviewUrl[0] = file.url;
// this.imgPreviewUrl[0] = this.$api + file.response.data.id
this.showImgViewer = true;
2 years ago
console.log('-=-=sc上传', this.fileList);
},
handleExceed(files, fileList) {
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
},
beforeRemove(file, fileList) {
2 years ago
return this.$confirm(`确定移除 ${file.name}`);
},
2 years ago
async init() {
//字典
getDictionaryBiz('client_type').then(res => {
// console.log("字典》》》",res);
this.clientType = res.data.data;
});
2 years ago
//字典
getDictionaryBiz('basic_freight_type').then(res => {
// console.log("字典》》》",res);
this.freightType = res.data.data;
});
//字典
getDictionaryBiz('distribution_type').then(res => {
// console.log("字典》》》",res);
this.distributionType = res.data.data;
});
// console.log("globalc.optioner===",globalc.optioner);
// let optioner = JSON.parse(localStorage.getItem('optioner'));
// // console.log("-=-=-=-=",optioner);
// if(optioner.length > 0){
// this.optioner = optioner
// console.log("打印》》》",this.optioner);
// }else{
// globalc.useGetGlobalProperties().then(res =>{
// this.optioner = res;
// console.log("打印》》》",this.optioner);
// localStorage.setItem("optioner",JSON.stringify(globalc.optioner))
// });
// }
// console.log('市111', this.optioner);
this.height = this.setPx(document.body.clientHeight - 340);
getLazyTreeAll().then(res => {
if (res.data.success) {
this.optioner = res.data.data;
this.onLoad(this.page);
}
});
},
2 years ago
searchHide() {
this.search = !this.search;
},
2 years ago
searchChange() {
this.onLoad(this.page);
},
2 years ago
searchReset() {
this.query = {};
this.dataShi = '';
this.page.currentPage = 1;
this.onLoad(this.page);
},
2 years ago
handleSubmit(from) {
2 years ago
console.log('上传的集合。。', JSON.parse(JSON.stringify(this.fileList)));
if (this.title == '编辑' && this.bianji == false) {
console.log('编辑1111');
if (this.fileList.length > 0) {
let li = [];
this.fileList.forEach(it => {
2 years ago
li.push(it.url);
2 years ago
});
this.form.leaseAccessories = li.length > 0 ? li.join(',') : null;
} else {
return this.$message.warning('请上传文件!');
}
2 years ago
} else {
if (this.fileList.length > 0) {
let li = [];
this.fileList.forEach(it => {
2 years ago
li.push(it.response.data.link);
this.form.fileName = it.response.data.originalName;
2 years ago
});
this.form.leaseAccessories = li.length > 0 ? li.join(',') : null;
} else {
return this.$message.warning('请上传文件!');
}
}
if (!this.form.id) {
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
console.log('添加提交的数据:', this.form);
this.$refs[from].validate((valid) => {
if (valid) {
// this.form.typeService = !!this.form.typeService ? parseInt(this.form.typeService) : undefined;
this.form.bladeRegionCityId = this.form.bladeRegionProvinceId[1];
this.form.bladeRegionAreaId = this.form.bladeRegionProvinceId[2];
this.form.bladeRegionProvinceId = this.form.bladeRegionProvinceId[0];
2 years ago
console.log("上传llll>>>",this.form);
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
});
} else {
console.log('error submit!!');
return false;
}
});
} else {
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
this.$refs[from].validate((valid) => {
if (valid) {
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
console.log('修改提交的数据:', this.form);
// this.form.typeService = !!this.form.typeService ? parseInt(this.form.typeService) : undefined;
this.form.bladeRegionCityId = this.form.bladeRegionProvinceId[1];
this.form.bladeRegionAreaId = this.form.bladeRegionProvinceId[2];
this.form.bladeRegionProvinceId = this.form.bladeRegionProvinceId[0];
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
2 years ago
});
} else {
console.log('error submit!!');
return false;
}
});
}
},
2 years ago
handleAdd() {
this.title = '新增';
this.form = {};
2 years ago
this.fileList = [];
2 years ago
this.box = true;
this.distriType = false;
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
this.viewClientEntd = false;
},
2 years ago
handleAddSon(row) {
console.log(row)
2 years ago
this.$router.push({
path: '/basicdata/brand/basicClientFrom',
query: {
id: row.id,
name: '新增 - ' + row.clientName
}
});
},
handleEdit(row) {
this.title = '编辑';
this.fileList = [];
2 years ago
this.box = true;
this.distriType = false;
this.viewEntd = false;
Squashed commit of the following: commit 99767959345c7f49b5bb09d838c1fbe6201e95e9 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:37:39 2023 +0800 Squashed commit of the following: commit af78cbe8410158165f447cbfb1d5daf749a6fabd Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 17:59:51 2023 +0800 1.货架 commit 563be24098c81d3a96d8296efaca25768a372937 Author: 0.0 <1092404103.qq.com> Date: Fri Aug 11 10:28:28 2023 +0800 1.托盘功能 commit 957798645db303a23b58fe4a1ea9a910fdc86686 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 21:54:02 2023 +0800 1.托盘详情 commit ce6eda80f0d11a63810de6cef36552a4abf0a67e Merge: 7881d7d 20719d8 Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:57 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # vite.config.js commit 7881d7d32695982ce29fd30d3f42f6cbd24bec5e Author: zhangsiyu <q3183592900@qq.com> Date: Tue Aug 15 14:30:29 2023 +0800 库位可视化 commit 20719d883c23944f6f8f805ccd7552bf4cdf31f0 Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:44 2023 +0800 增加梦天的配送车次和在在库包件 commit e2c09e0fa7037a78d212ade0cd4415f87bfcdc79 Merge: 511868d b7cc43a Author: pref_mail@163.com <123456> Date: Tue Aug 15 10:27:12 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit b7cc43a0fef6778c0a06cd3f5530f1dfa3fafaae Author: kilo <wan.ren@foxmail.com> Date: Mon Aug 14 20:35:43 2023 +0800 商配编辑编辑页面调整 commit a68fc74bd9158a69489426079969f889acae9edc Merge: d518f25 82b5993 Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:23 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit d518f251c09b14d1391b070d3b7b727936428b4a Author: caoyizhong <1270296080@qq.com> Date: Mon Aug 14 15:38:17 2023 +0800 修改自提操作编辑提货单 commit 511868d27cb87edba48f4ee50e061cc2f8474db0 Merge: d26f11f 82b5993 Author: pref_mail@163.com <123456> Date: Mon Aug 14 14:34:39 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 82b5993dcec4d56e0908ad5d85ca4819592ab8d7 Author: big-y <804609860@qq.com> Date: Mon Aug 14 13:35:22 2023 +0800 提货单提交bug修复 commit d26f11f3396f3840f29d49287cbe162ee06f04f3 Merge: 9faf783 8a6d42a Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:46 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 9faf783694e1a10bfd18eb5633f4f51180a64ed7 Author: pref_mail@163.com <123456> Date: Mon Aug 14 12:49:44 2023 +0800 1.修改名称 将叉车司机修改为备货人员 commit 8a6d42ac12565efbdc9f510150011edc3f9d1f7f Merge: 2c6759a 4925f66 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 10:07:22 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue # vite.config.js commit 2c6759a0e3f10f66d8148db9c21d6eee1c46a8b2 Author: zhangsiyu <q3183592900@qq.com> Date: Mon Aug 14 09:59:58 2023 +0800 Squashed commit of the following: commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成 commit 37356e4d770abad99969e7fd25b5f27d8a6f3517 Author: 0.0 <1092404103.qq.com> Date: Thu Aug 10 09:08:11 2023 +0800 1.隐藏按钮 commit 1272b45ea75a3c1a1ffa7411a55972dade77e8df Author: kilo <wan.ren@foxmail.com> Date: Wed Aug 9 21:56:21 2023 +0800 订单新增调整 commit e3c6e255ffbda3ff7d823b9014855ac1419b607e Author: 0.0 <1092404103.qq.com> Date: Wed Aug 9 21:40:34 2023 +0800 1.物料导出导入,托盘报损 commit b598c7054284296ec7ebe5fd73ef19b324dd18aa Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 21:02:55 2023 +0800 修改批量补充物料 commit 47ab0850727b0581c9a427f8a5bc9f03769cfcc7 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 15:56:56 2023 +0800 添加订单字段 commit 921ea4ffd0d7689f517a3c7da529500352681053 Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 14:02:16 2023 +0800 添加三方物料 commit d78b8a9da4bbba55cd44afac088abd2fc1d5c6ea Merge: 1b1efea 454ce4c Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1b1efea6a5327ee0375fe5596c4dddb803a48f1a Author: caoyizhong <1270296080@qq.com> Date: Wed Aug 9 11:30:31 2023 +0800 修改文字提醒 commit 4925f666f2e9d31abf228047d62893813cf82329 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 18:00:23 2023 +0800 修改自提操作添加订单查询 commit b0b590868f5fa6f71185b961c6207faa9e769cf5 Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 14:50:23 2023 +0800 修改自提操作添加订单 commit 2b6447ea94e7605e453541a84c8178bd39386efb Author: caoyizhong <1270296080@qq.com> Date: Fri Aug 11 13:31:34 2023 +0800 修改自提操作 commit bb7cdb8d1e6c95cbc9150cec2d3634a4e1554180 Merge: fab70c4 cbb2a85 Author: big-y <804609860@qq.com> Date: Fri Aug 11 09:35:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev # Conflicts: # src/views/distribution/inventory/distributionStockArticleDetails.vue commit cbb2a855b0ad8d211a0f6cd644ef1b0925ca19b7 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 22:14:50 2023 +0800 修改订单详细字段 commit 7b99fabb027b28d8f307b79ef71bf8c9b08d1566 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 21:36:15 2023 +0800 修改订单查询条件 commit 3d9a02978df8e0115cbead4d5b58171985a39791 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 20:41:59 2023 +0800 修改客户信息编辑编码校验 commit d8aa2f2c1d693721c4412cf238dbff106c5a1e7e Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 19:39:39 2023 +0800 修改客户服务仓添加 commit fab70c4b27fbbe5e77133ca5902b75ec65a3d8c7 Author: big-y <804609860@qq.com> Date: Thu Aug 10 19:11:23 2023 +0800 标签渲染 commit ae4f8315959741b7db778804919b24825bb42f0d Author: big-y <804609860@qq.com> Date: Thu Aug 10 18:49:31 2023 +0800 标签渲染 commit 9cca1d753a662e4c7dcaa57573e81668c0d55624 Merge: 9aa102a b2e7078 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:30:00 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9aa102af6dcb6a45cc6263641ef4b83fa46e0ed6 Author: caoyizhong <1270296080@qq.com> Date: Thu Aug 10 17:29:35 2023 +0800 修改班组添加操作 commit 5cbd76720706977e143a8419fd1af3e7f2fc8d1c Author: big-y <804609860@qq.com> Date: Thu Aug 10 16:19:29 2023 +0800 标签渲染 commit b2e7078fbe3297fffaa54926e533f809f2ac6546 Merge: 553e8d3 37356e4 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:33:28 2023 +0800 Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev commit 553e8d3c4e0f7474c8d6e5f8a667a504ec6eab60 Author: pref_mail@163.com <123456> Date: Thu Aug 10 14:32:55 2023 +0800 没有修改二维码包间生成
2 years ago
this.viewClientEntd = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
if(this.form.detailedly == "0" || this.form.detailedly == "-1"){
this.form.detailedly = "";
}
let bus =[];
this.form.typeServiceBusiness.forEach(i =>{
bus.push(i.typeService);
if(i.typeService == '3'){
this.distriType = true;
this.form.businessType = i.mold;
}
})
if(!!bus){
this.form.typeServiceList = bus;
}
2 years ago
let a = [];
if (!!this.form.bladeRegionProvinceId) {
if(res.data.data?.bladeRegionProvinceId){
a.push(res.data.data.bladeRegionProvinceId);
}
if(res.data.data?.bladeRegionCityId){
a.push(res.data.data.bladeRegionCityId);
}
if(res.data.data?.bladeRegionAreaId){
a.push(res.data.data.bladeRegionAreaId);
}
}
this.form.bladeRegionProvinceId = a;
2 years ago
if (!!this.form.leaseAccessories) {
if (this.form.leaseAccessories.includes(',')) {
let le = [];
2 years ago
let d = this.form.leaseAccessories.splice(',');
d.forEach(i => {
let q = {
name: '',
url: i
};
le.push(q);
2 years ago
});
this.fileList = le;
2 years ago
} else {
this.fileList = [{
name: this.form.fileName,
2 years ago
url: this.form.leaseAccessories
}];
}
}
});
},
2 years ago
handleView(row) {
this.title = '查看';
// this.view = true;
// this.box = true;
// this.fileList = [];
this.$router.push({
path:'/basicdata/brand/basicClientDetail',
query:{
id:row.id
}
})
return
getDetail(row.id).then(res => {
// res.data.data.typeService = res.data.data.typeService.toString();
2 years ago
console.log('>>>>>', res.data.data);
this.form = res.data.data;
if(this.form.detailedly == "0" || this.form.detailedly == "-1"){
this.form.detailedly = "";
}
let bus =[];
// console.log("????><><><",this.form.typeServiceBusiness);
this.form.typeServiceBusiness.forEach(i =>{
bus.push(i.typeService);
if(i.typeService == '3'){
this.distriType = true;
// i.businessType = i.mold;
this.form.businessType= i.mold;
}
})
if(!!bus){
this.form.typeServiceList = bus;
}
//处理第
2 years ago
let a = [];
if (!!this.form.bladeRegionProvinceId) {
if(res.data.data?.bladeRegionProvinceId){
a.push(res.data.data.bladeRegionProvinceId);
}
if(res.data.data?.bladeRegionCityId){
a.push(res.data.data.bladeRegionCityId);
}
if(res.data.data?.bladeRegionAreaId){
a.push(res.data.data.bladeRegionAreaId);
}
}
console.log("aaa",a);
this.form.bladeRegionProvinceId = a;
//处理图片
2 years ago
if (!!this.form.leaseAccessories) {
if (this.form.leaseAccessories.includes(',')) {
let le = [];
2 years ago
let d = this.form.leaseAccessories.splice(',');
d.forEach(i => {
console.log(">>>>",i);
2 years ago
let q = {
name: '',
url: i
};
le.push(q);
2 years ago
});
this.fileList = le;
2 years ago
} else {
this.fileList = [{
name: this.form.fileName,
2 years ago
url: this.form.leaseAccessories
}];
}
}
});
},
handleDrawer(row) {
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;
// this.drawer = true;
// this.$router.push('/basicdata/brand/basicHistoricalContract?id='+row.id+";name="+row.clientName);
this.$router.push({
2 years ago
path: '/basicdata/brand/basicHistoricalContract',
query: {
id: row.id,
2 years ago
name: '历史记录 - ' + row.clientName
}
});
},
//仓库
handleEntrepot(row) {
// this.basicClientId = row.id;
// this.drawer = true;
// this.$router.push('/basicdata/brand/basicHistoricalContract?id='+row.id+";name="+row.clientName);
this.$router.push({
2 years ago
path: '/basicdata/brand/basicStorageServices',
query: {
id: row.id,
2 years ago
name: '服务仓 - ' + row.clientName,
type: '2'
}
});
},
//联系人
handleLinkman(row) {
this.$router.push({
2 years ago
path: '/basicdata/brand/basicStoreContact',
query: {
id: row.id,
2 years ago
name: '联系人 - ' + row.clientName,
}
});
},
//基地
handleBase(row) {
this.$router.push({
2 years ago
path: '/basicdata/brand/basicdataCustomerBase',
query: {
id: row.id,
2 years ago
name: '基地 - ' + row.clientName
}
});
},
//商场
handleStore(row) {
this.$router.push({
2 years ago
path: '/basicdata/brand/basicShop',
query: {
id: row.id,
2 years ago
name: '门店- ' + row.clientName
}
});
},
2 years ago
handleDrawerClose() {
this.basicClientId = '';
this.drawer = false;
},
2 years ago
handleDelete() {
if (this.selectionList.length === 0) {
2 years ago
this.$message.warning('请选择至少一条数据');
return;
}
2 years ago
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
});
},
2 years ago
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
});
},
2 years ago
beforeClose(done) {
done();
this.form = {};
this.view = false;
},
2 years ago
onClose(done) {
console.log("执行了");
},
2 years ago
selectionChange(list) {
this.selectionList = list;
},
2 years ago
selectionClear() {
this.selectionList = [];
// this.$refs.table.clearSelection();
},
2 years ago
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
2 years ago
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
2 years ago
onLoad(page, params = {}) {
this.loading = true;
2 years ago
console.log('-=-=', this.query);
if (this.dataShi.length > 0) {
console.log('-=-=', this.dataShi);
this.query.contractStartTime = this.dataShi[0];
this.query.contractEntTime = this.dataShi[1];
}
2 years ago
if (!!this.query.bladeRegionProvinceId) {
this.query.bladeRegionCityId = this.query.bladeRegionProvinceId[1];
this.query.bladeRegionAreaId = this.query.bladeRegionProvinceId[2];
this.query.bladeRegionProvinceId = this.query.bladeRegionProvinceId[0];
}
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
2 years ago
console.log(data);
this.clientType.forEach(it => {
data.records.forEach(i => {
if (parseInt(it.dictKey) == parseInt(i.clientType)) {
i.typeService = it.dictValue;
console.log('==-=-=', i.typeService, it.dictKey, it.dictValue);
}
2 years ago
if (i.clientType == '-1') {
i.typeService = '无';
}
2 years ago
});
});
let dz = '';
data.records.forEach(it => {
let arrsheng = this.optioner.filter((i) => {
return it.bladeRegionProvinceId == i.value;
});
if(arrsheng.length == 0) return
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
let arrshi = arrsheng[0].children.filter((i) => {
return it.bladeRegionCityId == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
let arrqu = arrshi[0].children.filter((i) => {
return it.bladeRegionAreaId == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
dz = arrsheng[0].label + (arrshi[0].label?`/${arrshi[0].label}`:``) + (arrqu[0]?.label?`/${arrqu[0]?.label}`:'');
it.bladeRegionProvinceId = dz;
2 years ago
});
// console.log("dzdz",dz);
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>