|
@@ -80,8 +80,8 @@
|
|
<el-table-column label="联系电话" align="center" prop="phone" />
|
|
<el-table-column label="联系电话" align="center" prop="phone" />
|
|
<el-table-column label="地址" align="center" prop="address" />
|
|
<el-table-column label="地址" align="center" prop="address" />
|
|
<!-- <el-table-column label="审核状态" align="center" prop="" /> -->
|
|
<!-- <el-table-column label="审核状态" align="center" prop="" /> -->
|
|
- <el-table-column label="会员类型" align="center" prop="" />
|
|
|
|
- <el-table-column label="会员到期时间" align="center" prop="" />
|
|
|
|
|
|
+ <el-table-column label="会员类型" align="center" prop="vipType" />
|
|
|
|
+ <el-table-column label="会员到期时间" align="center" prop="vipExpireFormatDate" />
|
|
<el-table-column label="职位发布类型" align="center" prop="pubJobTypePerm">
|
|
<el-table-column label="职位发布类型" align="center" prop="pubJobTypePerm">
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
<span v-for="k in scope.row.pubJobTypePerm" :key="k">
|
|
<span v-for="k in scope.row.pubJobTypePerm" :key="k">
|
|
@@ -124,6 +124,7 @@ import PositionTypeForm from './positionTypeForm.vue'
|
|
import { IndustryApi, IndustryVO } from '@/api/menduner/system/industry'
|
|
import { IndustryApi, IndustryVO } from '@/api/menduner/system/industry'
|
|
import { handleTree } from '@/utils/tree'
|
|
import { handleTree } from '@/utils/tree'
|
|
import { dealDictObjData } from '@/utils/transform/position'
|
|
import { dealDictObjData } from '@/utils/transform/position'
|
|
|
|
+import { formatToDate } from '@/utils/dateUtil'
|
|
|
|
|
|
/** 门墩儿-企业信息 列表 */
|
|
/** 门墩儿-企业信息 列表 */
|
|
defineOptions({ name: 'Enterprise' })
|
|
defineOptions({ name: 'Enterprise' })
|
|
@@ -167,6 +168,9 @@ const getList = async () => {
|
|
const { areaName } = dealDictObjData({}, {areaId: row.addressList[0].areaId})
|
|
const { areaName } = dealDictObjData({}, {areaId: row.addressList[0].areaId})
|
|
row.address = areaName + row.addressList[0].address || ''
|
|
row.address = areaName + row.addressList[0].address || ''
|
|
}
|
|
}
|
|
|
|
+ const vipFlag = row.vipFlag ? row.vipFlag.toString() : null
|
|
|
|
+ if (vipFlag === '20' || vipFlag === '22' || vipFlag === '23') row.vipType = '旧平台会员'
|
|
|
|
+ if (row.vipExpireDate) row.vipExpireFormatDate = formatToDate(row.vipExpireDate)
|
|
return row
|
|
return row
|
|
})
|
|
})
|
|
total.value = data.total
|
|
total.value = data.total
|