Browse Source

修复部分bug

dev-xx
qb 8 months ago
parent
commit
efc605b14d
  1. 2
      src/option/distribution/zeroAdditionalRecording.js
  2. 3
      src/router/views/index.js
  3. 81
      src/views/basicdata/vehicle/basicdataVehicle2.vue
  4. 21
      src/views/distribution/artery/addTripartiteTransfer.vue
  5. 7
      src/views/distribution/artery/zeroAdditionalRecording.vue

2
src/option/distribution/zeroAdditionalRecording.js

@ -300,7 +300,7 @@ export const newColumnList = [
{ {
prop: 'loadingNum', prop: 'loadingNum',
label: '装车件数', label: '装车件数',
type: 2, type: 13,
values: '', values: '',
width: '130', width: '130',
checkarr: [], checkarr: [],

3
src/router/views/index.js

@ -218,6 +218,7 @@ export default [
name: '新增中转', name: '新增中转',
meta: { meta: {
i18n: 'data', i18n: 'data',
keepAlive: true,
}, },
component: () => component: () =>
import( import(
@ -1347,7 +1348,7 @@ export default [
}, },
], ],
}, },
{ {
path: '/distribution/checkInventoryTask/createTaskfrom', path: '/distribution/checkInventoryTask/createTaskfrom',
component: Layout, component: Layout,

81
src/views/basicdata/vehicle/basicdataVehicle2.vue

@ -28,12 +28,24 @@
<div class="avue-crud__header"> <div class="avue-crud__header">
<!-- 头部左侧按钮模块 --> <!-- 头部左侧按钮模块 -->
<div class="avue-crud__left"> <div class="avue-crud__left">
<!-- 新增 -->
<el-button type="primary" icon="Plus" @click="handleAdd"> </el-button> <el-button type="primary" icon="Plus" @click="handleAdd"> </el-button>
<el-button type="primary" icon="Delete" @click="() => handleDelete(true)"
> </el-button <!-- 删除 -->
> <el-button type="primary" icon="Delete" @click="() => handleDelete(true)">
</el-button>
<!-- 导出 -->
<el-button type="primary" icon="Download" @click="handleExport"> </el-button> <el-button type="primary" icon="Download" @click="handleExport"> </el-button>
<el-button type="primary" icon="Upload" @click="searchChange"> </el-button>
<!-- 导入 -->
<el-button
type="primary"
icon="Upload"
@click="() => (details.popUpShow.UploadPackageDelivery = true)"
>
</el-button>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -84,6 +96,23 @@
</div> </div>
</basic-container> </basic-container>
<!-- 上传 -->
<MyUpload
ref="myUpload"
v-model="details.popUpShow.UploadPackageDelivery"
templateSrc=""
uploadAddress="/api/logpm-basicdata/vehicle/import-basicdataVehicle"
isDefined
:success="
() => {
details.popUpShow.UploadPackageDelivery = false;
onLoad();
}
"
>
<!-- <el-button type="danger" icon="Download" @click="handleDownloadTemplate"> 下载模板 </el-button> -->
</MyUpload>
<!-- 列表配置显示 --> <!-- 列表配置显示 -->
<edittablehead <edittablehead
@closce="showdrawer" @closce="showdrawer"
@ -93,7 +122,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue'; import { ref, reactive, toRefs, computed, onMounted, nextTick, getCurrentInstance } from 'vue';
import functions from '@/utils/functions.js'; import functions from '@/utils/functions.js';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import { mapGetters } from 'vuex'; import { mapGetters } from 'vuex';
@ -115,6 +144,9 @@ import columnList from '@/option/basicdata/basicdataVehicle2.js';
import { useStore } from 'vuex'; import { useStore } from 'vuex';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus'; import { ElMessage, ElMessageBox } from 'element-plus';
import { exportBlob } from '@/api/common';
import { getToken } from '@/utils/auth';
import { dateNow } from '@/utils/date';
import { import {
getList, getList,
getDetail, getDetail,
@ -194,6 +226,8 @@ const details = reactive<any>({
popUpShow: { popUpShow: {
/** 图片预览 */ /** 图片预览 */
abnormalVisited: false, abnormalVisited: false,
/** 上传 */
UploadPackageDelivery: false,
}, },
/** 列表Dom节点 */ /** 列表Dom节点 */
listNode: '', listNode: '',
@ -208,6 +242,8 @@ const details = reactive<any>({
const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } = const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } =
toRefs(details); toRefs(details);
const instance = getCurrentInstance();
/** vuex */ /** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList'])); const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
@ -451,7 +487,40 @@ const handleDelete = (isBatch, row: any = {}) => {
/** 导出 */ /** 导出 */
const handleExport = () => { const handleExport = () => {
getVehicleExport(); console.log('instance :>> ', instance);
if (!details.selectionList.length) {
ElMessage({
message: '请勾选要导出的数据',
type: 'warning',
});
return;
}
let downloadUrl = `/logpm-basicdata/vehicle/export-basicdataVehicle?Blade-Auth=${getToken()}`;
let submitData = {
ids: '',
};
submitData.ids = details.selectionList.map(item => item.id).join(',');
ElMessageBox.confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
try {
details.loadingObj.pageLoading = true;
const res = await exportBlob(downloadUrl, submitData);
const { status, data } = res;
if (status !== 200) retrun;
downloadXls(res.data, `车辆信息导出${dateNow()}.xlsx`);
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
});
}; };
/** 导入 */ /** 导入 */

21
src/views/distribution/artery/addTripartiteTransfer.vue

@ -512,6 +512,12 @@
></edittablehead> ></edittablehead>
</template> </template>
<script lang="ts">
export default {
name: 'addTripartiteTransfer',
};
</script>
<script setup lang="ts"> <script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import functions from '@/utils/functions'; import functions from '@/utils/functions';
@ -888,13 +894,14 @@ const initDispatchOrder = async () => {
]; ];
}; };
watch( // watch(
$route, // $route,
() => { // () => {
initPageInfo(); // initPageInfo();
}, // },
{ immediate: true } // { immediate: true }
); // );
initPageInfo();
/** 请求运单数据 */ /** 请求运单数据 */
const initOriginWarehouseOrder = debounce(async function (params = {}) { const initOriginWarehouseOrder = debounce(async function (params = {}) {

7
src/views/distribution/artery/zeroAdditionalRecording.vue

@ -190,6 +190,8 @@
:min="0" :min="0"
:max="slotProps.scope.row.stockNum" :max="slotProps.scope.row.stockNum"
:step="1" :step="1"
:value-on-clear="0"
:controls="false"
/> />
</template> </template>
</template> </template>
@ -212,8 +214,9 @@
icon="el-icon-circle-check" icon="el-icon-circle-check"
:loading="details.loadingObj.submitLoading" :loading="details.loadingObj.submitLoading"
@click="handleEditZeroSubmit" @click="handleEditZeroSubmit"
> </el-button
> >
</el-button>
<el-dialog <el-dialog
v-model="details.showPopUpObj.editNodeIdDialogVisible" v-model="details.showPopUpObj.editNodeIdDialogVisible"
@ -788,6 +791,8 @@ const handleEditZeroSubmit = async () => {
finalNodeId: iterator.finalNodeId, finalNodeId: iterator.finalNodeId,
}; };
if (iterator.loadingNum === 0) return ElMessage.warning('存在装车数为0的数据,请移除或编辑');
if ($route.query.type === 'sign') _obj.signOrderId = iterator.signOrderId; if ($route.query.type === 'sign') _obj.signOrderId = iterator.signOrderId;
submitData.zeroSuppleList.push(_obj); submitData.zeroSuppleList.push(_obj);

Loading…
Cancel
Save