配件入库
This commit is contained in:
parent
dbdb3b0621
commit
9e21782ba4
|
|
@ -322,3 +322,15 @@ function downLoadFile(obj) {
|
||||||
let url = dataUrl + "backstage/export/download?fileId=" + obj.id;
|
let url = dataUrl + "backstage/export/download?fileId=" + obj.id;
|
||||||
downLoadFileUtil(url, obj.fileName, null);
|
downLoadFileUtil(url, obj.fileName, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 打印
|
||||||
|
function print() {
|
||||||
|
Print('#body', {
|
||||||
|
onStart: function () {
|
||||||
|
console.log('onStart', new Date())
|
||||||
|
},
|
||||||
|
onEnd: function () {
|
||||||
|
console.log('onEnd', new Date())
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<body>
|
<body id="body">
|
||||||
<div id="main-box">
|
<div id="main-box">
|
||||||
<div class="layout" id="detail-box">
|
<div class="layout" id="detail-box">
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue