独生子女父母退休bug修改

This commit is contained in:
=
2025-09-30 13:46:57 +08:00
parent f15fb1fab9
commit aa516ab4e7
13 changed files with 174 additions and 42 deletions
@@ -53,7 +53,7 @@ public class DsznfmtxSchoolAuditController {
@At @At
@ApiOperation("分页查询") @ApiOperation("分页查询")
@SaCheckPermission(value = {"dsznfmtx.unionAudit", "h5.dsznfmtx.unionAudit"}, mode = SaMode.OR) @SaCheckPermission(value = {"dsznfmtx.schoolAudit", "h5.dsznfmtx.schoolAudit"}, mode = SaMode.OR)
public Result pageData(PageForm pageForm, public Result pageData(PageForm pageForm,
boolean approval, boolean approval,
Integer year, Integer year,
@@ -170,7 +170,7 @@ layout("/layouts/platform.html"){
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(() => { }).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.startTaskId}).then((res) => { this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$message.success(res.msg) this.$message.success(res.msg)
this.pageData() this.pageData()
@@ -4,7 +4,7 @@ layout("/layouts/platform.html"){
<div id="app" v-cloak> <div id="app" v-cloak>
<el-card shadow="never"> <el-card shadow="never">
<snaker-start slot="header" label="申请表单" define_key="DSZNFMTX"></snaker-start> <snaker-start slot="header" label="申请表单" define_key="DSZNFMTX"></snaker-start>
<el-form :model="formData" ref="formRef" :rules="formRules" label-suffix="" label-width="120px"> <el-form :model="formData" ref="formRef" :rules="formRules" label-suffix="" label-width="170px">
<!-- 将表单项按两列重新排列 --> <!-- 将表单项按两列重新排列 -->
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12"> <el-col :span="12">
@@ -106,20 +106,21 @@ layout("/layouts/platform.html"){
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item label="独生子女光荣证号" prop="childrenGraceNumber"> <el-form-item label="办证机关" prop="office">
<el-input type="text" v-model="formData.childrenGraceNumber" <el-input type="text" v-model="formData.office"
placeholder="请输入独生子女光荣证号"></el-input> placeholder="请输入办证机关"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12"> <el-col :span="12">
<el-form-item label="办证机关" prop="office"> <el-form-item label="独生子女光荣证号" prop="childrenGraceNumber">
<el-input type="text" v-model="formData.office" <el-input type="text" v-model="formData.childrenGraceNumber"
placeholder="请输入办证机关"></el-input> placeholder="请输入独生子女光荣证号"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<!-- 以下项目保持单独一行 --> <!-- 以下项目保持单独一行 -->
@@ -349,6 +350,7 @@ layout("/layouts/platform.html"){
unionName: union.name, unionName: union.name,
sex: sex, sex: sex,
birthday: birthday, birthday: birthday,
loverSex: sex === '男' ? '女' : '男'
} }
} }
} }
@@ -34,7 +34,7 @@ layout("/layouts/platform.html"){
<el-button v-if="row.taskKey === 'startTask' || !row.instanceId" @click="onEdit(row)" size="mini" type="primary">编辑</el-button> <el-button v-if="row.taskKey === 'startTask' || !row.instanceId" @click="onEdit(row)" size="mini" type="primary">编辑</el-button>
<el-button v-if="row.canRevoke" @click="onRevoke(row)" size="mini" type="danger">撤回 <el-button v-if="row.canRevoke" @click="onRevoke(row)" size="mini" type="danger">撤回
</el-button> </el-button>
<el-button @click="onDelete(row.id)" size="mini" type="danger">删除</el-button> <el-button v-if="row.taskKey === 'startTask' || !row.instanceId" @click="onDelete(row.id)" size="mini" type="danger">删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@@ -173,7 +173,7 @@ layout("/layouts/platform.html"){
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(() => { }).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.startTaskId}).then((res) => { this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$message.success(res.msg) this.$message.success(res.msg)
this.pageData() this.pageData()
@@ -18,6 +18,7 @@ layout("/layouts/platform.html"){
<el-option label="女" value="女"></el-option> <el-option label="女" value="女"></el-option>
</el-select> </el-select>
</search-item> </search-item>
<template v-if="$auth.hasRoleOr(['SYSADMIN', 'SCHOOL_UNION_ADMIN', 'BRANCH_UNION_CHAIRMAN'])">
<search-item label="工会名称"> <search-item label="工会名称">
<el-select v-model="pageForm.unionId" @change="doSearch" style="width: 100%" <el-select v-model="pageForm.unionId" @change="doSearch" style="width: 100%"
placeholder="请选择工会名称" clearable> placeholder="请选择工会名称" clearable>
@@ -38,6 +39,7 @@ layout("/layouts/platform.html"){
></el-option> ></el-option>
</el-select> </el-select>
</search-item> </search-item>
</template>
</search> </search>
</el-card> </el-card>
<el-card shadow="never"> <el-card shadow="never">
@@ -150,7 +152,7 @@ layout("/layouts/platform.html"){
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(() => { }).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.startTaskId}).then((res) => { this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$message.success(res.msg) this.$message.success(res.msg)
this.pageData() this.pageData()
@@ -181,10 +183,23 @@ layout("/layouts/platform.html"){
}, },
created() { created() {
this.pageData() this.pageData()
//工会查询 // 根据用户角色加载相应的工会和单位数据
this.$businessTool.listUnion().then((res) => (this.unionOptions = res)) if (this.$auth.hasRoleOr(["SYSADMIN", "SCHOOL_UNION_ADMIN"])) {
//单位查询 this.$businessTool.listUnion().then((data) => {
this.$businessTool.listUnit().then((res) => (this.unitOptions = res)) this.unionOptions = data || []
})
this.$businessTool.listUnit().then((data) => {
this.unitOptions = data || []
})
} else if (this.$auth.hasRole("BRANCH_UNION_CHAIRMAN")) {
const userUnionId = this.$store.state.user.union.id
this.$businessTool.listUnion(userUnionId).then((data) => {
this.unionOptions = data ? [data] : []
})
this.$businessTool.listUnit(userUnionId).then((data) => {
this.unitOptions = data || []
})
}
} }
}) })
</script> </script>
@@ -151,7 +151,7 @@ layout("/layouts/platform.html"){
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(() => { }).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.startTaskId}).then((res) => { this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$message.success(res.msg) this.$message.success(res.msg)
this.pageData() this.pageData()
@@ -18,26 +18,28 @@ layout("/layouts/platform.html"){
<el-option label="女" value="女"></el-option> <el-option label="女" value="女"></el-option>
</el-select> </el-select>
</search-item> </search-item>
<search-item label="工会名称"> <template v-if="$auth.hasRoleOr(['SYSADMIN', 'SCHOOL_UNION_ADMIN', 'BRANCH_UNION_CHAIRMAN'])">
<el-select v-model="pageForm.unionId" @change="doSearch" style="width: 100%" <search-item label="工会名称">
placeholder="请选择工会名称" clearable> <el-select v-model="pageForm.unionId" @change="doSearch" style="width: 100%"
<el-option v-for="item in unionOptions" placeholder="请选择工会名称" clearable>
:value="item.id" <el-option v-for="item in unionOptions"
:key="item.id" :value="item.id"
:label="item.name" :key="item.id"
></el-option> :label="item.name"
</el-select> ></el-option>
</search-item> </el-select>
<search-item label="单位名称"> </search-item>
<el-select v-model="pageForm.unitId" @change="doSearch" style="width: 100%" <search-item label="单位名称">
placeholder="请选择单位名称" clearable> <el-select v-model="pageForm.unitId" @change="doSearch" style="width: 100%"
<el-option v-for="item in unitOptions" placeholder="请选择单位名称" clearable>
:value="item.id" <el-option v-for="item in unitOptions"
:key="item.id" :value="item.id"
:label="item.name" :key="item.id"
></el-option> :label="item.name"
</el-select> ></el-option>
</search-item> </el-select>
</search-item>
</template>
</search> </search>
</el-card> </el-card>
<el-card shadow="never"> <el-card shadow="never">
@@ -151,7 +153,7 @@ layout("/layouts/platform.html"){
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
}).then(() => { }).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.startTaskId}).then((res) => { this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$message.success(res.msg) this.$message.success(res.msg)
this.pageData() this.pageData()
@@ -182,10 +184,23 @@ layout("/layouts/platform.html"){
}, },
created() { created() {
this.pageData() this.pageData()
//工会查询 // 根据用户角色加载相应的工会和单位数据
this.$businessTool.listUnion().then((res) => (this.unionOptions = res)) if (this.$auth.hasRoleOr(["SYSADMIN", "SCHOOL_UNION_ADMIN"])) {
//单位查询 this.$businessTool.listUnion().then((data) => {
this.$businessTool.listUnit().then((res) => (this.unitOptions = res)) this.unionOptions = data || []
})
this.$businessTool.listUnit().then((data) => {
this.unitOptions = data || []
})
} else if (this.$auth.hasRole("BRANCH_UNION_CHAIRMAN")) {
const userUnionId = this.$store.state.user.union.id
this.$businessTool.listUnion(userUnionId).then((data) => {
this.unionOptions = data ? [data] : []
})
this.$businessTool.listUnit(userUnionId).then((data) => {
this.unitOptions = data || []
})
}
} }
}) })
</script> </script>
@@ -49,6 +49,10 @@ layout("/layouts/platform_h5.html"){
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
<span>审核</span> <span>审核</span>
</div> </div>
<div class="action-btn delete" v-if="row.canRevoke" @click="onRevoke(row)">
<i class="fa fa-undo"></i>
<span>撤回</span>
</div>
</template> </template>
</table-list> </table-list>
@@ -116,6 +120,22 @@ layout("/layouts/platform_h5.html"){
} }
}, },
methods: { methods: {
onRevoke(row) {
this.$dialog.confirm({
title: '温馨提示',
message: '您确定要撤回吗?',
}).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then(res => {
if (res.code === 0) {
this.$toast.success("提交成功")
this.doSearch()
this.infoShow = false
}
})
}).catch(() => {
// on cancel
});
},
handleTaskAction(val) { handleTaskAction(val) {
this.$refs.formRef.validate().then(() => { this.$refs.formRef.validate().then(() => {
this.$dialog.confirm({ this.$dialog.confirm({
@@ -41,6 +41,10 @@ layout("/layouts/platform_h5.html"){
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
<span>审核</span> <span>审核</span>
</div> </div>
<div class="action-btn delete" v-if="row.canRevoke" @click="onRevoke(row)">
<i class="fa fa-undo"></i>
<span>撤回</span>
</div>
</template> </template>
</table-list> </table-list>
@@ -185,6 +189,22 @@ layout("/layouts/platform_h5.html"){
console.error('获取申请数据失败:', error); console.error('获取申请数据失败:', error);
}); });
}, },
onRevoke(row) {
this.$dialog.confirm({
title: '温馨提示',
message: '您确定要撤回吗?',
}).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then(res => {
if (res.code === 0) {
this.$toast.success("提交成功")
this.doSearch()
this.infoShow = false
}
})
}).catch(() => {
// on cancel
});
},
// 执行任务操作 // 执行任务操作
executeTaskAction(val) { executeTaskAction(val) {
@@ -41,6 +41,10 @@ layout("/layouts/platform_h5.html"){
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
<span>审核</span> <span>审核</span>
</div> </div>
<div class="action-btn delete" v-if="row.canRevoke" @click="onRevoke(row)">
<i class="fa fa-undo"></i>
<span>撤回</span>
</div>
</template> </template>
</table-list> </table-list>
@@ -108,6 +112,22 @@ layout("/layouts/platform_h5.html"){
} }
}, },
methods: { methods: {
onRevoke(row) {
this.$dialog.confirm({
title: '温馨提示',
message: '您确定要撤回吗?',
}).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then(res => {
if (res.code === 0) {
this.$toast.success("提交成功")
this.doSearch()
this.infoShow = false
}
})
}).catch(() => {
// on cancel
});
},
handleTaskAction(val) { handleTaskAction(val) {
this.$refs.formRef.validate().then(() => { this.$refs.formRef.validate().then(() => {
this.$dialog.confirm({ this.$dialog.confirm({
@@ -41,6 +41,10 @@ layout("/layouts/platform_h5.html"){
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
<span>审核</span> <span>审核</span>
</div> </div>
<div class="action-btn delete" v-if="row.canRevoke" @click="onRevoke(row)">
<i class="fa fa-undo"></i>
<span>撤回</span>
</div>
</template> </template>
</table-list> </table-list>
@@ -108,6 +112,22 @@ layout("/layouts/platform_h5.html"){
} }
}, },
methods: { methods: {
onRevoke(row) {
this.$dialog.confirm({
title: '温馨提示',
message: '您确定要撤回吗?',
}).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then(res => {
if (res.code === 0) {
this.$toast.success("提交成功")
this.doSearch()
this.infoShow = false
}
})
}).catch(() => {
// on cancel
});
},
handleTaskAction(val) { handleTaskAction(val) {
this.$refs.formRef.validate().then(() => { this.$refs.formRef.validate().then(() => {
this.$dialog.confirm({ this.$dialog.confirm({
@@ -41,6 +41,10 @@ layout("/layouts/platform_h5.html"){
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
<span>审核</span> <span>审核</span>
</div> </div>
<div class="action-btn delete" v-if="row.canRevoke" @click="onRevoke(row)">
<i class="fa fa-undo"></i>
<span>撤回</span>
</div>
</template> </template>
</table-list> </table-list>
@@ -108,6 +112,22 @@ layout("/layouts/platform_h5.html"){
} }
}, },
methods: { methods: {
onRevoke(row) {
this.$dialog.confirm({
title: '温馨提示',
message: '您确定要撤回吗?',
}).then(() => {
this.$axios.post("/flow/common/revokeTask", {taskId: row.taskId}).then(res => {
if (res.code === 0) {
this.$toast.success("提交成功")
this.doSearch()
this.infoShow = false
}
})
}).catch(() => {
// on cancel
});
},
handleTaskAction(val) { handleTaskAction(val) {
this.$refs.formRef.validate().then(() => { this.$refs.formRef.validate().then(() => {
this.$dialog.confirm({ this.$dialog.confirm({