flat: 修改识别与服务管理的bug

This commit is contained in:
yangxiao
2025-11-21 11:52:30 +08:00
parent 5591ab8313
commit 1726e353d1
2 changed files with 19 additions and 5 deletions

View File

@@ -174,7 +174,8 @@ export default {
get() { get() {
let name = this.selectInfo ? this.selectInfo.name : null; let name = this.selectInfo ? this.selectInfo.name : null;
if (name) name = name.trim() if (name) name = name.trim()
if (['潜在就业困难人员', '潜在登记失业人员', "潜在的就业困难退出人员"].some(item => item === name)) { console.log(name)
if (['潜在就业困难人员','潜在就业见习申请人员', '潜在登记失业人员', "潜在的就业困难退出人员"].some(item => item === name)) {
return true return true
} }
return false return false
@@ -183,10 +184,10 @@ export default {
}, },
methods: { methods: {
async informationPush() { async informationPush() {
let resData = await getMsgContent() let resData = await getMsgContent({serveId: this.rowData.id})
if (resData.status === 200 && resData.data.code === 200) { if (resData.status === 200 && resData.data.code === 200) {
const data = resData.data const data = resData.data
this.$confirm(data.msg, { this.$confirm(data.data, {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"

View File

@@ -397,8 +397,8 @@ export default {
height: '100', height: '100',
column: [ column: [
{ {
label: "所属机构", label: "服务机构",
prop: "deptId", prop: "companyName",
type: "tree", type: "tree",
multiple: false, multiple: false,
dicData: this.depTree, dicData: this.depTree,
@@ -450,6 +450,19 @@ export default {
label: '常驻地址', label: '常驻地址',
prop: 'residentAddress', prop: 'residentAddress',
}, },
{
label: "是否本级",
prop: "isCurrentLevel",
dicData: [
{ value: 0, label: "" },
{ value: 1, label: "" },
],
type: 'select',
search: true,
hide: true,
searchLabelWidth: 100,
searchSpan: 8,
},
{ {
label: "毕业年份", label: "毕业年份",
width: 100, width: 100,