|
@@ -116,7 +116,7 @@
|
|
|
<el-col :span="4" style="width: 130px;margin-left:10px">
|
|
|
<el-select
|
|
|
:size="searchSize"
|
|
|
- v-model="parmValue.is_stock"
|
|
|
+ v-model="parmValue.order_type"
|
|
|
filterable
|
|
|
clearable
|
|
|
placeholder="商品类型"
|
|
@@ -127,8 +127,11 @@
|
|
|
searchList();
|
|
|
"
|
|
|
>
|
|
|
- <el-option value="0" label="非库存品" />
|
|
|
- <el-option value="1" label="库存品" />
|
|
|
+ <el-option v-for="item in cg_order_type_options"
|
|
|
+ :key="'order_type' + item.id"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.id"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
|
|
@@ -179,13 +182,13 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
- <template #is_stock="{ scope }">
|
|
|
+ <template #order_type="{ scope }">
|
|
|
<el-tag
|
|
|
size="mini"
|
|
|
v-text="
|
|
|
(
|
|
|
- is_stock_options.find(
|
|
|
- (item) => item.id == scope.row.is_stock
|
|
|
+ cg_order_type_options.find(
|
|
|
+ (item) => item.id == scope.row.order_type
|
|
|
) || {}
|
|
|
).label || '--'
|
|
|
"
|
|
@@ -303,10 +306,6 @@ export default {
|
|
|
// { id: "4", label: "待通知财务" },
|
|
|
// { id: "5", label: "完成退货" },
|
|
|
],
|
|
|
- is_stock_options:[
|
|
|
- { id: "0", label: "非库存品" },
|
|
|
- { id: "1", label: "库存品" },
|
|
|
- ],
|
|
|
cg_order_type_options,
|
|
|
cg_order_source_options,
|
|
|
loading: true,
|
|
@@ -315,7 +314,7 @@ export default {
|
|
|
modelId: 0,
|
|
|
parmValue: {
|
|
|
order_source: "",
|
|
|
- is_stock: "",
|
|
|
+ order_type: "",
|
|
|
cgdNo: "", //采购单编号
|
|
|
returnCode: "", //退货单编号
|
|
|
good_type_code: "", //商品属性编号
|