flat: 修改识别与服务管理的bug
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user