Commit b7b6406b authored by 李晓兵's avatar 李晓兵

Merge branch 'develop' of https://hel.hand-china.com/xugong/hls-xcmg-vue-app into develop

parents a78d59fe b190fb49
Pipeline #4086 canceled with stages
...@@ -62,6 +62,7 @@ export default { ...@@ -62,6 +62,7 @@ export default {
next(vm => { next(vm => {
if (from.name === 'HelpList') { if (from.name === 'HelpList') {
vm.question_desc = '' vm.question_desc = ''
vm.upload_list = []
} }
}) })
}, },
...@@ -104,14 +105,14 @@ export default { ...@@ -104,14 +105,14 @@ export default {
imgUploadOpenCamera (check_id) { imgUploadOpenCamera (check_id) {
let vm = this let vm = this
let obj = { let obj = {
'pkvalue': check_id, pkvalue: check_id,
'source_type': 'HLS_APP_QUESTION', source_type: 'HLS_APP_QUESTION',
'picture': '', picture: '',
'check_id': check_id, check_id: check_id,
'filePath': '', filePath: '',
'attachment_id': '', attachment_id: '',
'user_id': 1, user_id: 1,
'fileName': '', fileName: '',
} }
let cameraoptions = { let cameraoptions = {
quality: 100, quality: 100,
...@@ -119,6 +120,7 @@ export default { ...@@ -119,6 +120,7 @@ export default {
let success = function (imgdata) { let success = function (imgdata) {
obj.picture = imgdata obj.picture = imgdata
obj.filePath = imgdata obj.filePath = imgdata
// vm.faceListUpload.push(obj)
let list = [] let list = []
list.push(obj) list.push(obj)
// vm.upload_list.push(obj) // vm.upload_list.push(obj)
...@@ -205,12 +207,13 @@ export default { ...@@ -205,12 +207,13 @@ export default {
clearInterval(recordUploadInterval) clearInterval(recordUploadInterval)
/* hlsPopup.hideLoading() /* hlsPopup.hideLoading()
hlsPopup.showLongCenter('图片上传成功') */ hlsPopup.showLongCenter('图片上传成功') */
hlsPopup.showLongCenter('上传成功')
} }
}, 500) }, 500)
for (var i = 0; i < list.length; i++) { for (var i = 0; i < list.length; i++) {
let uploadSuccess = function (res) { let uploadSuccess = function (res) {
if (res.result === 'S') { if (res.result === 'S') {
hlsPopup.showLongCenter('上传成功') // hlsPopup.showLongCenter('上传成功')
alreadyUploadNum++ alreadyUploadNum++
for (var j = 0; j < list.length; j++) { for (var j = 0; j < list.length; j++) {
if (list[j].filePath === res.response.filePath) { if (list[j].filePath === res.response.filePath) {
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<span class="number">{{ dateConverse(item.apply_date) }}</span> <span class="number">{{ dateConverse(item.apply_date) }}</span>
</li> </li>
<li> <li>
<p v-if="item.interview_status ==='待面签'" class="to-unSign" @click="toSign"> <p v-if="item.interview_status ==='APPROVING'" class="to-unSign" @click="toSign">
<img src="@/assets/videoSign/unSign.png" >&nbsp;视频面签 <img src="@/assets/videoSign/unSign.png" >&nbsp;视频面签
</p> </p>
</li> </li>
...@@ -199,7 +199,7 @@ export default { ...@@ -199,7 +199,7 @@ export default {
pagesize: 10, pagesize: 10,
searchInput: vm.searchInput, searchInput: vm.searchInput,
pagenum: vm.submitPagenum, pagenum: vm.submitPagenum,
interview_status: '待面签', interview_status: 'APPROVING',
user_phone: window.localStorage.getItem('user_phone'), user_phone: window.localStorage.getItem('user_phone'),
} }
hlsPopup.showLoading('请稍候') hlsPopup.showLoading('请稍候')
...@@ -222,7 +222,7 @@ export default { ...@@ -222,7 +222,7 @@ export default {
pagesize: 10, pagesize: 10,
searchInput: vm.searchInput, searchInput: vm.searchInput,
pagenum: vm.approvedPagenum, pagenum: vm.approvedPagenum,
interview_status: '已面签', interview_status: 'RESERVED',
user_phone: window.localStorage.getItem('user_phone'), user_phone: window.localStorage.getItem('user_phone'),
} }
hlsPopup.showLoading('请稍候') hlsPopup.showLoading('请稍候')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment