|
|
@@ -1714,4 +1714,26 @@ export const getTaskChildren = (data) => {
|
|
|
method: "post",
|
|
|
data
|
|
|
})
|
|
|
+}
|
|
|
+export const getAccountCardListByPage = (data) => {
|
|
|
+ return axios({
|
|
|
+ url: "/invAccount/getAccountCardListByPage",
|
|
|
+ method: "post",
|
|
|
+ data
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+export const findById = (id) => {
|
|
|
+ return axios({
|
|
|
+ url: "/sysAmountAuditing/findById?id="+id,
|
|
|
+ method: "get",
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+export const addInvAccountBackCardMsg = (data) => {
|
|
|
+ return axios({
|
|
|
+ url: "/sysAmountAuditing/addInvAccountBackCardMsg",
|
|
|
+ method: "post",
|
|
|
+ data
|
|
|
+ })
|
|
|
}
|