修改行政处罚决定书等案件资料模版
This commit is contained in:
parent
0c0e1e5aff
commit
3804f12012
|
|
@ -84,7 +84,10 @@ const handleGO = (data) => {
|
|||
} else if (data.isImg) {
|
||||
userStore.imageIndex = data.url
|
||||
window.open(data.url)
|
||||
|
||||
} else if (data.router) {
|
||||
router.push({
|
||||
path: data.url,
|
||||
})
|
||||
} else {
|
||||
ElMessage.error('对不起,您没有该应用权限。')
|
||||
}
|
||||
|
|
|
|||
|
|
@ -181,9 +181,7 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="行政处罚决定书(份)" prop="xzcfjdss">
|
||||
<el-input v-model.number="dialog.data.xzcfjdss" maxlength="9" :disabled="dialog.mode=== 'detail'"/>
|
||||
</el-form-item>
|
||||
>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="罚款总额(万元)" prop="fkze">
|
||||
|
|
|
|||
|
|
@ -221,13 +221,7 @@ function handleDetail(row) {
|
|||
documentCode: '(西安)应急法审〔' + year + '〕' + area + xh + '号',
|
||||
documenContent: {}
|
||||
},
|
||||
{
|
||||
documentNo: 21,
|
||||
documentName: '行政处罚告知书',
|
||||
documentType: '告知听证类',
|
||||
documentCode: '(西安)应急罚告〔' + year + '〕' + area + xh + '号',
|
||||
documenContent: {}
|
||||
},
|
||||
|
||||
{
|
||||
documentNo: 22,
|
||||
documentName: '行政处罚听证会通知书',
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ import java.util.stream.Collectors;
|
|||
public class PermissionService {
|
||||
private final PermissionRepo permissionRepo;
|
||||
|
||||
@Autowired
|
||||
public PermissionService(PermissionRepo permissionRepo) {
|
||||
this.permissionRepo = permissionRepo;
|
||||
}
|
||||
permissionRepo.save(permission);
|
||||
}
|
||||
|
||||
@Transactional
|
||||
public void modifyPermission(@NotNull @Validated(Permission.Modify.class) Permission permission) {
|
||||
|
|
|
|||
|
|
@ -344,7 +344,6 @@ public class HomePageService {
|
|||
"行政处罚告知书",
|
||||
"听证会报告书",
|
||||
"行政处罚集体讨论记录",
|
||||
"行政处罚决定书",
|
||||
"结案审批表"
|
||||
);
|
||||
List<DocumentDto> res = new ArrayList<>();
|
||||
|
|
|
|||
Loading…
Reference in New Issue