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

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

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

@ -580,13 +580,20 @@ export default {
// },
/** 开始填报按钮操作 */
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: {
templateId: row.templateId,
templateRecordId: row.templateRecordId,
declarationId: row.id,
pageType: "add",
}})
}
},
/** 查看审核详情操作 */
handleDetail(row){

Loading…
Cancel
Save