123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="container normal-panel normal-margin">
- <!-- <el-button type="success" size="small">导 入</el-button> -->
- <importFile accept=".xlsx" :folderid="folderid" :bindData="{ownertable:'sat_orderclueuploadbill',ownerid:'',usetype:'default'}" @onSuccess="uploadOrderclueuploadbillByExcel">
- <a class="error-link" v-if="errorurl" :href="errorurl" slot="errorFile">下载错误数据</a>
- </importFile>
- </div>
- </template>
- <script>
- import importFile from '@/components/import/importFile.vue'
- export default {
- components:{
- importFile
- },
- data () {
- return {
- folderid:JSON.parse(sessionStorage.getItem('folderid')).appfolderid,
- errorurl:null
- }
- },
- methods:{
- async uploadOrderclueuploadbillByExcel (data,type,moduleType) {
- let res
- if(moduleType == 'module1') {
- res = await this.$api.requested({
- "classname": "webmanage.saletool.orderclue.orderclue",
- "method": "uploadOrderclueuploadbillByExcel",
- "content": {
- "cluetype":type,
- "attachmentid":data.data.attachmentids[0]
- }
- })
- } else {
- res = await this.$api.requested({
- "classname": "webmanage.saletool.orderclue.orderclue",
- "method": "uploadOrderclueuploadbillByExcelAndPlatform",
- "content": {
- "cluetype":type,
- "attachmentid":data.data.attachmentids[0]
- }
- })
- }
-
- if (res.msg !== '成功') {
- this.errorurl = res.msg
- window.open(res.msg,'_self')
- } else {
- this.errorurl = null
- }
- this.tool.showMessage(res,()=>{
- this.$emit('onSuccess')
- })
- },
- }
- }
- </script>
- <style>
- </style>
- <style scoped>
- .error-link{
- display: block;
- line-height: 30px;
- }
- </style>
|