Browse Source

修复部分bug

dev-xx
qb 6 months ago
parent
commit
2b11ae3661
  1. 32
      src/views/distribution/inventory/delivery/OrderInTransit.vue
  2. 21
      src/views/distribution/inventory/delivery/OrderInTransitDetails.vue

32
src/views/distribution/inventory/delivery/OrderInTransit.vue

@ -62,6 +62,20 @@
</el-select>
</el-form-item>
<el-form-item label="开单时间:">
<el-date-picker
v-model="details.query.openTimeArr"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
value-format="YYYY-MM-DD"
/>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
@ -84,6 +98,7 @@
<!-- 列表模块 -->
<tablecmt
ref="tableNodeRef"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@ -156,6 +171,8 @@ import { ElMessage, ElMessageBox } from 'element-plus';
const $router = useRouter();
const $store = useStore();
const tableNodeRef = ref();
const details = reactive<any>({
/** 是否开启搜索 */
search: true,
@ -235,7 +252,20 @@ const onLoad = debounce(async (isTranslation = true) => {
...details.page,
};
if (getObjType(submitData.openTimeArr) === 'array' && submitData.openTimeArr.length > 0) {
submitData.openTimeStartStr = submitData.openTimeArr[0];
submitData.openTimeEndStr = submitData.openTimeArr[1];
}
if (
!submitData.acceptWarehouseIdList ||
(getObjType(submitData.acceptWarehouseIdList) === 'array' &&
submitData.acceptWarehouseIdList.length === 0)
)
delete submitData.acceptWarehouseIdList;
delete submitData.total;
delete submitData.openTimeArr;
const res = await getListTransfer(submitData);
@ -333,7 +363,7 @@ const showdrawer = (_flag?: boolean) => {
const searchHide = () => {
details.search = !details.search;
setNodeHeight(details.listNode, '', true);
setNodeHeight(tableNodeRef.value.$el, '', true);
};
/** 表格表头输入框搜索 */

21
src/views/distribution/inventory/delivery/OrderInTransitDetails.vue

@ -26,7 +26,13 @@
<div class="pageTitle">
{{ $route.query.isZero === '1' ? '零担列表' : '定制品列表' }}
</div>
<el-button class="ml20" type="primary" @click="allhandleQRCode">批量查看二维码</el-button>
<el-button
v-if="$route.query.isZero + '' !== '1'"
class="ml20"
type="primary"
@click="allhandleQRCode"
>批量查看二维码</el-button
>
</div>
<!-- 头部右侧按钮模块 -->
<div>
@ -364,18 +370,7 @@ const initData = async () => {
try {
details.loadingObj.pageLoading = true;
await Promise.all([
//
// getDictionaryBiz('distribution_type').then(res => handleData('', res)),
// getDictionaryBiz('order_status').then(res => handleData('', res)),
// getDictionaryBiz('basic_grounding').then(res => handleData('', res)),
// getDictionaryBiz('freeze_status').then(res => handleData('', res)),
// getDictionaryBiz('order_stockup_status').then(res => handleData('', res)),
// getDictionaryBiz('order_reservation_status').then(res => handleData('', res)),
// getDictionaryBiz('order_receive_status').then(res => handleData('', res)),
getOrderInfo(),
onLoad(false),
]);
await Promise.all([getOrderInfo(), onLoad(false)]);
await nextTick();
handleTranslationDataSeclect(details.data, details.columnList);

Loading…
Cancel
Save