Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
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
fukai
vue-gjjs
Commits
37cbed1b
Commit
37cbed1b
authored
Apr 18, 2023
by
liaoxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
静态交易修改
parent
857c909a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
32 deletions
+33
-32
btb.js
src/service/test/btb.js
+2
-2
cty.js
src/service/test/cty.js
+10
-10
cur.js
src/service/test/cur.js
+1
-1
ety.js
src/service/test/ety.js
+1
-1
SideMenu.vue
src/views/Layout/SideMenu.vue
+0
-1
Infsea.vue
src/views/Statics/btb/views/Infbtb/Infsea.vue
+1
-1
index.vue
src/views/Statics/cty/views/Dbicty/index.vue
+18
-16
No files found.
src/service/test/btb.js
View file @
37cbed1b
...
...
@@ -4,8 +4,8 @@ export function queryByPage(data) {
return
Api
.
post
(
"/service/btb/queryByPage"
,
data
)
}
export
function
queryByPageAgent
(
data
)
{
return
Api
.
post
(
"/service/btb/queryByPageAgent"
,
data
)
export
function
queryByPage
_
Agent
(
data
)
{
return
Api
.
post
(
"/service/btb/queryByPage
_
Agent"
,
data
)
}
export
function
queryByPageByInr
(
data
)
{
...
...
src/service/test/cty.js
View file @
37cbed1b
...
...
@@ -21,17 +21,17 @@ export function edit(data) {
}
export
function
deleteById
(
inr
)
{
return
Api
.
post
(
`/
manager
/cty/deleteById?inr=
${
inr
}
`
)
return
Api
.
post
(
`/
service
/cty/deleteById?inr=
${
inr
}
`
)
}
export
function
addBopctyData
(
inr
,
data
)
{
return
Api
.
post
(
`/service/cty/addBopctyData?inr=
${
inr
}
`
,
data
)
}
//
export function addBopctyData(inr, data) {
//
return Api.post(`/service/cty/addBopctyData?inr=${inr}`, data)
//
}
export
function
editBopctyData
(
inr
,
data
)
{
return
Api
.
post
(
`/service/cty/editBopctyData?inr=
${
inr
}
`
,
data
)
}
//
export function editBopctyData(inr, data) {
//
return Api.post(`/service/cty/editBopctyData?inr=${inr}`, data)
//
}
export
function
deleteBopctyById
(
data
)
{
return
Api
.
post
(
`/service/cty/deleteBopctyById`
,
data
)
}
//
export function deleteBopctyById(data) {
//
return Api.post(`/service/cty/deleteBopctyById`, data)
//
}
src/service/test/cur.js
View file @
37cbed1b
...
...
@@ -21,7 +21,7 @@ export function edit(data) {
}
export
function
deleteById
(
data
)
{
return
Api
.
post
(
`/
manager
/cur/deleteById?inr=
${
data
}
`
)
return
Api
.
post
(
`/
service
/cur/deleteById?inr=
${
data
}
`
)
}
// export function addAdrData(inr, data) {
...
...
src/service/test/ety.js
View file @
37cbed1b
...
...
@@ -17,6 +17,6 @@ export function edit(data) {
}
export
function
deleteById
(
inr
)
{
return
Api
.
post
(
"/service/ety/deleteById"
,
{
inr
}
)
return
Api
.
post
(
`/service/ety/deleteById?inr=
${
inr
}
`
)
}
src/views/Layout/SideMenu.vue
View file @
37cbed1b
...
...
@@ -202,7 +202,6 @@ export default {
{
inifrm
:
"infpty"
,
ininam
:
"客户信息查询"
,
pntmiu
:
"10"
},
{
inifrm
:
"inftrl"
,
ininam
:
"交易权限查询"
,
pntmiu
:
"10"
},
{
inifrm
:
"infusr"
,
ininam
:
"柜员信息查询"
,
pntmiu
:
"10"
},
{
inifrm
:
"infdia"
,
ininam
:
"交易备忘录查询"
,
pntmiu
:
"10"
},
// { inifrm: "gitset", ininam: "进口保函赔付", pntmiu: "13" },
// { inifrm: "gitcrq", ininam: "进口保函索赔登记", pntmiu: "13" },
{
inifrm
:
"14"
,
ininam
:
"服务管理"
,
pntmiu
:
""
},
...
...
src/views/Statics/btb/views/Infbtb/Infsea.vue
View file @
37cbed1b
...
...
@@ -130,7 +130,7 @@ export default {
},
onInfbtbSearch
()
{
this
.
model
.
lnktyp
=
"B"
;
queryByPage
(
this
.
model
).
then
(
res
=>
{
queryByPage
_Agent
(
this
.
model
).
then
(
res
=>
{
/**
* pageNumber: 0
* pageSize: 0
...
...
src/views/Statics/cty/views/Dbicty/index.vue
View file @
37cbed1b
...
...
@@ -145,15 +145,16 @@ export default {
})
.
catch
((
err
)
=>
{
this
.
$message
.
error
(
"国家地区信息保存失败!"
);
});}
else
{
editBopctyData
(
this
.
model
.
inr
,
this
.
model
)
.
then
((
res
)
=>
{
this
.
$message
.
success
(
"收支申报国家代码表保存成功!"
);
this
.
goBack
(
true
)
})
.
catch
((
err
)
=>
{
this
.
$message
.
error
(
"收支申报国家代码表保存失败!"
);
});
// }else{
// editBopctyData(this.model.inr,this.model)
// .then((res) => {
// this.$message.success("收支申报国家代码表保存成功!");
// this.goBack(true)
// })
// .catch((err) => {
// this.$message.error("收支申报国家代码表保存失败!");
// });
}
}
else
{
Utils
.
formValidateTips
(
this
.
$refs
.
modelForm
.
fields
)
...
...
@@ -175,15 +176,16 @@ export default {
})
.
catch
((
err
)
=>
{
this
.
$message
.
error
(
"国家地区信息删除失败!"
);
})}
else
{
deleteBopctyById
(
this
.
model
)
.
then
((
res
)
=>
{
this
.
$message
.
success
(
"收支申报国家代码表删除成功!"
);
this
.
goBack
(
true
)
})
.
catch
((
err
)
=>
{
this
.
$message
.
error
(
"收支申报国家代码表删除失败!"
);
})
// }else{
// deleteBopctyById(this.model)
// .then((res) => {
// this.$message.success("收支申报国家代码表删除成功!");
// this.goBack(true)
// })
// .catch((err) => {
// this.$message.error("收支申报国家代码表删除失败!");
// })
};
})
.
catch
(()
=>
{
...
...
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