Browse Source

料号状态!=Active时,放开新增打样和详情 两个按钮

master
赵宏斌 7 hours ago
parent
commit
8f0243e4cf
  1. 4
      src/views/modules/eam/eamProjectPartInfo.vue

4
src/views/modules/eam/eamProjectPartInfo.vue

@ -222,8 +222,8 @@
<template slot-scope="scope">
<div v-if="scope.row.partType !== 'Active'">
<a v-if="scope.row.status === '草稿' && scope.row.status !== '已量产'" style="color: gray; pointer-events: none;">下达</a>
<a v-if="scope.row.status !== '草稿' && scope.row.status !== '已量产'" style="color: gray; pointer-events: none;">新增打样</a>
<a style="color: gray; pointer-events: none;">详情</a>
<a v-if="scope.row.status !== '草稿' && scope.row.status !== '已量产'" @click="addProofRecord(scope.row)">新增打样</a>
<a @click="showProofDetailModal(scope.row)">详情</a>
<a v-if="scope.row.status !== '草稿' && scope.row.status !== '已量产'" style="color: gray; pointer-events: none;">转正式料号</a>
<a v-if="scope.row.status === '进行中' && scope.row.status !== '已量产'" style="color: gray; pointer-events: none;">转量产</a>
</div>

Loading…
Cancel
Save