index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <div class="card-search">
  3. <a-form ref="formRef" name="advanced_search" class="ant-advanced-search-form" :model="searchParams">
  4. <a-row :gutter="24">
  5. <a-col :span="6">
  6. <a-form-item label="岗位名称" :label-col="{span:6}" name="postName">
  7. <a-input v-model:value="searchParams.postName" placeholder=""/>
  8. </a-form-item>
  9. </a-col>
  10. <a-col :span="6">
  11. <a-form-item label="" :label-col="{span:3}" name="">
  12. <label style="margin-left:26px;">招聘人数:</label>
  13. <a-input type="number" v-model:value="searchParams.minCount" style="width: 30%;margin-right: 10px;"
  14. placeholder=""/>
  15. <a-input type="number" v-model:value="searchParams.maxCount" style="width: 30%;" placeholder=""
  16. />
  17. </a-form-item>
  18. </a-col>
  19. <a-col :span="6">
  20. <a-form-item label="招聘企业" :label-col="{span:6}" name="companyName">
  21. <a-input v-model:value="searchParams.companyName" placeholder=""/>
  22. </a-form-item>
  23. </a-col>
  24. <a-col :span="6" style="text-align: left">
  25. <a-button type="primary" html-type="submit" @click="onSearch">查询</a-button>
  26. <a-button
  27. style="margin: 0 8px"
  28. @click="
  29. () => {
  30. formRef.resetFields();
  31. loadData();
  32. }
  33. ">重置</a-button>
  34. <a style="font-size: 12px" @click="expand = !expand">
  35. <template v-if="expand">
  36. <UpOutlined />
  37. </template>
  38. <template v-else>
  39. <DownOutlined />
  40. </template>
  41. {{ expand ? '收缩' : '展开' }}
  42. </a>
  43. </a-col>
  44. </a-row>
  45. <a-row :gutter="24" v-show="expand">
  46. <a-col :span="6">
  47. <a-form-item label="岗位状态" :label-col="{span:6}" name="recordStatus">
  48. <a-select
  49. ref="select"
  50. v-model:value="searchParams.recordStatus"
  51. :options="postStatusList"
  52. :field-names="{ label: 'name', value: 'value' }"
  53. :allow-clear="true"
  54. @change="loadData"
  55. >
  56. </a-select>
  57. </a-form-item>
  58. </a-col>
  59. <a-col :span="6">
  60. <a-form-item label="工种名称" :label-col="{span:6}" name="WorkNmae">
  61. <a-input v-model:value="searchParams.WorkNmae" placeholder=""/>
  62. </a-form-item>
  63. </a-col>
  64. </a-row>
  65. <a-row class="edit-operation">
  66. <a-col :span="24" style="text-align: right">
  67. <a-button type="primary" html-type="submit" functioncode="T01020202" @click='onAdd'>新增</a-button>
  68. <BImportExcel
  69. functioncode="T01020205"
  70. :options="importOptions"
  71. @success="loadData"
  72. ></BImportExcel>
  73. <BExportExcel :title="'导出'" :filename="'岗位信息'"
  74. :url="'companyService/post/export'"
  75. :params="{...searchParams, isExport: true, rows:10000}"></BExportExcel>
  76. </a-col>
  77. </a-row>
  78. </a-form>
  79. <div class="search-result-list">
  80. <a-table :columns="columns" :data-source="dataList" :scroll="{ x:'100%', y: 500 }" :pagination="pagination"
  81. :loading="formState.loading"
  82. @change="handleTableChange"
  83. :row-selection="{ selectedRowKeys: formState.selectedRowKeys, onChange: onSelectChange}"
  84. :row-key="record=>record.postID"
  85. bordered>
  86. <template #bodyCell="{ column, text, record }">
  87. <template v-if="column.key === 'operation'">
  88. <div class="table-operation">
  89. <a-button type="link" size="small" @click='onEdit(record)' functioncode="T01020203">编辑</a-button>
  90. <a-button type="link" size="small" @click="onDel(record)" functioncode="T01020204">删除</a-button>
  91. </div>
  92. </template>
  93. </template>
  94. </a-table>
  95. </div>
  96. </div>
  97. </template>
  98. <script lang="ts">
  99. import {reactive, ref, computed, defineComponent, createVNode} from 'vue';
  100. import {DownOutlined, UpOutlined} from '@ant-design/icons-vue';
  101. import type {FormInstance} from 'ant-design-vue';
  102. import {Modal} from 'ant-design-vue';
  103. import type {TableColumnsType, TableProps} from 'ant-design-vue';
  104. import {getList, del} from '@/api/companyService/post';
  105. import BExportExcel from "@/components/basic/excel/exportExcel/exportExcel.vue";
  106. import BImportExcel from '@/components/basic/excel/importExcel/importExcel.vue';
  107. import {getPaginationTotalTitle} from "@/utils/common";
  108. import {ExclamationCircleOutlined} from '@ant-design/icons-vue';
  109. import dayjs from 'dayjs';
  110. import {useRoute} from 'vue-router';
  111. import {useTabsViewStore} from "@/store/modules/tabsView";
  112. import type {ImportProps} from "@/components/basic/excel/importExcel/ImportProps";
  113. export default defineComponent({
  114. components: {DownOutlined, UpOutlined, BExportExcel, BImportExcel},
  115. setup: function () {
  116. const formRef = ref<FormInstance>();
  117. const searchParams = reactive({
  118. pageIndex: 1,
  119. pageSize: 20,
  120. primaryKey: '',
  121. minCount: null,
  122. maxCount: null,
  123. recordStatus: null
  124. });
  125. const expand = ref(false);
  126. const postStatusList = [{name: '启用', value: 1}, {name: '停用', value: 0}];
  127. const importOptions = ref<ImportProps>({
  128. title: '导入',
  129. url: 'companyService/post/importPost ',
  130. columns: [
  131. {cnName: '岗位名称', enName: 'postName', width: 100},
  132. {cnName: '有效开始时间', enName: 'validTime', width: 100},
  133. {cnName: '有效期(天)', enName: 'validDay', width: 100},
  134. {cnName: '岗位状态', enName: 'recordStatusName', width: 100},
  135. {cnName: '所属企业', enName: 'companyName', width: 100},
  136. {cnName: '工作性质', enName: 'workNature', width: 100},
  137. {cnName: '工作年限', enName: 'workYear', width: 100},
  138. {cnName: '招聘人数', enName: 'recruitCount', width: 100},
  139. {cnName: '文化程度', enName: 'cultureLevelName', width: 100},
  140. {cnName: '最高薪酬', enName: 'maxSalary', width: 100},
  141. {cnName: '最低薪酬', enName: 'minSalary', width: 100},
  142. {cnName: '福利待遇', enName: 'welfare', width: 100},
  143. {cnName: '联系人', enName: 'userName', width: 100},
  144. {cnName: '联系电话', enName: 'userMobile', width: 100},
  145. {cnName: '邮箱', enName: 'postEmail', width: 100},
  146. {cnName: '工作时长', enName: 'workTime', width: 100},
  147. {cnName: '是否试用期', enName: 'isTrailName', width: 100},
  148. {cnName: '试用期时长(月)', enName: 'trailtime', width: 100},
  149. {cnName: '试用期最高薪酬', enName: 'trailMaxSalary', width: 100},
  150. {cnName: '试用期最低薪酬', enName: 'trailMinSalary', width: 100},
  151. {cnName: '岗位描述', enName: 'postDesc', width: 100},
  152. ],
  153. template: {
  154. tempFileName: '岗位信息导入模板.xlsx',
  155. url: '',
  156. params: null,
  157. },
  158. });
  159. const formState = reactive({
  160. total: 0,
  161. selectedRowKeys: [],
  162. loading: false
  163. });
  164. const columns: TableColumnsType = [
  165. {
  166. title: '序号',
  167. align: "center",
  168. key: 'institutionID',
  169. customRender: item => `${searchParams.pageSize * (searchParams.pageIndex - 1) + item.index + 1}`
  170. },
  171. {title: '岗位名称', dataIndex: 'postName', key: 'postName', align: "center"},
  172. {title: '招聘人数', dataIndex: 'recruitCount', key: 'recruitCount', width: 120, align: "center"},
  173. {
  174. title: '有效开始日期', dataIndex: 'validTime', key: 'validTime', align: "center", customRender: (item) => {
  175. return item.record.validTime == null ? "" : (dayjs(item.record.validTime).format('YYYY-MM-DD'))
  176. }
  177. },
  178. {title: '有效期(天)', dataIndex: 'validDay', key: 'validDay', align: "center"},
  179. {title: '招聘企业', dataIndex: 'companyName', key: 'companyName', align: "center"},
  180. {
  181. title: '岗位状态', dataIndex: 'recordStatus', key: 'recordStatus', align: "center", customRender: (item) => {
  182. return item.record.recordStatus == 1 ? "启用" : "停用";
  183. }
  184. },
  185. {title: '工种名称', dataIndex: 'workNmae', key: 'workNmae', align: "center"},
  186. {title: '文化程度', dataIndex: 'cultureLevelName', key: 'cultureLevelName', align: "center"},
  187. {
  188. title: '薪酬', dataIndex: 'siteCount', key: 'siteCount', align: "center", customRender: (item) => {
  189. const salary = `${item.record.minSalary??""}~${item.record.maxSalary??""}`
  190. return salary;
  191. }
  192. },
  193. {title: '联系人', dataIndex: 'userName', key: 'userName', align: "center"},
  194. {title: '联系电话', dataIndex: 'userMobile', key: 'userMobile', align: "center"},
  195. {title: '操作', key: 'operation', fixed: 'right', width: 170, align: "center"},
  196. ];
  197. const pagination = computed(() => ({
  198. total: formState.total,
  199. current: searchParams.pageIndex,
  200. pageSize: searchParams.pageSize,
  201. showSizeChanger: true,
  202. showTotal: total => getPaginationTotalTitle(total)
  203. }));
  204. const tabsViewStore = useTabsViewStore();
  205. const dataList = ref([]);
  206. const loadData = async function () {
  207. formState.loading = true;
  208. const result: any = await getList(searchParams);
  209. dataList.value = result.list;
  210. console.log(dataList.value);
  211. formState.total = result.total;
  212. formState.loading = false;
  213. }
  214. const onAdd = () => {
  215. tabsViewStore.addTabByPath('/companyService/post/add', {});
  216. };
  217. const onEdit = (item: any) => {
  218. console.log(item);
  219. console.log(item.postID);
  220. tabsViewStore.addTabByPath('/companyService/post/edit', {id: item.postID});
  221. };
  222. const handleTableChange: TableProps['onChange'] = (pag: { pageSize: number; current: number },) => {
  223. searchParams.pageIndex = pag.current;
  224. searchParams.pageSize = pag.pageSize;
  225. loadData();
  226. };
  227. const onSelectChange = (selectedRowKeys: any) => {
  228. formState.selectedRowKeys = selectedRowKeys;
  229. };
  230. const onSearch = () => {
  231. loadData();
  232. }
  233. const onDel = (item: any) => {
  234. console.log(item.postID);
  235. Modal.confirm({
  236. title: '确认删除该岗位?',
  237. icon: createVNode(ExclamationCircleOutlined),
  238. content: '',
  239. okText: '确认删除',
  240. okType: 'danger',
  241. okButtonProps: {},
  242. cancelText: '取消',
  243. onOk() {
  244. del(item.postID).then(() => {
  245. loadData();
  246. });
  247. },
  248. onCancel() {
  249. },
  250. })
  251. };
  252. const importPost = () => {
  253. console.log('导入');
  254. }
  255. const exportPost = () => {
  256. console.log('导出');
  257. }
  258. return {
  259. formRef,
  260. searchParams,
  261. formState,
  262. columns,
  263. pagination,
  264. dataList,
  265. importOptions,
  266. handleTableChange,
  267. onSelectChange,
  268. onSearch,
  269. importPost,
  270. exportPost,
  271. onDel,
  272. loadData,
  273. onAdd,
  274. onEdit,
  275. expand,
  276. postStatusList
  277. };
  278. },
  279. created() {
  280. this.loadData();
  281. },
  282. activated() {
  283. const route = useRoute();
  284. if (route.params.reload) this.loadData();
  285. }
  286. });
  287. </script>
  288. <style lang="less" scoped></style>