|
@@ -179,18 +179,32 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
- <template #order_type="{ scope }">
|
|
|
-
|
|
|
- <p
|
|
|
+ <template #is_stock="{ scope }">
|
|
|
+ <el-tag
|
|
|
+ size="mini"
|
|
|
+ v-text="
|
|
|
+ (
|
|
|
+ is_stock_options.find(
|
|
|
+ (item) => item.id == scope.row.is_stock
|
|
|
+ ) || {}
|
|
|
+ ).label || '--'
|
|
|
+ "
|
|
|
+ ></el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template #order_source="{ scope }">
|
|
|
+ <el-tag
|
|
|
+ size="mini"
|
|
|
v-text="
|
|
|
(
|
|
|
- cg_order_type_options.find(
|
|
|
- (item) => item.id == scope.row.order_type
|
|
|
+ cg_order_source_options.find(
|
|
|
+ (item) => item.id == scope.row.order_source
|
|
|
) || {}
|
|
|
).label || '--'
|
|
|
"
|
|
|
- ></p>
|
|
|
+ ></el-tag>
|
|
|
</template>
|
|
|
+
|
|
|
<template #operation="{ scope }">
|
|
|
<el-tooltip
|
|
|
v-if="powers.some((i) => i == '007')"
|
|
@@ -289,6 +303,10 @@ 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,
|