项目新需求修改

This commit is contained in:
wcq 2023-08-15 09:30:51 +08:00
parent 4c8a962edd
commit 480cd4791b
7 changed files with 8 additions and 6 deletions

View File

@ -41,7 +41,7 @@ const {
<div v-if="layout === 'vertical'" class="vertical-header-right">
<!-- 菜单搜索 -->
<Search />
<!-- <Search />-->
<!-- 通知 -->
<!-- <Notice id="header-notice" />-->
<!-- 退出登录 -->

View File

@ -56,7 +56,7 @@ nextTick(() => {
</el-menu>
<div class="horizontal-header-right">
<!-- 菜单搜索 -->
<Search />
<!-- <Search />-->
<!-- 通知 -->
<!-- <Notice id="header-notice" />-->
<!-- 退出登录 -->

View File

@ -89,7 +89,7 @@ watch(
</el-menu>
<div class="horizontal-header-right">
<!-- 菜单搜索 -->
<Search />
<!-- <Search />-->
<!-- 通知 -->
<Notice id="header-notice" />
<!-- 退出登录 -->

View File

@ -18,7 +18,7 @@ export default {
name: "company_data",
component: () => import("@/views/rate/companyDataManage.vue"),
meta: {
title: "企业数据",
title: "评级申请",
// 通过设置showParent为true显示父级
showParent: true,
keepAlive: true,

View File

@ -9,7 +9,7 @@ export default {
name: "rate",
component: () => import("@/views/rate/rateManage.vue"),
meta: {
title: "评级管理",
title: "评级业务",
// 通过设置showParent为true显示父级
showParent: true,
keepAlive: true,

View File

@ -22,6 +22,7 @@
<el-divider style="margin: 0.6rem"/>
<el-table class="flex-1 data-edit-table" :data="data" style="width: 100%">
<!-- <el-table-column prop="id" label="ID" align="center" width="50" /> -->
<el-table-column prop="id" label="申请编号" align="center"/>
<el-table-column prop="company_name" label="企业名称" align="center"/>
<el-table-column align="center" prop="mgr_data_state" label="数据准备">
<template #header>

View File

@ -22,6 +22,7 @@
<el-divider style="margin: 0.6rem"/>
<el-table class="flex-1 data-edit-table" :data="data" style="width: 100%">
<!-- <el-table-column prop="id" label="ID" align="center" width="50" /> -->
<el-table-column prop="id" label="作业编号" align="center"/>
<el-table-column prop="company_name" label="企业名称" align="center"/>
<!-- <el-table-column align="center" prop="mgr_data_state" label="数据准备">
<template #header>
@ -131,7 +132,7 @@
<el-table-column align="center" label="操作" width="340">
<template #default="scope">
<div class="flex flex-c">
<el-button type="success" @click="doRate(scope.row)" size="small"
<el-button type="success" :disabled="scope.row.rate_state=='已评级'" @click="doRate(scope.row)" size="small"
>评级
</el-button
>