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',
label: '装车件数',
type: 2,
type: 13,
values: '',
width: '130',
checkarr: [],

3
src/router/views/index.js

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

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

@ -28,12 +28,24 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<!-- 新增 -->
<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="Upload" @click="searchChange"> </el-button>
<!-- 导入 -->
<el-button
type="primary"
icon="Upload"
@click="() => (details.popUpShow.UploadPackageDelivery = true)"
>
</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
@ -84,6 +96,23 @@
</div>
</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
@closce="showdrawer"
@ -93,7 +122,7 @@
</template>
<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 dayjs from 'dayjs';
import { mapGetters } from 'vuex';
@ -115,6 +144,9 @@ import columnList from '@/option/basicdata/basicdataVehicle2.js';
import { useStore } from 'vuex';
import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
import { exportBlob } from '@/api/common';
import { getToken } from '@/utils/auth';
import { dateNow } from '@/utils/date';
import {
getList,
getDetail,
@ -194,6 +226,8 @@ const details = reactive<any>({
popUpShow: {
/** 图片预览 */
abnormalVisited: false,
/** 上传 */
UploadPackageDelivery: false,
},
/** 列表Dom节点 */
listNode: '',
@ -208,6 +242,8 @@ const details = reactive<any>({
const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } =
toRefs(details);
const instance = getCurrentInstance();
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
@ -451,7 +487,40 @@ const handleDelete = (isBatch, row: any = {}) => {
/** 导出 */
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>
</template>
<script lang="ts">
export default {
name: 'addTripartiteTransfer',
};
</script>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import functions from '@/utils/functions';
@ -888,13 +894,14 @@ const initDispatchOrder = async () => {
];
};
watch(
$route,
() => {
initPageInfo();
},
{ immediate: true }
);
// watch(
// $route,
// () => {
// initPageInfo();
// },
// { immediate: true }
// );
initPageInfo();
/** 请求运单数据 */
const initOriginWarehouseOrder = debounce(async function (params = {}) {

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

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

Loading…
Cancel
Save