procedureManage.vue 11 KB

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