|
@@ -122,6 +122,61 @@
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
+ <template #order_rate="{ scope }">
|
|
|
+ <div>
|
|
|
+ {{
|
|
|
+ private_field &&
|
|
|
+ private_field.length > 0 &&
|
|
|
+ private_field.some((item) => item == "3")
|
|
|
+ ? scope.row.order_rate
|
|
|
+ : "****"
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #sale_rate="{ scope }">
|
|
|
+ <div>
|
|
|
+ {{
|
|
|
+ private_field &&
|
|
|
+ private_field.length > 0 &&
|
|
|
+ private_field.some((item) => item == "3")
|
|
|
+ ? scope.row.sale_rate
|
|
|
+ : "****"
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #rate="{ scope }">
|
|
|
+ <div>
|
|
|
+ {{
|
|
|
+ private_field &&
|
|
|
+ private_field.length > 0 &&
|
|
|
+ private_field.some((item) => item == "3")
|
|
|
+ ? scope.row.rate
|
|
|
+ : "****"
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #money_rate="{ scope }">
|
|
|
+ <div>
|
|
|
+ {{
|
|
|
+ private_field &&
|
|
|
+ private_field.length > 0 &&
|
|
|
+ private_field.some((item) => item == "3")
|
|
|
+ ? scope.row.money_rate
|
|
|
+ : "****"
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #low_rate="{ scope }">
|
|
|
+ <div>
|
|
|
+ {{
|
|
|
+ private_field &&
|
|
|
+ private_field.length > 0 &&
|
|
|
+ private_field.some((item) => item == "3")
|
|
|
+ ? scope.row.low_rate
|
|
|
+ : "****"
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
|
|
|
<template #operation="{ scope }">
|
|
|
<el-tooltip
|
|
@@ -171,7 +226,7 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
//组件SIZE设置
|
|
|
- ...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
|
+ ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"]),
|
|
|
powers() {
|
|
|
let tran =
|
|
|
this.$store.getters.btnList.find((item) => item.menu_route == "othsearchSort") ||
|
|
@@ -254,31 +309,36 @@ export default {
|
|
|
width: "150px",
|
|
|
},
|
|
|
|
|
|
- {
|
|
|
- prop: "order_rate",
|
|
|
- label: "预算→成本",
|
|
|
- width: "90px",
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // prop: "order_rate",
|
|
|
+ // label: "预算→成本",
|
|
|
+ // _slot_: "order_rate",
|
|
|
+ // width: "90px",
|
|
|
+ // },
|
|
|
{
|
|
|
prop: "sale_rate",
|
|
|
label: "成本→售价",
|
|
|
+ _slot_: "sale_rate",
|
|
|
width: "90px",
|
|
|
},
|
|
|
- {
|
|
|
- prop: "rate",
|
|
|
- label: "主管利率",
|
|
|
- width: "90px",
|
|
|
- },
|
|
|
- {
|
|
|
- prop: "money_rate",
|
|
|
- label: "财务利率",
|
|
|
- width: "90px",
|
|
|
- },
|
|
|
- {
|
|
|
- prop: "low_rate",
|
|
|
- label: "项目毛利",
|
|
|
- width: "90px",
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // prop: "rate",
|
|
|
+ // label: "主管利率",
|
|
|
+ // _slot_: "rate",
|
|
|
+ // width: "90px",
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // prop: "money_rate",
|
|
|
+ // label: "财务利率",
|
|
|
+ // _slot_: "money_rate",
|
|
|
+ // width: "90px",
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // prop: "low_rate",
|
|
|
+ // label: "项目毛利",
|
|
|
+ // _slot_: "low_rate",
|
|
|
+ // width: "90px",
|
|
|
+ // },
|
|
|
{
|
|
|
prop: "creater",
|
|
|
label: "创建人",
|