Commit 0127e945 by zhuzhequan

去掉重复 规范素材查询条件

parent 2a41d987
...@@ -16,7 +16,7 @@ export interface ExportParams extends SearchForm { ...@@ -16,7 +16,7 @@ export interface ExportParams extends SearchForm {
export interface SearchForm { export interface SearchForm {
timeType?: number | null timeType?: number | null
newStandard?: number | string newStandard?: number | string
standardDesignImage?: number | string standardDesignImage?:0 | 1 | 2 | null
shopNumber?: string shopNumber?: string
productMark?: string productMark?: string
shipmentType?: string | number shipmentType?: string | number
...@@ -59,7 +59,6 @@ export interface SearchForm { ...@@ -59,7 +59,6 @@ export interface SearchForm {
blocking?: boolean blocking?: boolean
outOfStock?: boolean outOfStock?: boolean
receiverCountry?: string receiverCountry?: string
standardDesignImage?: boolean
} }
export interface PodCnOrderListData { export interface PodCnOrderListData {
id: number id: number
......
...@@ -591,22 +591,6 @@ ...@@ -591,22 +591,6 @@
></ElOption> ></ElOption>
</ElSelect> </ElSelect>
</ElFormItem> </ElFormItem>
<ElFormItem label="规范素材">
<ElSelect
v-model="searchForm.standardDesignImage"
placeholder="请选择"
clearable
filterable
style="width: 150px"
>
<ElOption
v-for="(_, index) in ['否', '是']"
:key="index"
:value="!!index"
:label="index === 0 ? '否' : '是'"
></ElOption>
</ElSelect>
</ElFormItem>
<ElFormItem <ElFormItem
label="规范素材" label="规范素材"
> >
...@@ -619,10 +603,10 @@ ...@@ -619,10 +603,10 @@
style="width: 150px" style="width: 150px"
> >
<ElOption <ElOption
v-for="(_, index) in ['否', '是','混合']" v-for="(_, index) in ['否', '是']"
:key="index" :key="index"
:value="index" :value="index"
:label="['否', '是','混合'][index]" :label="['否', '是'][index]"
></ElOption> ></ElOption>
</ElSelect> </ElSelect>
</ElFormItem> </ElFormItem>
...@@ -1944,9 +1928,6 @@ ...@@ -1944,9 +1928,6 @@
<template #failReason="{ row }"> <template #failReason="{ row }">
<span style="white-space: pre-line" v-html="row.failReason"></span> <span style="white-space: pre-line" v-html="row.failReason"></span>
</template> </template>
<template #standardDesignImage="{ row }">
{{(row.standardDesignImage || row.standardDesignImage===0)?['否', '是','混合'][row.standardDesignImage ]: ''}}
</template>
<template #operate="{ row }"> <template #operate="{ row }">
<div <div
v-if="status === 'BATCH_DOWNLOAD'" v-if="status === 'BATCH_DOWNLOAD'"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment