|
@@ -52,8 +52,8 @@
|
|
|
<span class="text-h5-b text-primary-text">
|
|
|
{{ isFilterPrice(item?.dannum_cost1) }}
|
|
|
</span>
|
|
|
- <div class="text-f-c text-disable">不含税出厂价</div>
|
|
|
- <span class="text-h5-b text-primary-text">
|
|
|
+ <div class="text-f-c text-disable" v-if="isSuper">不含税出厂价</div>
|
|
|
+ <span class="text-h5-b text-primary-text" v-if="isSuper">
|
|
|
{{ isFilterPrice(item?.dijia_cost1) }}
|
|
|
</span>
|
|
|
</div>
|
|
@@ -62,8 +62,8 @@
|
|
|
<span class="text-h5-b text-primary-text">
|
|
|
{{ isFilterPrice(item?.dannum_cost4) }}
|
|
|
</span>
|
|
|
- <div class="text-f-c text-disable">不含税出厂价</div>
|
|
|
- <span class="text-h5-b text-primary-text">
|
|
|
+ <div class="text-f-c text-disable" v-if="isSuper">不含税出厂价</div>
|
|
|
+ <span class="text-h5-b text-primary-text" v-if="isSuper">
|
|
|
{{ isFilterPrice(item?.dijia_cost4) }}
|
|
|
</span>
|
|
|
</div>
|
|
@@ -72,8 +72,8 @@
|
|
|
<span class="text-h5-b text-primary-text">
|
|
|
{{ isFilterPrice(item?.dannum_cost2) }}
|
|
|
</span>
|
|
|
- <div class="text-f-c text-disable">不含税出厂价</div>
|
|
|
- <span class="text-h5-b text-primary-text">
|
|
|
+ <div class="text-f-c text-disable" v-if="isSuper">不含税出厂价</div>
|
|
|
+ <span class="text-h5-b text-primary-text" v-if="isSuper">
|
|
|
{{ isFilterPrice(item?.dijia_cost2) }}
|
|
|
</span>
|
|
|
</div>
|
|
@@ -82,12 +82,12 @@
|
|
|
<span class="text-h5-b text-primary-text">
|
|
|
{{ isFilterPrice(item?.dannum_cost3) }}
|
|
|
</span>
|
|
|
- <div class="text-f-c text-disable">不含税出厂价</div>
|
|
|
- <span class="text-h5-b text-primary-text">
|
|
|
+ <div class="text-f-c text-disable" v-if="isSuper">不含税出厂价</div>
|
|
|
+ <span class="text-h5-b text-primary-text" v-if="isSuper">
|
|
|
{{ isFilterPrice(item?.dijia_cost3) }}
|
|
|
</span>
|
|
|
</div>
|
|
|
- <div class="oa-flow-item__right-content-title flx-col flx-center">
|
|
|
+ <div class="oa-flow-item__right-content-title flx-col flx-center" v-if="isSuper">
|
|
|
<div class="text-f-c text-disable">FOB费</div>
|
|
|
<span class="text-h5-b text-primary-text">
|
|
|
{{ isFilterPrice(item?.dannum_cost1) }}
|
|
@@ -122,6 +122,7 @@ import { ref, watch } from "vue";
|
|
|
import { formatTime, formatAmount3 } from "@/utils/index";
|
|
|
import { Calendar } from "@element-plus/icons-vue";
|
|
|
import { isFilterPrice } from "@/utils/index";
|
|
|
+import { useGlobalStore } from "@/stores/modules/global";
|
|
|
|
|
|
interface wigetProps {
|
|
|
item: any;
|
|
@@ -136,6 +137,9 @@ interface wigetProps {
|
|
|
nowtime?: string;
|
|
|
}
|
|
|
|
|
|
+const globalStore = useGlobalStore();
|
|
|
+const isSuper = globalStore.isSuper;
|
|
|
+
|
|
|
const props = withDefaults(defineProps<wigetProps>(), {
|
|
|
// item: {},
|
|
|
current: undefined
|