Browse Source

excle改为本地

dev
0.0 2 years ago
parent
commit
fbe90ac329
  1. BIN
      public/static/excle/供应商名称及编码_1668003417087.xlsx
  2. BIN
      public/static/excle/品名分类导入模板_166799700623.xlsx
  3. BIN
      public/static/excle/废旧物资存储库房编码模板_1668004947302.xlsx
  4. BIN
      public/static/excle/总库导入模板_1669801840316.xlsx
  5. BIN
      public/static/excle/物资储存位置导入模板_1667998262940.xlsx
  6. BIN
      public/static/excle/物资清单表12323123_1672369326884.xlsx
  7. 16
      src/mixins/JeecgListMixin.js
  8. 2
      src/views/description/ProcessDescriptionList.vue
  9. 2
      src/views/materialstorage/ProcessMaterialStorageList.vue
  10. 2
      src/views/merchandisenews/ProcessMerchandiseNewsList.vue
  11. 2
      src/views/supplier/ProcessSupplierList.vue
  12. 2
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
  13. 2
      src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue

BIN
public/static/excle/供应商名称及编码_1668003417087.xlsx

Binary file not shown.

BIN
public/static/excle/品名分类导入模板_166799700623.xlsx

Binary file not shown.

BIN
public/static/excle/废旧物资存储库房编码模板_1668004947302.xlsx

Binary file not shown.

BIN
public/static/excle/总库导入模板_1669801840316.xlsx

Binary file not shown.

BIN
public/static/excle/物资储存位置导入模板_1667998262940.xlsx

Binary file not shown.

BIN
public/static/excle/物资清单表12323123_1672369326884.xlsx

Binary file not shown.

16
src/mixins/JeecgListMixin.js

@ -389,9 +389,23 @@ export const JeecgListMixin = {
}
let url = getFileAccessHttpUrl(text)
console.log(this.$Base64.encode(url))
window.open(url);
},
downloadText(url,name){
if(!url){
this.$message.warning("未知的文件")
return;
}
var a = document.createElement('a') // 创建一个<a></a>标签
a.href = url //重点(如测试发现下载文件不存在/找不到,检查路径)
a.download = name // 设置下载文件文件名
a.style.display = 'none' // 隐藏a标签
document.body.appendChild(a) // 将a标签追加到文档对象中
a.click() // 模拟点击了a标签,会触发a标签的href的读取,浏览器就会自动下载了
a.remove() // 一次性的,用完就删除a标签
},
//文件预览
onlineFile(text){
if(!text){

2
src/views/description/ProcessDescriptionList.vue

@ -44,7 +44,7 @@
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'description:add'">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('品名分类')" v-has="'description:export'">导出</a-button>
<a-button type="primary" icon="download" @click="downloadFile('http://182.92.73.21:9090/file/temp/品名分类导入模板_1667997006232_1668004136429.xlsx')" v-h="'merchandiseNews:import'">品名分类导入模板</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/品名分类导入模板_166799700623.xlsx','品名分类导入模板.xlsx')" v-h="'merchandiseNews:import'">品名分类导入模板</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'description:export'" v-h="'merchandiseNews:import'">导入</a-button>
</a-upload>

2
src/views/materialstorage/ProcessMaterialStorageList.vue

@ -50,7 +50,7 @@
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'materialStorageList:add'">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('物资储存地址表')" v-has="'materialStorageList:export'">导出</a-button>
<a-button type="primary" icon="download" @click="downloadFile('http://182.92.73.21:9090/file/temp/物资储存位置导入模板_1667998262940.xlsx')" v-has="'materialStorageList:import'">物资储存地址导入模板</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/物资储存位置导入模板_1667998262940.xlsx','物资储存位置导入模板.xlsx')"v-has="'materialStorageList:import'">物资储存地址导入模板</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'materialStorageList:import'">导入</a-button>
</a-upload>

2
src/views/merchandisenews/ProcessMerchandiseNewsList.vue

@ -110,7 +110,7 @@
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'merchandiseNews:add'">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('物资清单表')">导出</a-button>
<a-button type="primary" icon="download" @click="downloadFile('http://182.92.73.21:9090/file/temp/物资清单表12323123_1672369326884.xls')" v-has="'merchandiseNews:import'">物资清单表导入模板</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/物资清单表12323123_1672369326884.xlsx','物资清单表模板.xlsx')" v-has="'merchandiseNews:import'">物资清单表导入模板</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'merchandiseNews:import'">导入</a-button>
</a-upload>

2
src/views/supplier/ProcessSupplierList.vue

@ -55,7 +55,7 @@
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'regulate:add'">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('供应商信息')" v-has="'regulate:export'">导出</a-button>
<a-button type="primary" icon="download" @click="downloadFile('http://182.92.73.21:9090/file/temp/供应商名称及编码_1668003417087.xlsx')">供应商导入模板</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/供应商名称及编码_1668003417087.xlsx','供应商名称及编码导入模板.xlsx')">供应商导入模板</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'regulate:import'">导入</a-button>
</a-upload>

2
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -38,7 +38,7 @@
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'suppliesstronger:import'">导入</a-button>
</a-upload>
<a-button type="primary" icon="download" @click="downloadFile('http://182.92.73.21:9090/file/temp/总库导入模板_1669801840316.xlsx')" v-has="'suppliesstronger:import'">总库导入模板</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/总库导入模板_1669801840316.xlsx','总库导入导入模板.xlsx')" v-has="'suppliesstronger:import'">总库导入模板</a-button>
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
<a-dropdown v-if="selectedRowKeys.length > 0" v-has="'suppliesstronger:delete'">

2
src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue

@ -61,7 +61,7 @@
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'unitWaste:add'">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('单位、废旧库房编码')" v-has="'unitWaste:export'">导出</a-button>
<a-button type="primary" icon="download" @click="downloadFile('http://182.92.73.21:9090/file/temp/废旧物资存储库房编码模板_1668004947302.xlsx')" v-has="'unitWaste:import'">废旧库房导入模板</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/废旧物资存储库房编码模板_1668004947302.xlsx','废旧物资存储库房编码导入模板.xlsx')" v-has="'unitWaste:import'">废旧库房导入模板</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'unitWaste:import'">导入</a-button>
</a-upload>

Loading…
Cancel
Save