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
b939ea5b
Commit
b939ea5b
authored
Apr 03, 2023
by
zhanghou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
前端修改调用,修改前端请求面函接口2次的代码
parent
27cf2a46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
41 deletions
+29
-41
index.vue
src/components/business/docpan/views/index.vue
+16
-3
Show.vue
src/views/Docpan/Show.vue
+13
-38
No files found.
src/components/business/docpan/views/index.vue
View file @
b939ea5b
...
...
@@ -589,12 +589,12 @@ export default {
// // this.model.docpan.cortyp = cortyp
// }
cons
t params = {
index: row.idx
,
le
t params = {
docVo: row
,
};
rtnmsg = await Api.post(
`${this.requestPrefix}/executeDocpan`,
this.wrapper(params)
params
);
if (rtnmsg.respCode == SUCCESS) {
if (cortyp == '
SWT
' || cortyp == '
FMT
' || cortyp == '
CMT
') {
...
...
@@ -628,6 +628,19 @@ export default {
} else {
this.title = '
面函
';
let viewurl = '
/
#
/
docpan
/
show
';
let base64Str = rtnmsg.data.executeDocpan;
let bstr = window.atob(base64Str); // 解码 base-64 编码的字符串,base-64 编码使用方法是 btoa()
let length = bstr.length;
let u8arr = new Uint8Array(length); // 创建初始化为0的,包含length个元素的无符号整型数组
while (length--) {
u8arr[length] = bstr.charCodeAt(length); // 返回在指定的位置的字符的 Unicode 编码
}
let blob = new Blob([u8arr]);
let param={
blob:blob,
docnam:row.docnam
}
window["params"] = param;
window.open(
viewurl,
'
newwindow
',
...
...
src/views/Docpan/Show.vue
View file @
b939ea5b
...
...
@@ -25,46 +25,21 @@ export default {
},
methods
:
{
async
goPreview
()
{
let
routeQuery
=
this
.
$route
.
query
const
params
=
{
index
:
routeQuery
.
idx
,
};
let
res
=
await
Api
.
post
(
'/service/gitopn/executeDocpan'
,
this
.
wrapper
(
params
));
if
(
res
.
respCode
==
SUCCESS
)
{
let
base64Str
=
res
.
data
.
executeDocpan
;
let
bstr
=
window
.
atob
(
base64Str
);
// 解码 base-64 编码的字符串,base-64 编码使用方法是 btoa()
let
length
=
bstr
.
length
;
let
u8arr
=
new
Uint8Array
(
length
);
// 创建初始化为0的,包含length个元素的无符号整型数组
while
(
length
--
)
{
u8arr
[
length
]
=
bstr
.
charCodeAt
(
length
);
// 返回在指定的位置的字符的 Unicode 编码
}
let
blob
=
new
Blob
([
u8arr
]);
renderAsync
(
blob
,
this
.
$refs
.
file
)
}
let
params
=
window
.
opener
[
"params"
];
let
blob
=
params
.
blob
renderAsync
(
blob
,
this
.
$refs
.
file
)
},
async
downLoad
()
{
let
routeQuery
=
this
.
$route
.
query
const
params
=
{
index
:
routeQuery
.
idx
,
};
let
res
=
await
Api
.
post
(
'/service/gitopn/executeDocpan'
,
this
.
wrapper
(
params
));
if
(
res
.
respCode
==
SUCCESS
)
{
let
base64Str
=
res
.
data
.
executeDocpan
;
let
bstr
=
window
.
atob
(
base64Str
);
// 解码 base-64 编码的字符串,base-64 编码使用方法是 btoa()
let
length
=
bstr
.
length
;
let
u8arr
=
new
Uint8Array
(
length
);
// 创建初始化为0的,包含length个元素的无符号整型数组
while
(
length
--
)
{
u8arr
[
length
]
=
bstr
.
charCodeAt
(
length
);
// 返回在指定的位置的字符的 Unicode 编码
}
let
blob
=
new
Blob
([
u8arr
]);
var
a
=
document
.
createElement
(
"a"
);
//创建一个
<
a
><
/a>标
签
a
.
href
=
URL
.
createObjectURL
(
blob
);
// 将流文件写入a标签的href属性值
a
.
download
=
"gitopn.docx"
;
//设置文件名
a
.
style
.
display
=
"none"
;
// 障眼法藏起来a标签
document
.
body
.
appendChild
(
a
);
// 将a标签追加到文档对象中
a
.
click
();
// 模拟点击了a标签,会触发a标签的href的读取,浏览器就会自动下载了
a
.
remove
();
// 一次性的,用完就删除a标签
}
let
params
=
window
.
opener
[
"params"
];
let
blob
=
params
.
blob
let
docnam
=
params
.
docnam
var
a
=
document
.
createElement
(
"a"
);
//创建一个
<
a
><
/a>标
签
a
.
href
=
URL
.
createObjectURL
(
blob
);
// 将流文件写入a标签的href属性值
a
.
download
=
docnam
;
//设置文件名
a
.
style
.
display
=
"none"
;
// 障眼法藏起来a标签
document
.
body
.
appendChild
(
a
);
// 将a标签追加到文档对象中
a
.
click
();
// 模拟点击了a标签,会触发a标签的href的读取,浏览器就会自动下载了
a
.
remove
();
// 一次性的,用完就删除a标签
}
}
};
...
...
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