branchManager.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. <template>
  2. <div class='m-container'>
  3. <h2>
  4. <div class="squrt"></div>合作单位
  5. </h2>
  6. <div class="m-core">
  7. <!-- 搜索类型 -->
  8. <el-form :inline="true"
  9. class="searchForm"
  10. v-model.trim="searchForm">
  11. <el-form-item>
  12. <el-input v-model="searchForm.search"
  13. placeholder="请输入合作单位名称"></el-input>
  14. </el-form-item>
  15. <el-form-item>
  16. <el-select v-model.trim="searchForm.organId"
  17. placeholder="请选择分部"
  18. filterable
  19. clearable>
  20. <el-option v-for="item in userBranchList"
  21. :key="item.value"
  22. :label="item.label"
  23. :value="item.value"></el-option>
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item>
  27. <el-select v-model.trim="searchForm.isEnable"
  28. placeholder="请选择状态"
  29. filterable
  30. clearable>
  31. <el-option label="开启"
  32. :value="true"></el-option>
  33. <el-option label="关闭"
  34. :value="false"></el-option>
  35. </el-select>
  36. </el-form-item>
  37. <el-form-item>
  38. <el-button @click="search"
  39. type="danger">搜索</el-button>
  40. <el-button @click="onReSet"
  41. type="primary">重置</el-button>
  42. <!-- export/isSettlementCourseSalarys -->
  43. <el-button @click="onExport"
  44. v-permission="'export/cooperationOrgan'"
  45. type="primary">导出</el-button>
  46. </el-form-item>
  47. </el-form>
  48. <div @click="openTeaching('create')"
  49. v-permission="'cooperationOrgan/add'"
  50. class='newBand'>新建</div>
  51. <!-- 列表 -->
  52. <div class="tableWrap">
  53. <el-table :data='tableList'
  54. :header-cell-style="{background:'#EDEEF0',color:'#444'}">
  55. <el-table-column align='center'
  56. prop='id'
  57. label="单位编号">
  58. </el-table-column>
  59. <el-table-column align='center'
  60. prop='name'
  61. label="单位名称">
  62. </el-table-column>
  63. <el-table-column align='center'
  64. prop='name'
  65. label="所属分部">
  66. <template slot-scope="scope">
  67. <div>
  68. {{ scope.row.organization.name }}
  69. </div>
  70. </template>
  71. </el-table-column>
  72. <el-table-column align='center'
  73. prop='linkman'
  74. label="联系人">
  75. </el-table-column>
  76. <el-table-column align='center'
  77. prop='job'
  78. label="职位">
  79. </el-table-column>
  80. <el-table-column align='center'
  81. prop='mobileNo'
  82. label="手机号">
  83. </el-table-column>
  84. <el-table-column align='center'
  85. label="是否全职资源">
  86. <template slot-scope="scope">
  87. {{ scope.row.fullJobResource ? '是' : '否' }}
  88. </template>
  89. </el-table-column>
  90. <el-table-column align='center'
  91. label="状态">
  92. <template slot-scope="scope">
  93. <div>
  94. {{scope.row.isEnable?'开启':'关闭'}}
  95. </div>
  96. </template>
  97. </el-table-column>
  98. <!-- <el-table-column align='center' prop='ownershipType'
  99. label="权属类型">
  100. <template slot-scope="scope">
  101. {{ scope.row.ownershipType | branchType }}
  102. </template>
  103. </el-table-column> -->
  104. <el-table-column align='center'
  105. label="操作"
  106. width='100'>
  107. <template slot-scope="scope">
  108. <el-button @click="openTeaching('update', scope.row)"
  109. v-permission="'cooperationOrgan/update'"
  110. type="text">修改</el-button>
  111. <el-button @click="onDelete(scope.row)"
  112. v-permission="'cooperationOrgan/del'"
  113. type="text">删除</el-button>
  114. </template>
  115. </el-table-column>
  116. </el-table>
  117. <pagination :total="pageInfo.total"
  118. :page.sync="pageInfo.page"
  119. :limit.sync="pageInfo.limit"
  120. :page-sizes="pageInfo.page_size"
  121. @pagination="getList" />
  122. </div>
  123. </div>
  124. <el-dialog :title="formTitle[formActionTitle]"
  125. :visible.sync="teachingStatus"
  126. @close="onFormClose('ruleForm')"
  127. width="500px">
  128. <el-form :model="form"
  129. :rules="rules"
  130. ref="ruleForm">
  131. <el-form-item label="单位名称"
  132. prop="name"
  133. :label-width="formLabelWidth">
  134. <el-input v-model.trim="form.name"
  135. autocomplete="off"></el-input>
  136. </el-form-item>
  137. <el-form-item label="所属分部"
  138. prop="organId"
  139. :label-width="formLabelWidth">
  140. <el-select v-model.trim="form.organId"
  141. filterable
  142. clearable>
  143. <el-option v-for="item in userBranchList"
  144. :key="item.value"
  145. :label="item.label"
  146. :value="item.value"></el-option>
  147. </el-select>
  148. </el-form-item>
  149. <el-form-item label="状态"
  150. prop="isEnable"
  151. :label-width="formLabelWidth">
  152. <el-select v-model.trim="form.isEnable"
  153. filterable
  154. clearable>
  155. <el-option label="开启"
  156. :value="true"></el-option>
  157. <el-option label="关闭"
  158. :value="false"></el-option>
  159. </el-select>
  160. </el-form-item>
  161. <el-form-item label="联系人"
  162. prop="linkman"
  163. :label-width="formLabelWidth">
  164. <el-input v-model.trim="form.linkman"
  165. autocomplete="off"></el-input>
  166. </el-form-item>
  167. <el-form-item label="职位"
  168. prop="job"
  169. :label-width="formLabelWidth">
  170. <el-input v-model.trim="form.job"
  171. autocomplete="off"></el-input>
  172. </el-form-item>
  173. <el-form-item label="手机号"
  174. prop="mobileNo"
  175. :label-width="formLabelWidth">
  176. <el-input v-model.trim="form.mobileNo"
  177. autocomplete="off"></el-input>
  178. </el-form-item>
  179. <el-form-item label="是否全职资源"
  180. prop="fullJobResource"
  181. :label-width="formLabelWidth">
  182. <el-select v-model.trim="form.fullJobResource">
  183. <el-option label="是"
  184. :value="1"></el-option>
  185. <el-option label="否"
  186. :value="0"></el-option>
  187. </el-select>
  188. </el-form-item>
  189. </el-form>
  190. <span slot="footer"
  191. class="dialog-footer">
  192. <el-button @click="teachingStatus = false">取 消</el-button>
  193. <el-button type="primary"
  194. @click="onTeachingSubmit('ruleForm')">确 定</el-button>
  195. </span>
  196. </el-dialog>
  197. </div>
  198. </template>
  199. <script>
  200. import pagination from '@/components/Pagination/index'
  201. import { cooperationOrganAdd, cooperationOrganUpdate, cooperationOrganDel, queryPage } from '@/api/systemManage'
  202. import { getEmployeeOrgan } from '@/api/buildTeam'
  203. import cleanDeep from 'clean-deep'
  204. import store from '@/store'
  205. import { isvalidPhone } from '@/utils/validate'
  206. import { getToken } from "@/utils/auth";
  207. import { Export } from '@/utils/downLoadFile'
  208. import qs from "qs";
  209. import axios from "axios";
  210. let validPhone = (rule, value, callback) => {
  211. if (!value) {
  212. callback(new Error('请输入电话号码'))
  213. } else if (!isvalidPhone(value)) {
  214. callback(new Error('请输入正确的11位手机号码'))
  215. } else {
  216. callback()
  217. }
  218. }
  219. export default {
  220. name: 'branchManager',
  221. components: { pagination },
  222. data () {
  223. return {
  224. searchForm: {
  225. organId: null,
  226. isEnable: null,
  227. search: null
  228. },
  229. searchLsit: [],
  230. tableList: [],
  231. userBranchList: [], // 用户当前分部列表
  232. pageInfo: {
  233. // 分页规则
  234. limit: 10, // 限制显示条数
  235. page: 1, // 当前页
  236. total: 0, // 总条数
  237. page_size: [10, 20, 40, 50] // 选择限制显示条数
  238. },
  239. teachingStatus: false, // 添加教学点
  240. formActionTitle: 'create',
  241. formTitle: {
  242. create: '添加合作单位',
  243. update: '修改合作单位'
  244. },
  245. formLabelWidth: '120px',
  246. form: {
  247. id: null,
  248. name: null, // 教学点名称
  249. linkman: null, // 来源
  250. job: null, // 费用
  251. mobileNo: null,
  252. fullJobResource: null,
  253. organId: null
  254. },
  255. rules: {
  256. name: [{ required: true, message: '请输入教学点名称', trigger: 'blur' }],
  257. linkman: [{ required: true, message: '请输入联系人', trigger: 'blur' }],
  258. job: [{ required: true, message: '请输入职位', trigger: 'blur' }],
  259. mobileNo: [{ required: true, validator: validPhone, trigger: 'blur' }, , { pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号', trigger: 'blur' }],
  260. organId: [{ required: true, message: '请选择所属分部', trigger: 'change' }],
  261. fullJobResource: [{ required: true, message: '请选择是否全职资源', trigger: 'change' }],
  262. isEnable: [{ required: true, message: '请选择状态', trigger: 'change' }]
  263. },
  264. }
  265. },
  266. mounted () {
  267. this.getList() // 获取列表数据
  268. // 获取当前用户分部
  269. getEmployeeOrgan().then(res => {
  270. if (res.code == 200) {
  271. res.data.forEach(item => {
  272. this.userBranchList.push({
  273. label: item.name,
  274. value: item.id
  275. })
  276. })
  277. }
  278. })
  279. },
  280. methods: {
  281. onDelete (rows) {
  282. this.$confirm('您确定删除合作单位?', '提示', {
  283. confirmButtonText: '确定',
  284. cancelButtonText: '取消',
  285. type: 'warning'
  286. }).then(() => {
  287. cooperationOrganDel(rows.id).then(res => {
  288. if (res.code == 200) {
  289. this.$message.success('删除成功')
  290. this.teachingStatus = false
  291. this.getList()
  292. } else {
  293. this.$message.error(res.msg)
  294. }
  295. })
  296. }).catch(() => { });
  297. },
  298. search () {
  299. this.pageInfo.page = 1;
  300. this.getList()
  301. },
  302. onReSet () {
  303. this.searchForm = {
  304. organId: null,
  305. isEnable: null
  306. }
  307. this.search()
  308. },
  309. onExport () {
  310. Export(this, {
  311. url: '/api-web/export/cooperationOrgan',
  312. fileName: '合作单位.xlsx',
  313. method: 'post',
  314. params: qs.stringify(cleanDeep(this.searchForm))
  315. }, '您确定导出合作单位?')
  316. },
  317. onTeachingSubmit (formName) { // 添加数据
  318. this.$refs[formName].validate((valid) => {
  319. if (valid) {
  320. if (this.formActionTitle == 'create') {
  321. if (this.form.id) { // 判断有没有Id,如果有则删除
  322. delete this.form.id
  323. }
  324. cooperationOrganAdd(this.form).then(res => {
  325. if (res.code == 200) {
  326. this.$message.success('创建成功')
  327. this.teachingStatus = false
  328. this.getList()
  329. } else {
  330. this.$message.error(res.msg)
  331. }
  332. })
  333. } else if (this.formActionTitle == 'update') {
  334. cooperationOrganUpdate(this.form).then(res => {
  335. if (res.code == 200) {
  336. this.$message.success('修改成功')
  337. this.teachingStatus = false
  338. this.getList()
  339. } else {
  340. this.$message.error(res.msg)
  341. }
  342. })
  343. }
  344. } else {
  345. return false;
  346. }
  347. })
  348. },
  349. getList () {
  350. queryPage({
  351. rows: this.pageInfo.limit,
  352. page: this.pageInfo.page,
  353. ...this.searchForm
  354. }).then(res => {
  355. if (res.code == 200 && res.data) {
  356. this.tableList = res.data.rows
  357. this.pageInfo.total = res.data.total
  358. }
  359. })
  360. },
  361. openTeaching (type, rows) {
  362. // 重置数据
  363. this.teachingStatus = true
  364. this.formActionTitle = type
  365. // 修改的时候赋值
  366. if (type == 'update') {
  367. this.form = {
  368. id: rows.id,
  369. name: rows.name, // 教学点名称
  370. linkman: rows.linkman, // 来源
  371. job: rows.job, // 费用
  372. mobileNo: rows.mobileNo ? rows.mobileNo : null,
  373. ownershipType: rows.ownershipType,
  374. organId: rows.organId,
  375. fullJobResource: rows.fullJobResource,
  376. isEnable: rows.isEnable
  377. }
  378. }
  379. },
  380. onFormClose (formName) { // 关闭弹窗重置验证
  381. // this.$refs[formName].clearValidate()
  382. this.form = {
  383. id: null,
  384. name: null, // 教学点名称
  385. linkman: null, // 来源
  386. job: null, // 费用
  387. mobileNo: null,
  388. fullJobResource: null,
  389. organId: null,
  390. isEnable: null
  391. }
  392. this.$refs[formName].resetFields()
  393. }
  394. }
  395. }
  396. </script>
  397. <style lang="scss" scoped>
  398. .el-button--primary {
  399. background: #14928a;
  400. border-color: #14928a;
  401. color: #fff;
  402. &:hover,
  403. &:active,
  404. &:focus {
  405. background: #14928a;
  406. border-color: #14928a;
  407. color: #fff;
  408. }
  409. }
  410. /deep/.el-select {
  411. width: 100% !important;
  412. }
  413. .el-vue-search-box-container {
  414. position: absolute !important;
  415. left: 10px;
  416. margin-top: 10px;
  417. z-index: 99999 !important;
  418. }
  419. </style>