|
@@ -915,20 +915,52 @@
|
|
}}
|
|
}}
|
|
</span>
|
|
</span>
|
|
<div v-else-if="item.scope === 'changeCLS'">
|
|
<div v-else-if="item.scope === 'changeCLS'">
|
|
- <div v-if="scope.row[item.prop] === 1" :style="scope.row['userUpdates'][0].createTime > scope.row['officialStatusTime'] ? 'color: purple':'color: red'">
|
|
|
|
- 有变更
|
|
|
|
- <span
|
|
|
|
- style="margin-left: 6px; color: blue; cursor: pointer"
|
|
|
|
- @click="isShowBoxsFun(scope.row)"
|
|
|
|
- >查看</span
|
|
|
|
- >
|
|
|
|
|
|
+ <div v-if="scope.row[item.prop] === 1">
|
|
|
|
+ <div v-if="scope.row['interfacePushId'] !== 1" style="color: red">
|
|
|
|
+ 有变更<span
|
|
|
|
+ style="margin-left: 6px; color: blue; cursor: pointer"
|
|
|
|
+ @click="isShowBoxsFun(scope.row)"
|
|
|
|
+ >查看</span
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
|
|
+ <template v-else>
|
|
|
|
+ <template v-if="scope.row['officialStatusTime']">
|
|
|
|
+ <div
|
|
|
|
+ v-if="
|
|
|
|
+ scope.row['userUpdates'][0].createTime >
|
|
|
|
+ scope.row['officialStatusTime']
|
|
|
|
+ "
|
|
|
|
+ style="color: purple"
|
|
|
|
+ >
|
|
|
|
+ 有变更
|
|
|
|
+ <span
|
|
|
|
+ style="margin-left: 6px; color: blue; cursor: pointer"
|
|
|
|
+ @click="isShowBoxsFun(scope.row)"
|
|
|
|
+ >查看</span
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
|
|
+ <span v-else> 正常 </span>
|
|
|
|
+ </template>
|
|
|
|
+ <div v-else style="color: purple">
|
|
|
|
+ 有变更
|
|
|
|
+ <span
|
|
|
|
+ style="margin-left: 6px; color: blue; cursor: pointer"
|
|
|
|
+ @click="isShowBoxsFun(scope.row)"
|
|
|
|
+ >查看</span
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
</div>
|
|
</div>
|
|
<span v-else> 正常 </span>
|
|
<span v-else> 正常 </span>
|
|
</div>
|
|
</div>
|
|
<div v-else-if="item.scope === 'rebuy'">
|
|
<div v-else-if="item.scope === 'rebuy'">
|
|
- <span>{{ scope.row[item.prop] === 1 ? "是" : "" }}</span>
|
|
|
|
|
|
+ <span>{{
|
|
|
|
+ scope.row[item.prop] === 1 && scope.row[item.prop1] === 1
|
|
|
|
+ ? "是"
|
|
|
|
+ : ""
|
|
|
|
+ }}</span>
|
|
<span
|
|
<span
|
|
- v-if="scope.row[item.prop] === 1"
|
|
|
|
|
|
+ v-if="scope.row[item.prop] === 1 && scope.row[item.prop1] === 1"
|
|
style="margin-left: 6px; color: blue; cursor: pointer"
|
|
style="margin-left: 6px; color: blue; cursor: pointer"
|
|
@click="isShowRebuy(scope.row)"
|
|
@click="isShowRebuy(scope.row)"
|
|
>查看</span
|
|
>查看</span
|
|
@@ -1568,7 +1600,7 @@ export default {
|
|
},
|
|
},
|
|
treeDatas: [],
|
|
treeDatas: [],
|
|
treeDatas1: [],
|
|
treeDatas1: [],
|
|
- treeDatas2: []
|
|
|
|
|
|
+ treeDatas2: [],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|