Browse Source

新增欧派回传页面字段

dev
qb 4 days ago
parent
commit
54f47fa8af
  1. 33
      src/option/op/Oppaidatapushback.js
  2. 88
      src/views/factory/op/Oppaidatapushback.vue

33
src/option/op/Oppaidatapushback.js

@ -26,7 +26,7 @@ export const columnList = [
head: false, head: false,
}, },
{ {
prop: 'pushStatusNameS', prop: 'pushStatusName',
label: '推送类型', label: '推送类型',
type: 3, type: 3,
values: '', values: '',
@ -49,6 +49,17 @@ export const columnList = [
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'businessModelName',
label: '业务模式',
type: 3,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'orderPackCode', prop: 'orderPackCode',
label: '包条码', label: '包条码',
@ -128,14 +139,14 @@ export const columnList = [
head: false, head: false,
}, },
{ {
prop: 'createUserName', prop: 'createUserName',
label: '操作', label: '操作',
type: 6, type: 6,
values: '', values: '',
width: '200', width: '200',
checkarr: [], checkarr: [],
fixed: 'right', fixed: 'right',
sortable: false, sortable: false,
}, },
]; ];

88
src/views/factory/op/Oppaidatapushback.vue

@ -20,7 +20,9 @@
<!-- 头部左侧按钮模块 --> <!-- 头部左侧按钮模块 -->
<div class="avue-crud__left"> <div class="avue-crud__left">
<el-button type="primary" icon="Upload" @click="Pushstorage">推送入库</el-button> <el-button type="primary" icon="Upload" @click="Pushstorage">推送入库</el-button>
<el-button type="success" icon="Download" @click="Pushoutbounddelivery">推送出库</el-button> <el-button type="success" icon="Download" @click="Pushoutbounddelivery"
>推送出库</el-button
>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
@ -34,9 +36,17 @@
<!-- 首页表格 --> <!-- 首页表格 -->
<el-row> <el-row>
<!-- 列表模块 --> <!-- 列表模块 -->
<tablecmt class="tableNode" :columnList="details.columnList" :tableData="data" :loading="loadingObj.list" <tablecmt
@inputTxt="inputsc" @timeCheck="timesc" @btnCheck="btnsc" @selectCheck="selectsc" class="tableNode"
@selection="selectionChange"> :columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps"> <template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'"> <template v-if="slotProps.scope.column.label === '操作'">
<el-text @click="Pushstorage(slotProps.scope.row)">推送入库</el-text> <el-text @click="Pushstorage(slotProps.scope.row)">推送入库</el-text>
@ -50,9 +60,17 @@
<el-row class="el-fy"> <el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> <div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div> <div></div>
<el-pagination align="right" background @size-change="sizeChange" @current-change="currentChange" <el-pagination
:current-page="page.currentPage" :page-sizes="[30, 50, 80, 120]" :page-size="page.pageSize" align="right"
layout="total, sizes, prev, pager, next, jumper" :total="page.total"> background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination> </el-pagination>
</div> </div>
</el-row> </el-row>
@ -69,8 +87,12 @@
</el-dialog> </el-dialog>
</basic-container> </basic-container>
<!-- 列表配置显示 --> <!-- 列表配置显示 -->
<edittablehead @closce="showdrawer" :drawerShow="drawerShow" :columnList="details.columnList" <edittablehead
v-model="details.columnList"></edittablehead> @closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template> </template>
<script setup> <script setup>
@ -78,7 +100,7 @@ import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue
import { columnList } from '@/option/op/Oppaidatapushback.js'; import { columnList } from '@/option/op/Oppaidatapushback.js';
import { $_Getfactoryre, $_sendDataByChoes } from '@/api/op/index.js'; import { $_Getfactoryre, $_sendDataByChoes } from '@/api/op/index.js';
import { getDictionaryBiz } from '@/api/system/dict'; // import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util'; import { handleTranslationDataSeclect, processRowProperty, setNodeHeight } from '@/utils/util';
import { ElMessageBox, ElMessage } from 'element-plus'; import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util'; import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex'; import { useStore } from 'vuex';
@ -301,7 +323,8 @@ const onLoad = () => {
if (res.data.code == 200) { if (res.data.code == 200) {
details.data = res.data.data.records || []; details.data = res.data.data.records || [];
details.page.total = res.data.data.total; details.page.total = res.data.data.total;
stateData(details.data); handleTranslationDataSeclect(details.data, details.columnList);
// stateData(details.data);
} }
}) })
.catch(error => { .catch(error => {
@ -313,7 +336,6 @@ const onLoad = () => {
}; };
// onLoad(); // onLoad();
// //
const PUSH_STATUS = { const PUSH_STATUS = {
UNPUSHED: 0, UNPUSHED: 0,
@ -335,7 +357,9 @@ const pushData = async (selectionList, requiredStatus, newStatus, successMessage
if (!isValid) { if (!isValid) {
return ElMessage({ return ElMessage({
message: `推送的数据必须都是${requiredStatus == PUSH_STATUS.UNPUSHED ? '未推送' : '已推送入库'}`, message: `推送的数据必须都是${
requiredStatus == PUSH_STATUS.UNPUSHED ? '未推送' : '已推送入库'
}`,
type: 'warning', type: 'warning',
}); });
} }
@ -345,15 +369,11 @@ const pushData = async (selectionList, requiredStatus, newStatus, successMessage
pushStatus: newStatus, pushStatus: newStatus,
}; };
ElMessageBox.confirm( ElMessageBox.confirm(`是否确认推送${successMessage}`, '提示', {
`是否确认推送${successMessage}`, confirmButtonText: '确定',
'提示', cancelButtonText: '取消',
{ type: 'warning',
confirmButtonText: '确定', })
cancelButtonText: '取消',
type: 'warning',
}
)
.then(async () => { .then(async () => {
try { try {
details.loadingObj.list = true; details.loadingObj.list = true;
@ -376,18 +396,26 @@ const pushData = async (selectionList, requiredStatus, newStatus, successMessage
details.loadingObj.list = false; details.loadingObj.list = false;
} }
}) })
.catch(() => { .catch(() => {});
})
}; };
// //
const Pushstorage = async (row) => { const Pushstorage = async row => {
await pushData(row.id ? [row] : details.selectionList, PUSH_STATUS.UNPUSHED, PUSH_STATUS.PUSHED_IN, '入库'); await pushData(
row.id ? [row] : details.selectionList,
PUSH_STATUS.UNPUSHED,
PUSH_STATUS.PUSHED_IN,
'入库'
);
}; };
// //
const Pushoutbounddelivery = async (row) => { const Pushoutbounddelivery = async row => {
await pushData(row.id ? [row] : details.selectionList, PUSH_STATUS.PUSHED_IN, PUSH_STATUS.PUSHED_OUT, '出库'); await pushData(
row.id ? [row] : details.selectionList,
PUSH_STATUS.PUSHED_IN,
PUSH_STATUS.PUSHED_OUT,
'出库'
);
}; };
// //
const searchReset = () => { const searchReset = () => {
@ -395,7 +423,7 @@ const searchReset = () => {
details.columnList.forEach(item => { details.columnList.forEach(item => {
item.values = ''; item.values = '';
}); });
details.data=[] details.data = [];
// onLoad(); // onLoad();
}; };
// //

Loading…
Cancel
Save