Browse Source

预约市配修改定制品和库存品添加逻辑

dev-xx
qb 1 year ago
parent
commit
d9a9684778
  1. 1
      src/option/waybill/orderDetails.js
  2. 892
      src/views/distribution/reservation/reservationAddFrom.vue
  3. 7
      src/views/waybill/TemporaryStorageList.vue
  4. 2
      src/views/waybill/WaybillOrderList.vue
  5. 53
      src/views/waybill/orderDetails.vue

1
src/option/waybill/orderDetails.js

@ -45,6 +45,7 @@ export const packageListColumnList = [
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
},
{
prop: 'createTime',

892
src/views/distribution/reservation/reservationAddFrom.vue

File diff suppressed because it is too large Load Diff

7
src/views/waybill/TemporaryStorageList.vue

@ -861,7 +861,7 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = async (params = {} as any) => {
const onLoad = async (params = {} as any, isRefresh?: boolean) => {
const status = details.orderStatus;
try {
// loading
@ -886,6 +886,8 @@ const onLoad = async (params = {} as any) => {
else details.notHaveDataData = data.records;
details.page.total = data.total;
if (!isRefresh) return;
const _arr = [...details.selectionList];
for (const item of data.records) {
@ -1278,7 +1280,8 @@ onActivated(() => {
if ($store.state.isRefresh.refreshObj.TemporaryStorageList) {
//
details.query = {};
onLoad();
details.page.pageNum = 1;
onLoad({}, true);
$store.commit('EDIT_REFRESHITEM', { title: 'TemporaryStorageList', status: false });
}

2
src/views/waybill/WaybillOrderList.vue

@ -193,7 +193,7 @@
</el-form>
<div class="flex-c-c mt10">
<el-button @click="details.fullscreenObj.view = false">关闭</el-button>
<el-button @click="details.popUpShow.view = false">关闭</el-button>
<el-button type="primary" icon="Position" @click="handleUploadReceiptSubmit">提交</el-button>
</div>
</el-dialog>

53
src/views/waybill/orderDetails.vue

@ -131,26 +131,6 @@
</template>
</template>
</tablecmt>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
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>
</div>
</el-row>
</div>
</basic-container>
@ -253,12 +233,6 @@ const details = reactive<any>({
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 30,
total: 0,
},
/** 包明细分页参数 */
packageListPage: {
currentPage: 1,
@ -287,7 +261,7 @@ const details = reactive<any>({
html: '',
});
const { search, query, shortcuts, stockupDate, loadingObj, selectionList, drawerShow, page } =
const { search, query, shortcuts, stockupDate, loadingObj, selectionList, drawerShow } =
toRefs(details);
/** vuex */
@ -300,7 +274,7 @@ onMounted(async () => {
});
/** 请求页面数据 */
const onLoad = async (page: any, params = {}) => {
const onLoad = async () => {
//
const response = await postFindListByWaybillId({ waybillId: $route.query.id });
const { code, data } = response.data;
@ -309,19 +283,19 @@ const onLoad = async (page: any, params = {}) => {
details.data = data;
};
onLoad(details.page);
onLoad();
/** 搜索 */
const searchChange = () => {
onLoad(details.page);
onLoad();
};
/** 清空表单 */
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
onLoad(details.page);
onLoad();
};
/** 展开列表控件 */
@ -339,7 +313,7 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
onLoad(details.page);
onLoad();
};
/** 表格表头时间选择 */
@ -352,7 +326,7 @@ const timesc = (index, row) => {
if (!index) {
delete details.query[row.prop];
}
onLoad(details.page);
onLoad();
};
/** 表格表头输入框搜索 */
@ -366,7 +340,7 @@ const selectsc = (index, row) => {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
}
onLoad(details.page);
onLoad();
};
/** 表格表头复选框选择 */
@ -374,15 +348,6 @@ const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
onLoad(details.page);
};
/** 页码改变执行的回调 */
const currentChange = () => {};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组

Loading…
Cancel
Save