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="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 class="flex">
  28. <el-input v-model="item.questionName" type="textarea" :rows="2" resize="none" placeholder="请输入面试问题" maxlength="128" show-word-limit></el-input>
  29. <el-button v-if="index==0" @click="addDomain" type="success">新增</el-button>
  30. <el-button type="danger" v-else @click.prevent="index === 0 || removeDomain(item)">删除</el-button>
  31. </div>
  32. <el-select v-model="item.videoIdList" multiple filterable :disabled="state === 2" default-first-option placeholder="请选择面试视频">
  33. <el-option v-for="item in downList" :key="item.key || item.id" :label="item.videoName" :value="item.id">
  34. </el-option>
  35. </el-select>
  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" :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 type="primary" v-if="state!==2" @click="branch">确 定</el-button>
  75. </div>
  76. </el-dialog>
  77. </div>
  78. </template>
  79. <script>
  80. export default {
  81. data () {
  82. let validatePass = function (rule, value, callback) {
  83. if ((!value.questionName || !value.questionName.length) && (!value.videoIdList || !value.videoIdList.length)) {
  84. callback(new Error('请输入面试问题或选择面试视频'))
  85. } else {
  86. callback()
  87. }
  88. }
  89. return {
  90. tableList: [],
  91. dialogFormVisible: false,
  92. page: 1,
  93. totalrecords: 0,
  94. form: {
  95. questionList: [{
  96. key: 1
  97. }]
  98. },
  99. state: 0,
  100. active: 0,
  101. activeId: '',
  102. downList: [],
  103. pickList: [],
  104. list: [],
  105. delId: [],
  106. btn: [{
  107. name: '添加',
  108. type: 'success',
  109. method: 'add'
  110. },
  111. {
  112. name: '添加视频',
  113. type: 'primary',
  114. method: 'addVideo'
  115. }
  116. ],
  117. table: {
  118. column: [{
  119. label: '序号',
  120. props: 'serialNumber'
  121. },
  122. {
  123. label: '岗位名称',
  124. props: 'processName'
  125. }
  126. ],
  127. handle: [{
  128. title: '查看',
  129. method: 'details',
  130. type: 'info'
  131. },
  132. {
  133. title: '编辑',
  134. method: 'editor',
  135. type: 'warning'
  136. },
  137. {
  138. title: '删除',
  139. method: 'del',
  140. type: 'danger'
  141. }
  142. ]
  143. },
  144. validatePass
  145. }
  146. },
  147. created () {
  148. this.queryData()
  149. this.queryDownList()
  150. },
  151. methods: {
  152. queryData (form = {}) {
  153. let page = this.page
  154. let reqdata = form
  155. this.$api
  156. .post('/process/queryProcessList', {
  157. reqdata,
  158. page
  159. })
  160. .then((res) => {
  161. this.totalrecords = res.totalrecords
  162. this.tableList = res.list.map((item, index) => {
  163. item.serialNumber = (this.page - 1) * 10 + index + 1
  164. return item
  165. })
  166. })
  167. },
  168. queryDownList () {
  169. this.$api
  170. .post('/video/queryVideoList', {
  171. reqdata: {},
  172. rows: 50
  173. })
  174. .then((res) => {
  175. this.downList = res.list
  176. })
  177. },
  178. updateActive (item, index, j) {
  179. // this.form.questionList[index].active = j
  180. item.active = j
  181. this.$set(this.form.questionList, index, item)
  182. },
  183. add () {
  184. this.open()
  185. this.state = 0
  186. },
  187. getDetails (row) {
  188. let reqdata = {
  189. id: row.id
  190. }
  191. this.$api
  192. .post('/process/queryProcessDetail', {
  193. reqdata
  194. })
  195. .then((res) => {
  196. this.open()
  197. this.form = JSON.parse(JSON.stringify(res.object))
  198. this.form.questionList = this.form.questionList.map(item => {
  199. item.active = 0
  200. return item
  201. })
  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(b, num)
  272. if (b === list.length) {
  273. this.determine()
  274. }
  275. })
  276. })
  277. : this.determine()
  278. },
  279. determine () {
  280. let a
  281. this.$refs['form'].validate((valid) => {
  282. a = valid
  283. })
  284. if (!a) return
  285. let url = this.state ? '/process/updateProcess' : '/process/saveProcess'
  286. let reqdata = JSON.parse(JSON.stringify(this.form))
  287. if (this.state) {
  288. reqdata.questionList.map(item => {
  289. item.questionId = item.id
  290. return item
  291. })
  292. // this.delId.forEach(item => {
  293. // reqdata.questionList.push({ questionId: item })
  294. // })
  295. }
  296. this.$api
  297. .post(url, {
  298. reqdata
  299. })
  300. .then((res) => {
  301. this.close()
  302. this.queryData()
  303. this.delId = []
  304. })
  305. },
  306. removeDomain (item) {
  307. var index = this.form.questionList.indexOf(item)
  308. if (index !== -1) {
  309. this.delId.push(this.form.questionList[index].id)
  310. this.form.questionList.splice(index, 1)
  311. }
  312. },
  313. open () {
  314. this.dialogFormVisible = true
  315. },
  316. close () {
  317. this.dialogFormVisible = false
  318. setTimeout(() => {
  319. this.form = {
  320. processName: '',
  321. questionList: []
  322. }
  323. this.form.questionList.push({
  324. key: 1,
  325. questionName: ''
  326. })
  327. }, 200)
  328. // this.$forceUpdate()
  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>