procedureManage.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <!--
  2. * @Description: create
  3. * @Version: 1.0
  4. * @Autor: XuTongZhang
  5. * @Date: 2020-07-28 16:00:46
  6. * @LastEditors : yuanrunwei
  7. * @LastEditTime : 2021-03-15 13:45:49
  8. -->
  9. <template>
  10. <div class="indexPage">
  11. <v-input :btn="btn" :list="list" @add="add" @addVideo="addVideo"></v-input>
  12. <v-table :table="table" :tableList="tableList" :sortType="true" :queryData="queryData" @details="details" @editor="editor" @del="del"></v-table>
  13. <!-- :prop="'questionList.' + index + '.questionName'" -->
  14. <v-pager @page="callPage" :total="totalrecords"></v-pager>
  15. <el-dialog :visible.sync="dialogFormVisible" width="660px" :before-close="close" :close-on-click-modal="false">
  16. <el-form :model="form" ref="form" label-width="120px" label-position="left">
  17. <el-form-item label="岗位名称" prop="processName" :rules="{
  18. required: true, message: '请输入岗位名称', trigger: 'blur'
  19. }">
  20. <el-input v-model.trim="form.processName" placeholder="请输入岗位名称" v-if="state!=2" autocomplete="off" maxlength="32" show-word-limit></el-input>
  21. <div v-else>{{form.processName}}</div>
  22. </el-form-item>
  23. <el-form-item v-for="(item, index) in form.questionList" :label="'面试问题' + (index + 1)" :key="item.key" :prop="'questionList.' + index" :rules="{
  24. required: true, validator: validatePass, trigger: 'change'
  25. }">
  26. <div v-if="state!=2">
  27. <div>
  28. <el-select style="margin-bottom:10px" v-model="item.videoIdList" multiple filterable :disabled="state === 2" default-first-option placeholder="请选择面试视频" @change="param => handleChange(param,item)">
  29. <el-option v-for="item in downList" :key="item.key || item.id" :label="item.videoName" :value="item.id">
  30. </el-option>
  31. </el-select>
  32. <el-button style="margin-left:10px" v-if="index==0" @click="addDomain" type="success">新增</el-button>
  33. <el-button style="margin-left:10px" type="danger" v-else @click.prevent="index === 0 || removeDomain(item)">删除</el-button>
  34. </div>
  35. <el-input v-model="item.questionName" type="textarea" :rows="2" resize="none" placeholder="请输入面试问题" maxlength="128" show-word-limit></el-input>
  36. </div>
  37. <div v-else>
  38. <div v-html="item.questionName && item.questionName.replace(/\n/g,'<br/>')">
  39. </div>
  40. <video width="100%" v-if="item.videoIdList && item.videoIdList.length" :src="downList.some(i => i.id === item.videoIdList[item.active]) ? $img + downList.find(i => i.id === item.videoIdList[item.active]).videoPath : ''" controls></video>
  41. <div class="flex">
  42. <div v-for="(i, j) in item.videoIdList" :key="i" class="active" @click="updateActive(item, index, j)" :class="item.active === j ? 'is-active' : ''">{{downList.some(k => k.id === i) ? downList.find(k => k.id === i).videoName : '(已删除)'}}</div>
  43. </div>
  44. </div>
  45. </el-form-item>
  46. <el-form-item label="结束视频设置" prop="ending" :rules="{
  47. required: true, message: '请输入结束语', trigger: 'blur'
  48. }">
  49. <div v-if="state!=2">
  50. <el-input v-model="form.ending" type="textarea" :rows="2" resize="none" placeholder="请输入结束语" style="padding-bottom: 5px" maxlength="128" show-word-limit></el-input>
  51. </div>
  52. <div v-else>
  53. <div>
  54. {{form.ending}}
  55. </div>
  56. </div>
  57. </el-form-item>
  58. <el-form-item label="" prop="endVideoId">
  59. <div v-if="state!=2">
  60. <el-select v-model="form.endVideoId" filterable :disabled="state === 2" default-first-option placeholder="请选择结束视频" clearable @change="param => handleSetting(param)">
  61. <el-option v-for="item in downList" :key="item.key || item.id" :label="item.videoName" :value="item.id">
  62. </el-option>
  63. </el-select>
  64. </div>
  65. <div v-else>
  66. <video width="100%" v-if="form.endVideoId" :src="downList.some(i => i.id === form.endVideoId) ? $img + downList.find(i => i.id === form.endVideoId).videoPath : ''" controls></video>
  67. </div>
  68. </el-form-item>
  69. </el-form>
  70. <div slot="footer" class="dialog-footer">
  71. <el-button @click="close">取 消</el-button>
  72. <el-button type="primary" v-if="state!==2" @click="branch">确 定</el-button>
  73. </div>
  74. </el-dialog>
  75. </div>
  76. </template>
  77. <script>
  78. export default {
  79. data () {
  80. let validatePass = function (rule, value, callback) {
  81. if ((!value.questionName || !value.questionName.length) && (!value.videoIdList || !value.videoIdList.length)) {
  82. callback(new Error('请输入面试问题或选择面试视频'))
  83. } else {
  84. callback()
  85. }
  86. }
  87. return {
  88. tableList: [],
  89. dialogFormVisible: false,
  90. page: 1,
  91. totalrecords: 0,
  92. form: {
  93. questionList: [{
  94. key: 1
  95. }]
  96. },
  97. state: 0,
  98. active: 0,
  99. activeId: '',
  100. downList: [],
  101. pickList: [],
  102. list: [],
  103. delId: [],
  104. btn: [{
  105. name: '添加',
  106. type: 'success',
  107. method: 'add'
  108. },
  109. {
  110. name: '添加视频',
  111. type: 'primary',
  112. method: 'addVideo'
  113. }
  114. ],
  115. table: {
  116. column: [{
  117. label: '序号',
  118. props: 'serialNumber'
  119. },
  120. {
  121. label: '岗位名称',
  122. props: 'processName'
  123. }
  124. ],
  125. handle: [{
  126. title: '查看',
  127. method: 'details',
  128. type: 'info'
  129. },
  130. {
  131. title: '编辑',
  132. method: 'editor',
  133. type: 'warning'
  134. },
  135. {
  136. title: '删除',
  137. method: 'del',
  138. type: 'danger'
  139. }
  140. ]
  141. },
  142. validatePass
  143. }
  144. },
  145. created () {
  146. this.queryData()
  147. this.queryDownList()
  148. },
  149. methods: {
  150. queryData (form = {}) {
  151. let page = this.page
  152. let reqdata = form
  153. this.$api
  154. .post('/process/queryProcessList', {
  155. reqdata,
  156. page
  157. })
  158. .then((res) => {
  159. this.totalrecords = res.totalrecords
  160. this.tableList = res.list.map((item, index) => {
  161. item.serialNumber = (this.page - 1) * 10 + index + 1
  162. return item
  163. })
  164. })
  165. },
  166. queryDownList () {
  167. this.$api
  168. .post('/video/queryVideoList', {
  169. reqdata: {},
  170. rows: 50
  171. })
  172. .then((res) => {
  173. this.downList = res.list
  174. })
  175. },
  176. updateActive (item, index, j) {
  177. // this.form.questionList[index].active = j
  178. item.active = j
  179. this.$set(this.form.questionList, index, item)
  180. },
  181. add () {
  182. this.open()
  183. this.state = 0
  184. },
  185. getDetails (row) {
  186. let reqdata = {
  187. id: row.id
  188. }
  189. this.$api
  190. .post('/process/queryProcessDetail', {
  191. reqdata
  192. })
  193. .then((res) => {
  194. this.open()
  195. this.form = JSON.parse(JSON.stringify(res.object))
  196. this.form.questionList = this.form.questionList.map(item => {
  197. item.active = 0
  198. return item
  199. })
  200. })
  201. },
  202. addVideo () {
  203. this.$router.push({
  204. name: 'videoManage'
  205. })
  206. },
  207. details (row) {
  208. this.getDetails(row)
  209. this.state = 2
  210. },
  211. editor (row) {
  212. this.getDetails(row)
  213. this.state = 1
  214. },
  215. del (row) {
  216. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  217. confirmButtonText: '确定',
  218. cancelButtonText: '取消',
  219. type: 'warning'
  220. }).then(() => {
  221. let reqdata = {
  222. id: row.id
  223. }
  224. this.$api
  225. .post('/process/deleteProcess', {
  226. reqdata
  227. })
  228. .then((res) => {
  229. this.$message({
  230. message: '删除成功',
  231. type: 'success'
  232. })
  233. this.queryData()
  234. })
  235. }).catch(() => {
  236. this.$message({
  237. type: 'info',
  238. message: '已取消删除'
  239. })
  240. })
  241. },
  242. branch () {
  243. if (this.state) {
  244. this.uploadQuestion()
  245. } else {
  246. this.determine()
  247. }
  248. },
  249. uploadQuestion () {
  250. let a
  251. this.$refs['form'].validate((valid) => {
  252. a = valid
  253. })
  254. if (!a) return
  255. let list = this.form.questionList.filter(item => !item.id)
  256. let b = 0
  257. list.length
  258. ? list.forEach(item => {
  259. let reqdata = item
  260. reqdata.processId = this.form.id
  261. this.$api
  262. .post('/question/saveQuestion', {
  263. reqdata
  264. })
  265. .then((res) => {
  266. b++
  267. item.id = res.object.id
  268. // this.form.questionList[this.form.questionList.length - index - 1].id = res.object.id
  269. // console.log(b, num)
  270. if (b === list.length) {
  271. this.determine()
  272. }
  273. })
  274. })
  275. : this.determine()
  276. },
  277. determine () {
  278. let a
  279. this.$refs['form'].validate((valid) => {
  280. a = valid
  281. })
  282. if (!a) return
  283. let url = this.state ? '/process/updateProcess' : '/process/saveProcess'
  284. let reqdata = JSON.parse(JSON.stringify(this.form))
  285. if (this.state) {
  286. reqdata.questionList.map(item => {
  287. item.questionId = item.id
  288. return item
  289. })
  290. // this.delId.forEach(item => {
  291. // reqdata.questionList.push({ questionId: item })
  292. // })
  293. }
  294. this.$api
  295. .post(url, {
  296. reqdata
  297. })
  298. .then((res) => {
  299. this.close()
  300. this.queryData()
  301. this.delId = []
  302. })
  303. },
  304. removeDomain (item) {
  305. var index = this.form.questionList.indexOf(item)
  306. if (index !== -1) {
  307. this.delId.push(this.form.questionList[index].id)
  308. this.form.questionList.splice(index, 1)
  309. }
  310. },
  311. open () {
  312. this.dialogFormVisible = true
  313. },
  314. close () {
  315. this.dialogFormVisible = false
  316. setTimeout(() => {
  317. this.form = {
  318. processName: '',
  319. questionList: []
  320. }
  321. this.form.questionList.push({
  322. key: 1,
  323. questionName: ''
  324. })
  325. }, 200)
  326. // this.$forceUpdate()
  327. },
  328. addDomain () {
  329. this.form.questionList.push({
  330. key: Date.now()
  331. })
  332. },
  333. callPage (val) {
  334. this.page = val
  335. this.queryData()
  336. },
  337. handleChange (param, item) {
  338. if (!item.questionName) {
  339. const array = this.downList.filter(item => item.id === param[0])
  340. item.questionName = array[0].videoName
  341. this.$forceUpdate()
  342. }
  343. },
  344. handleSetting (param) {
  345. if (!this.form.ending) {
  346. const array = this.downList.filter(item => item.id === param)
  347. this.form.ending = array[0].videoName
  348. this.$forceUpdate()
  349. }
  350. }
  351. },
  352. watch: {
  353. dialogFormVisible: function (val, oldVla) {
  354. if (this.state === 2) {
  355. if (this.$refs['form'] !== undefined) {
  356. this.$refs['form'].resetFields()
  357. }
  358. }
  359. }
  360. }
  361. }
  362. </script>
  363. <style lang="scss" scoped>
  364. .dialog-footer {
  365. display: flex;
  366. justify-content: center;
  367. align-items: center;
  368. }
  369. .flex {
  370. margin-bottom: 5px;
  371. display: flex;
  372. .active {
  373. cursor: pointer;
  374. color: rgb(42, 117, 216);
  375. margin: 5px 10px;
  376. }
  377. .is-active {
  378. color: #000;
  379. font-size: 16px;
  380. }
  381. }
  382. </style>