修改审核bug
This commit is contained in:
parent
8840a059e5
commit
41b85eeca6
|
|
@ -427,7 +427,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { getParams, hideSensitiveInfo, indexContinuous, lookFaceFile } from '@/utils/bonus'
|
||||
import { getFileData,getParams,hideSensitiveInfo, indexContinuous, lookFaceFile } from '@/utils/bonus'
|
||||
import { dictTableOption, downloadFile, getTemplateLink, selectFile } from '@/api/tool/select'
|
||||
import { listAdmissionRequest, submitApproval } from '@/api/pro/admissionRequest'
|
||||
import store from '../../../store'
|
||||
|
|
@ -554,6 +554,7 @@ export default {
|
|||
lookFaceFile,
|
||||
indexContinuous,
|
||||
hideSensitiveInfo,
|
||||
getFileData,
|
||||
getParams,
|
||||
store() {
|
||||
return store
|
||||
|
|
@ -1000,6 +1001,8 @@ export default {
|
|||
},
|
||||
submitFileForm() {
|
||||
this.$refs['form'].validate(valid => {
|
||||
console.log("--->")
|
||||
console.log(valid)
|
||||
if (valid) {
|
||||
if (!this.formFile.fileList[0].name.toLowerCase().endsWith('.zip')) {
|
||||
this.$message.error('请上传zip文件')
|
||||
|
|
|
|||
|
|
@ -302,7 +302,7 @@ export default {
|
|||
}
|
||||
getList(params).then(res => {
|
||||
this.personList = res.rows
|
||||
this.total = res.total
|
||||
this.personTotal = res.total
|
||||
this.loading = false
|
||||
})
|
||||
},
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ export default {
|
|||
created() {
|
||||
const userType = this.$store.state.user.userType
|
||||
if (userType !== '00') {
|
||||
this.hideOrNot = true
|
||||
this.hideOrNot = false
|
||||
this.getProOption()
|
||||
}
|
||||
this.getList()
|
||||
|
|
@ -190,7 +190,7 @@ export default {
|
|||
/** 查询承包商入场资质列表 */
|
||||
getList() {
|
||||
this.loading = false
|
||||
// this.queryParams.proId = this.$store.state.user.thisIds.proId;
|
||||
this.queryParams.proId = this.$store.state.user.thisIds.proId;
|
||||
this.queryParams.supUuid = this.$store.state.user.thisIds.supUuid
|
||||
this.queryParams.userType = this.$store.state.user.userType
|
||||
getConsEntranceList(this.queryParams).then(response => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue