Commit 69bfb31c authored by xinzhedeai's avatar xinzhedeai

导入

parent 8efdbe37
const BASEURL = 'http://192.168.2.14:8080';
const REQUESTIMEOUT = 30000;
export {
BASEURL,
REQUESTIMEOUT
}
\ No newline at end of file
import { showCustomModal } from "./util"; import { showCustomModal } from "./util";
import { BASEURL, REQUESTIMEOUT } from "./config";
const BASE_URL = 'http://192.168.2.14:8080'; console.log(BASEURL, 'BASEURLBASEURLBASEURL')
const REQUEST_TIMEOUT = 30000; const BASE_URL = BASEURL;
const REQUEST_TIMEOUT = REQUESTIMEOUT;
export default function request(options) { export default function request(options) {
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<p>设备型号:MYSM-OH-01</p> <p>设备型号:MYSM-OH-01</p>
</div> </div>
</view> </view>
<p class="list-item"> <p class="list-item" @click="uploadExcel">
<image src="/static/image/paokong/impexp.png" alt="" /> <image src="/static/image/paokong/impexp.png" alt="" />
<span>炮孔设计数据导入</span> <span>炮孔设计数据导入</span>
<!-- <button size="mini" class="funcBtn" type="primary" @click="navTo('import')">导入导出</button> --> <!-- <button size="mini" class="funcBtn" type="primary" @click="navTo('import')">导入导出</button> -->
...@@ -85,6 +85,8 @@ ...@@ -85,6 +85,8 @@
import { import {
getExportData, getExportData,
} from '../../api/home.js' } from '../../api/home.js'
import { BASEURL } from "../../common/config.js";
export default { export default {
data() { data() {
...@@ -110,6 +112,39 @@ ...@@ -110,6 +112,39 @@
}, },
methods: { methods: {
uploadExcel(){
wx.chooseMessageFile({
count: 1,
type: 'file',
extension: ['.xlsx', '.xls'],
success: function(res) {
console.log("文件上传", res);
uni.uploadFile({
url: BASEURL + '/product/importProduct', //文件上传的接口地址
filePath: res.tempFiles[0].path,
name: 'file', //接口需要的参数名
header: {
},
success(uploadRes) {
const res = JSON.parse(uploadRes.data)
showCustomToast({
title: res.msg
})
console.log(uploadRes, 'uploadRes')
},
fail(uploadErr) {
console.log('上传失败', uploadErr);
// 处理上传失败后的逻辑
}
});
},
fail(err) {
console.log('选择文件失败', err);
// 处理选择文件失败后的逻辑
}
});
},
async exportExcel() { // 导出excel async exportExcel() { // 导出excel
let res = await getExportData({ let res = await getExportData({
}) })
......
...@@ -123,7 +123,7 @@ ...@@ -123,7 +123,7 @@
success: function(res) { success: function(res) {
console.log("文件上传", res); console.log("文件上传", res);
uni.uploadFile({ uni.uploadFile({
url: config.baseUrl + '/core/xxxxx', //文件上传的接口地址 url: config.baseUrl + '/product/importProduct', //文件上传的接口地址
filePath: res.tempFiles[0].path, filePath: res.tempFiles[0].path,
name: 'excel', //接口需要的参数名 name: 'excel', //接口需要的参数名
header: { header: {
......
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