feat(wms): 新增原料材质与钢卷类型不匹配查询及修复功能

refactor(crm): 重构销售员管理界面为左右分栏布局

style(wms): 优化钢卷发货状态显示为单选按钮组

chore: 新增考勤请求工具类文件
This commit is contained in:
2026-04-21 15:44:38 +08:00
parent e44235abd8
commit a8e667a69b
5 changed files with 248 additions and 212 deletions

View File

@@ -40,10 +40,15 @@
</el-form-item>
<el-form-item v-if="showWaybill" label="发货状态">
<el-select v-model="queryParams.status" placeholder="请选择发货状态" clearable>
<el-radio-group v-model="queryParams.status" @change="handleQuery">
<el-radio-button label="">全部</el-radio-button>
<el-radio-button label="0">未发货{{ unshippedCount }}</el-radio-button>
<el-radio-button label="1">已发货{{ shippedCount }}</el-radio-button>
</el-radio-group>
<!-- <el-select v-model="queryParams.status" placeholder="请选择发货状态" clearable>
<el-option :value="0" label="未发货">未发货</el-option>
<el-option :value="1" label="已发货">已发货</el-option>
</el-select>
</el-select> -->
</el-form-item>
<el-form-item v-if="showWaybill" label="发货单时间">
@@ -61,12 +66,12 @@
<el-button icon="el-icon-download" size="mini" @click="handleNewExport" v-if="showNewExport">导出</el-button>
</el-form-item>
<el-form-item style="float: right;" v-if="showWaybill" v-loading="loading">
<!-- <el-form-item style="float: right;" v-if="showWaybill" v-loading="loading">
<el-descriptions :column="2" border>
<el-descriptions-item label="已发货数量">{{ shippedCount }}</el-descriptions-item>
<el-descriptions-item label="未发货数量">{{ unshippedCount }}</el-descriptions-item>
</el-descriptions>
</el-form-item>
</el-form-item> -->
</el-form>
<el-row :gutter="10" class="mb8" v-if="showControl">
@@ -803,7 +808,7 @@ export default {
parentCoilNos: undefined,
itemId: undefined,
itemIds: undefined,
status: undefined,
status: '',
updateTime: undefined,
orderBy: false,
...this.querys,
@@ -1201,6 +1206,9 @@ export default {
listBoundCoil({ ...query, status: 1 }).then(res => {
this.shippedCount = res.total;
})
getCoilStatisticsList(query).then(res => {
this.statistics = res.data || [];
})
return;
}
listMaterialCoil(query).then(response => {