企业端开始填报新增校验 是否过期 是否未开始

Lvtianfang
吕天方 1 month ago
parent 89009bb344
commit 8194c39cad

@ -1,6 +1,6 @@
{ {
"name": "ruoyi", "name": "ruoyi",
"version": "1.0.202412100928", "version": "1.0.202412131056",
"description": "金鸡湖现代服务业品牌管理系统", "description": "金鸡湖现代服务业品牌管理系统",
"author": "若依", "author": "若依",
"license": "MIT", "license": "MIT",

@ -580,13 +580,20 @@ export default {
// }, // },
/** 开始填报按钮操作 */ /** 开始填报按钮操作 */
handleAdd(row){ handleAdd(row){
// console.log(row); if(row.templateRecordStatus == 0) {
this.$message.error('该申请未开始');
return;
} else if(row.templateRecordStatus == 1) {
this.$message.error('该申请已过期');
return;
} else {
this.$router.push({name: 'onlineDeclareAdd',query: { this.$router.push({name: 'onlineDeclareAdd',query: {
templateId: row.templateId, templateId: row.templateId,
templateRecordId: row.templateRecordId, templateRecordId: row.templateRecordId,
declarationId: row.id, declarationId: row.id,
pageType: "add", pageType: "add",
}}) }})
}
}, },
/** 查看审核详情操作 */ /** 查看审核详情操作 */
handleDetail(row){ handleDetail(row){

Loading…
Cancel
Save