diff --git a/src/api/mine.js b/src/api/mine.js index a62b134e..62698c3d 100644 --- a/src/api/mine.js +++ b/src/api/mine.js @@ -316,13 +316,4 @@ export function unifiedOCRWithCompress(data){ contentType:'application/json', data }) -} - -// 服务商是否培训 -export function jumpPage(data){ - return request({ - url:'/supplierAppV2/dispatchApp/user/jumpPage', - method:'POST', - data - }) -} +} \ No newline at end of file diff --git a/src/views/index/uploadInvoice.vue b/src/views/index/uploadInvoice.vue index 76aa8000..b7b30102 100644 --- a/src/views/index/uploadInvoice.vue +++ b/src/views/index/uploadInvoice.vue @@ -76,7 +76,7 @@ import { Decimal } from 'decimal.js'; import { Dialog } from "vant"; import { myMixins } from "@/utils/myMixins" - import { uploadInvoice, getBillingInfo, deleteInvoice, createBatch, jumpPage} from "@/api/mine" + import { uploadInvoice, getBillingInfo, deleteInvoice, createBatch } from "@/api/mine" export default { name: "uploadInvoice", mixins:[ myMixins ], @@ -132,10 +132,6 @@ } }, methods: { - async getJumpHandler() { - let res = await jumpPage(); - return res - }, async initData() { this.list = JSON.parse(localStorage.getItem('list')); this.batchIds = []; @@ -234,12 +230,7 @@ }).catch(() => { }); }, - async beforeRead (file) { - let res = await this.getJumpHandler(); - if(res?.data?.jump) { - this.$message.warning("您有没有完成的培训,请在中道调度APP上完成培训,再进行发票上传") - return false - } + beforeRead (file) { const FileExt = file.name.replace(/.+\./, ""); if (['jpg', 'png', 'jpeg', 'pdf', 'ofd'].indexOf(FileExt.toLowerCase()) === -1) { this.$toast('请上传后缀名为jpg、jpeg、png、pdf、ofd的文件!')