Commit 0fcab2fa by niewei

保函路径增加manager

parent c47e213b
......@@ -492,7 +492,10 @@
onDblgtxSearch() {
this.searchLoading = true;
let currentOrg = this.$store.state.UserContext.currentOrg;
if (currentOrg.departmentNumber != '1000') {
console.log("===============")
console.log(this.$store.state.UserContext)
console.log(currentOrg+"=========================")
if (currentOrg != null && currentOrg.departmentNumber != '1000') {
this.model.objextkey = currentOrg.departmentNumber;
}
queryByPage(this.model).then(res => {
......
import Api from "~/service/Api"
// 列表分页查询保函文本模板变量信息
export function queryByPage(data) {
return Api.post("/gtxArg/listPagingInfo", data);
export function queryByPage (data) {
return Api.post("/manager/gtxArg/listPagingInfo", data);
}
// 新增保函文本模板变量信息
export function addInfo(data){
return Api.post("/gtxArg/addInfo",data);
export function addInfo (data) {
return Api.post("/manager/gtxArg/addInfo", data);
}
// 编辑保函文本模板变量信息
export function editInfo(data){
return Api.post("/gtxArg/editInfo",data);
export function editInfo (data) {
return Api.post("/manager/gtxArg/editInfo", data);
}
// 查看保函文本模板变量信息
export function getInfo(data){
return Api.post("/gtxArg/getInfo",data);
export function getInfo (data) {
return Api.post("/manager/gtxArg/getInfo", data);
}
// 删除保函文本模板变量信息
export function deleteInfo(data){
return Api.post("/gtxArg/deleteInfo",data);
export function deleteInfo (data) {
return Api.post("/manager/gtxArg/deleteInfo", data);
}
// 根据交易类型获取保函文本模板变量列表
export function listInfo(data){
return Api.post("/gtxArg/listInfo",data);
export function listInfo (data) {
return Api.post("/manager/gtxArg/listInfo", data);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment