diff --git a/zh-baseversion-web/src/views/oldpipesystem/process/index.vue b/zh-baseversion-web/src/views/oldpipesystem/process/index.vue
index 5731fda6770fee28ea6c42df13b2bbbcfd073b10..4ab5bf713bacd5c936099057fec5c8b5fc2d175a 100644
--- a/zh-baseversion-web/src/views/oldpipesystem/process/index.vue
+++ b/zh-baseversion-web/src/views/oldpipesystem/process/index.vue
@@ -170,7 +170,13 @@
             size="mini"
             type="text"
             @click="handleReport(scope.row)"
-            v-if="user.roleId==1||user.roleId==5"
+            v-if="(user.roleId==1||user.roleId==5)&&scope.row.fUploadType==0"
+          >上传</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            @click="handleReport2(scope.row)"
+            v-if="(user.roleId==1||user.roleId==3)&&scope.row.fUploadType==1"
           >上传</el-button>
         </template>
       </el-table-column>
@@ -615,6 +621,18 @@ export default {
         this.getList();
         this.msgSuccess("上传成功");
       }).catch(() => {});
+    },
+    handleReport2(row){
+      var that = this
+      this.$confirm('是否确认上传老旧管网改造计划项目名称为"' + row.fProjectName + '"的数据项?', "警告", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning"
+      }).then(function() {
+          that.msgSuccess("上传成功");
+          this.open = false;
+        return ;
+      }).catch(() => {});
     }
   }
 };