Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
周远喜
mes-ui
Commits
cc41c501
Commit
cc41c501
authored
Apr 04, 2020
by
周远喜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ok
parent
369364b5
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
16 additions
and
26 deletions
+16
-26
index.vue
pages/basicData/dataDictionary/index.vue
+1
-1
index.vue
pages/basicData/privilegeManagent/index.vue
+1
-1
index.vue
pages/basicData/user/index.vue
+2
-4
index.vue
pages/processDesign/ChangeSingle/unqualifiedorder/index.vue
+1
-1
detailfiles.vue
pages/processDesign/Process/detailfiles.vue
+2
-4
index.vue
pages/processDesign/Process/index.vue
+2
-4
processNew.vue
pages/processDesign/Process/processNew.vue
+1
-3
quotationBox2.vue
pages/processDesign/Process/quotationBox2.vue
+2
-3
quotationBox3.vue
pages/processDesign/Process/quotationBox3.vue
+2
-3
routingchangeorder.vue
pages/processDesign/Process/routingchangeorder.vue
+2
-2
No files found.
pages/basicData/dataDictionary/index.vue
View file @
cc41c501
...
...
@@ -252,7 +252,7 @@ export default {
{
//this.formValidate1.id=
}
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
Dictionary
:
this
.
formValidate1
})
).
then
(
response
=>
{
service
.
post
(
`
${
url
}
`
,
{
Dictionary
:
this
.
formValidate1
}
).
then
(
response
=>
{
if
(
response
.
success
){
this
.
$Message
.
success
(
'保存成功'
)
this
.
loaddata
(
this
.
model1
)
...
...
pages/basicData/privilegeManagent/index.vue
View file @
cc41c501
...
...
@@ -358,7 +358,7 @@ export default {
this
.
formValidate1
=
this
.
$refs
.
addpri
.
formValidate
//console.log(this.formValidate1)
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
Privilege
:
this
.
formValidate1
})
)
.
post
(
`
${
url
}
`
,
{
Privilege
:
this
.
formValidate1
}
)
.
then
((
response
)
=>
{
if
(
response
.
success
)
{
...
...
pages/basicData/user/index.vue
View file @
cc41c501
...
...
@@ -574,14 +574,12 @@ export default {
var
url
=
`
${
systemUrl
}
/MyUserRole/CreateOrUpdate`
;
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
`
${
url
}
`
,{
myUserRole
:
{
userId
:
this
.
curId
,
RoleIds
:
this
.
allChecked
.
join
(
","
)
}
})
)
})
.
then
(
response
=>
{
if
(
response
.
success
)
{
this
.
$Message
.
success
(
"保存成功"
);
...
...
pages/processDesign/ChangeSingle/unqualifiedorder/index.vue
View file @
cc41c501
...
...
@@ -485,7 +485,7 @@ export default {
saveOk
()
{
var
url
=
`
${
designUrl
}
/unqualifiedorder/createorupdate`
;
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
unqualifiedOrder
:
this
.
formdata
})
)
.
post
(
`
${
url
}
`
,
{
unqualifiedOrder
:
this
.
formdata
}
)
.
then
(
res
=>
{
console
.
log
(
res
);
if
(
res
.
success
)
{
...
...
pages/processDesign/Process/detailfiles.vue
View file @
cc41c501
...
...
@@ -102,11 +102,9 @@ export default {
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
`
${
url
}
`
,{
routingFile
:
dataValidate
})
)
})
.
then
((
response
)
=>
{
if
(
response
.
success
)
{
}
...
...
pages/processDesign/Process/index.vue
View file @
cc41c501
...
...
@@ -681,12 +681,10 @@ export default {
// JSON.stringify({Process:this.formValidate})
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
`
${
url
}
`
,{
routingHeaderEntity
:
a
.
formValidate
,
FileList
:
filelist
})
)
})
.
then
((
response
)
=>
{
if
(
response
.
success
)
{
if
(
!
next
)
{
...
...
pages/processDesign/Process/processNew.vue
View file @
cc41c501
...
...
@@ -419,11 +419,9 @@ export default {
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
`
${
url
}
`
,{
routingDetail
:
this
.
formprocessValidate
})
)
.
then
((
response
)
=>
{
if
(
response
.
success
)
{
this
.
$Message
.
success
(
'保存成功'
)
...
...
pages/processDesign/Process/quotationBox2.vue
View file @
cc41c501
...
...
@@ -335,11 +335,10 @@ this.isadd03=false;
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
`
${
url
}
`
,{
orderBill
:
this
.
formValidate
,
orderBillLlist
:
orderBillLlist
}
)
}
)
.
then
((
response
)
=>
{
if
(
response
.
success
)
{
...
...
pages/processDesign/Process/quotationBox3.vue
View file @
cc41c501
...
...
@@ -350,11 +350,10 @@ this.formValidate.product_handover_date =new Date();
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
`
${
url
}
`
,{
orderBill
:
this
.
formValidate
,
orderBillLlist
:
orderBillLlist
}
)
}
)
.
then
((
response
)
=>
{
if
(
response
.
success
)
{
...
...
pages/processDesign/Process/routingchangeorder.vue
View file @
cc41c501
...
...
@@ -372,7 +372,7 @@ export default {
// "handling_opinions_id": 0,
};
console
.
log
(
paramsdata
);
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
routingHeaderChangeorder
:
paramsdata
})
).
then
(
res
=>
{
service
.
post
(
`
${
url
}
`
,
{
routingHeaderChangeorder
:
paramsdata
}
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$Message
.
success
(
'新增成功'
)
this
.
modelChange
=
false
;
...
...
@@ -417,7 +417,7 @@ export default {
// "handling_opinions_id": 0,
};
console
.
log
(
paramsdata
);
service
.
post
(
`
${
url
}
`
,
JSON
.
stringify
({
routingHeaderChangeorder
:
paramsdata
})
).
then
(
res
=>
{
service
.
post
(
`
${
url
}
`
,
{
routingHeaderChangeorder
:
paramsdata
}
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$Message
.
success
(
'编辑成功'
)
this
.
modelChange
=
false
;
...
...
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