xiangpei
2025-02-27 c482628d3daf21dafba7e2b9eaba6e46ffda0fdb
src/views/projectManage/plan/index.vue
@@ -74,9 +74,9 @@
          {{ scope.row.reportStatus === 0 ? '已上报' : '未上报' }}
        </template>
      </el-table-column>
      <el-table-column label="项目码" align="center" prop="projectColorCode">
      <el-table-column label="项目码" align="center" prop="coding">
        <template slot-scope="scope">
          <el-tag type="success" v-if="scope.row.projectColorCode === 'green'">绿</el-tag>
          <el-tag type="success" v-if="scope.row.coding === 'green'">绿</el-tag>
        </template>
      </el-table-column>
      <el-table-column label="项目代码" align="center" prop="projectCode" />
@@ -107,6 +107,11 @@
                  scope.row.investType === 'abroad_investment' ? '境外投资' :
                    '未知类型'
          }}
        </template>
      </el-table-column>
      <el-table-column label="异常问题" align="center" prop="exception" >
        <template slot-scope="scope">
          {{ scope.row.exception === 0 ? '计划超期' : scope.row.exception === 1 ? '进度超期' : '' }}
        </template>
      </el-table-column>
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
@@ -240,10 +245,7 @@
        this.$router.push({
          path: '/projectManage/planRecord',
          query: {
            id: row.id,
            projectName: row.projectName,
            projectCode: row.projectCode,
            managerFlag: row.managerFlag
            data: JSON.stringify(row)
          }
        })
      })