Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sup-server
Project
Project
Details
Activity
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
Administrator
sup-server
Commits
da966f59
Commit
da966f59
authored
Nov 17, 2022
by
tianhongyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
15f7f112
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
66 additions
and
13189 deletions
+66
-13189
package-lock.json
dsk-srm-server/package-lock.json
+46
-13178
package.json
dsk-srm-server/package.json
+1
-1
authentication.js
dsk-srm-server/src/api/authentication.js
+9
-3
certificationManagement.vue
dsk-srm-server/src/views/certificationManagement.vue
+7
-4
vue.config.js
dsk-srm-server/vue.config.js
+3
-3
No files found.
dsk-srm-server/package-lock.json
View file @
da966f59
This diff is collapsed.
Click to expand it.
dsk-srm-server/package.json
View file @
da966f59
...
...
@@ -3,7 +3,7 @@
"version"
:
"0.1.0"
,
"private"
:
true
,
"scripts"
:
{
"test"
:
"vue-cli-service serve --development"
,
"test"
:
"vue-cli-service serve --
host 192.168.60.48 --
development"
,
"serve"
:
"vue-cli-service serve --production"
,
"build"
:
"vue-cli-service build --production"
},
...
...
dsk-srm-server/src/api/authentication.js
View file @
da966f59
...
...
@@ -7,6 +7,12 @@ export const getAuthenticationDetailApi = () => network({
// 获取供应商类型
export
const
getSupplierTypeApi
=
()
=>
network
({
url
:
"/category/list/tree"
,
method
:
"post"
})
\ No newline at end of file
url
:
"/category/list/tree"
,
method
:
"post"
,
headers
:
{
isToken
:
false
},
data
:
{
name
:
""
}
});
\ No newline at end of file
dsk-srm-server/src/views/certificationManagement.vue
View file @
da966f59
...
...
@@ -87,7 +87,7 @@
</el-form-item>
<el-form-item
label=
"供应商类型选择:"
prop=
"catId"
>
<el-cascader
v-model=
"form.catId"
:options=
"options"
disabled
placeholder=
""
></el-cascader>
<el-cascader
v-model=
"form.catId"
:options=
"options"
disabled
placeholder=
""
:props=
"props"
></el-cascader>
</el-form-item>
</div>
...
...
@@ -141,9 +141,8 @@ export default {
},
options
:
[],
props
:
{
emitPath
:
false
,
value
:
"catId"
,
label
:
"name"
value
:
"catId"
,
label
:
"name"
}
};
},
...
...
@@ -222,6 +221,10 @@ export default {
flex
:
1
;
margin
:
0px
!
important
;
.el-cascader
{
width
:
100%
;
}
img
{
width
:
100%
;
max-height
:
200px
;
...
...
dsk-srm-server/vue.config.js
View file @
da966f59
...
...
@@ -86,13 +86,13 @@ module.exports = defineConfig({
},
// 本地代理服务器
devServer
:
{
host
:
'
localhost
'
,
host
:
'
0.0.0.0
'
,
port
:
"8866"
,
open
:
true
,
proxy
:
{
[
process
.
env
.
VUE_APP_BASE_API
]:
{
target
:
`http://139.9.157.49:8088`
,
//
target: `http://192.168.60.172:8188`,
//
target: `http://139.9.157.49:8088`,
target
:
`http://192.168.60.172:8188`
,
changeOrigin
:
true
,
pathRewrite
:
{
[
'^'
+
process
.
env
.
VUE_APP_BASE_API
]:
''
...
...
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