Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_pda_Web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
高宇
template_pda_Web
Commits
4d021618
Commit
4d021618
authored
Jul 15, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了富文本编辑器的上传
parent
e74405dd
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
911 additions
and
8 deletions
+911
-8
incomeWmsLabel.js
src/api/incomeWmsLabel.js
+5
-5
incomeBox.js
src/api/test/incomeBox.js
+104
-0
incomeLabel.js
src/api/test/incomeLabel.js
+76
-0
enterbound.vue
src/views/mytest/enterbound.vue
+723
-0
vue.config.js
vue.config.js
+3
-3
No files found.
src/api/incomeWmsLabel.js
View file @
4d021618
...
...
@@ -27,7 +27,7 @@ export function getIncomeWmsLabel(businessId) {
method
:
'get'
})
}
//
2
. 查询标签管理详细信息
//
3
. 查询标签管理详细信息
export
function
findByLocation
(
location
)
{
return
request
({
url
:
'/incomewmslabel/findByLocation/'
+
location
,
...
...
@@ -35,7 +35,7 @@ export function findByLocation(location) {
})
}
//
3
. 新增标签管理
//
4
. 新增标签管理
export
function
addIncomeWmsLabel
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
...
...
@@ -45,7 +45,7 @@ export function addIncomeWmsLabel(data) {
})
}
//
4
. 修改标签管理
//
5
. 修改标签管理
export
function
updateIncomeWmsLabel
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
...
...
@@ -56,7 +56,7 @@ export function updateIncomeWmsLabel(data) {
})
}
//
5
. 逻辑删除标签管理
//
6
. 逻辑删除标签管理
export
function
delIncomeWmsLabel
(
businessId
)
{
return
request
({
url
:
'/incomewmslabel/deleteLogical/'
+
businessId
,
...
...
@@ -64,7 +64,7 @@ export function delIncomeWmsLabel(businessId) {
})
}
//
6
. 导出标签管理
//
7
. 导出标签管理
export
function
exportIncomeWmsLabel
(
query
)
{
return
request
({
url
:
'/incomewmslabel/export'
,
...
...
src/api/test/incomeBox.js
0 → 100644
View file @
4d021618
import
request
from
'@/utils/request'
import
Qs
from
'qs'
/**
* 1. 列表查询
* 2. 查询详细信息
* 3. 新增
* 4. 修改
* 5. 逻辑删除
* 6. 导出
*
*/
// 1. 查询库存管理列表
export
function
listIncomeBox
(
query
)
{
return
request
({
url
:
'/incomebox/list'
,
method
:
'get'
,
params
:
query
})
}
// 2. 查询库存管理详细信息
export
function
getIncomeBox
(
businessId
)
{
return
request
({
url
:
'/incomebox/detail/'
+
businessId
,
method
:
'get'
})
}
// 3. 新增库存管理
export
function
addIncomeBox
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomebox/add'
,
method
:
'post'
,
data
:
data
})
}
// 4. 修改库存管理
export
function
updateIncomeBox
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomebox/update/'
+
businessId
,
method
:
'put'
,
data
})
}
// 5. 逻辑删除库存管理
export
function
delIncomeBox
(
businessId
)
{
return
request
({
url
:
'/incomebox/deleteLogical/'
+
businessId
,
method
:
'delete'
})
}
// 6. 导出库存管理
export
function
exportIncomeBox
(
query
)
{
return
request
({
url
:
'/incomebox/export'
,
method
:
'get'
,
params
:
query
,
responseType
:
'blob'
})
}
// 7.获取单号
export
function
getJcCode
()
{
return
request
({
url
:
'/incomebox/getJcCode'
,
method
:
'get'
})
}
// 8. 查询满足条件的条数
export
function
queryPass
(
lot
)
{
return
request
({
url
:
'/incomebox/queryPass/'
+
lot
,
method
:
'get'
})
}
// 9. 批量新增库存管理
export
function
batchAddIncomeBox
(
data
)
{
return
request
({
url
:
'/incomebox/batchAdd'
,
method
:
'post'
,
data
:
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
// 接口修改传参类型
}
})
}
export
function
checkIsZero
(
data
)
{
return
request
({
url
:
'incomebox/checkIsZero'
,
method
:
'post'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
// 接口修改传参类型
}
})
}
src/api/test/incomeLabel.js
0 → 100644
View file @
4d021618
import
request
from
'@/utils/request'
import
Qs
from
'qs'
/**
* 1. 列表查询
* 2. 查询详细信息
* 3. 新增
* 4. 修改
* 5. 逻辑删除
* 6. 导出
*
*/
// 1. 查询标签管理列表
export
function
listIncomeLabel
(
query
)
{
return
request
({
url
:
'/incomelabel/list'
,
method
:
'get'
,
params
:
query
})
}
// 2. 查询标签管理详细信息
export
function
getIncomeLabel
(
businessId
)
{
return
request
({
url
:
'/incomelabel/detail/'
+
businessId
,
method
:
'get'
})
}
// 3. 新增标签管理
export
function
addIncomeLabel
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomelabel/add'
,
method
:
'post'
,
data
:
data
})
}
// 4. 修改标签管理
export
function
updateIncomeLabel
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomelabel/update/'
+
businessId
,
method
:
'put'
,
data
})
}
// 5. 逻辑删除标签管理
export
function
delIncomeLabel
(
businessId
)
{
return
request
({
url
:
'/incomelabel/deleteLogical/'
+
businessId
,
method
:
'delete'
})
}
// 6. 导出标签管理
export
function
exportIncomeLabel
(
query
)
{
return
request
({
url
:
'/incomelabel/export'
,
method
:
'get'
,
params
:
query
,
responseType
:
'blob'
})
}
// 7. 查询标签管理详细信息
export
function
findByLocation
(
location
)
{
return
request
({
url
:
'/incomelabel/findByLocation/'
+
location
,
method
:
'get'
})
}
src/views/mytest/enterbound.vue
0 → 100644
View file @
4d021618
This diff is collapsed.
Click to expand it.
vue.config.js
View file @
4d021618
...
...
@@ -19,7 +19,7 @@ const name = defaultSettings.title || 'vue Admin Template' // page title
// For example, Mac: sudo npm run
// You can change the port by the following methods:
// port = 9528 npm run dev OR npm run dev --port = 9528
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
808
0
// dev port
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
808
1
// dev port
const
CompressionWebpackPlugin
=
require
(
'compression-webpack-plugin'
)
const
productionGzipExtensions
=
[
'js'
,
'css'
]
...
...
@@ -89,10 +89,10 @@ module.exports = {
// target: `http://192.168.1.31:8082/`,
// target: `http://192.168.1.12:8082/`, // 孙浩
// target: `http://192.168.1.41:8082/`,
target
:
`http://49.232.167.247:20014/`
,
// 线上
//
target: `http://49.232.167.247:20014/`, // 线上
// target: `http://192.168.1.30:8082/`,
// target: `http://localhost:8088/`,
//
target: `http://localhost:8082/`,
target
:
`http://localhost:8082/`
,
// target: `http://49.232.167.247:20014/`,
// changeOrigin: true,
pathRewrite
:
{
...
...
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