浏览代码

add receipt

master
Alex Cheung 1年前
父节点
当前提交
c86281b476
共有 3 个文件被更改,包括 9 次插入2 次删除
  1. +4
    -1
      src/pages/Payment/Details_GLD/index.js
  2. +4
    -1
      src/pages/Payment/Details_Public/index.js
  3. +1
    -0
      src/utils/ApiPathConst.js

+ 4
- 1
src/pages/Payment/Details_GLD/index.js 查看文件

@@ -53,7 +53,10 @@ const Index = () => {
} }


const doPrint = () => { const doPrint = () => {
window.print();
// window.print();
HttpUtils.fileDownload({
url: UrlUtils.GEN_PAYMENT_RECEIPT+"/"+params.id,
});
}; };


const loadForm = () => { const loadForm = () => {


+ 4
- 1
src/pages/Payment/Details_Public/index.js 查看文件

@@ -54,7 +54,10 @@ const Index = () => {
} }


const doPrint = () => { const doPrint = () => {
window.print();
// window.print();
HttpUtils.fileDownload({
url: UrlUtils.GEN_PAYMENT_RECEIPT+"/"+params.id,
});
}; };






+ 1
- 0
src/utils/ApiPathConst.js 查看文件

@@ -125,6 +125,7 @@ export const GET_SMART_LOGIN = apiPath+'/smart/login'; //POST


//gen report //gen report
export const GEN_GAZETTE_PROOF = apiPath+'/proof/gazetteProof'; //POST export const GEN_GAZETTE_PROOF = apiPath+'/proof/gazetteProof'; //POST
export const GEN_PAYMENT_RECEIPT = apiPath+'/payment/receipt'; //POST


//gen report //gen report
export const GEN_GFMIS_XML = apiPath+'/gfmis'; //GET export const GEN_GFMIS_XML = apiPath+'/gfmis'; //GET

正在加载...
取消
保存