Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yanshouyi-Minipro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
yanshouyi-Minipro
Commits
69bfb31c
Commit
69bfb31c
authored
Dec 30, 2024
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导入
parent
8efdbe37
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
5 deletions
+48
-5
config.js
common/config.js
+7
-0
request.js
common/request.js
+4
-3
home.vue
pages/home/home.vue
+36
-1
importFile.vue
pages/home/importFile.vue
+1
-1
No files found.
common/config.js
0 → 100644
View file @
69bfb31c
const
BASEURL
=
'
http://192.168.2.14:8080
'
;
const
REQUESTIMEOUT
=
30000
;
export
{
BASEURL
,
REQUESTIMEOUT
}
\ No newline at end of file
common/request.js
View file @
69bfb31c
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
)
{
...
...
pages/home/home.vue
View file @
69bfb31c
...
@@ -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
({
})
})
...
...
pages/home/importFile.vue
View file @
69bfb31c
...
@@ -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
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment