|
|
|
@ -272,7 +272,7 @@ import { getOatoken } from "@/api/oatoken";
|
|
|
|
import { Message } from "element-ui";
|
|
|
|
import { Message } from "element-ui";
|
|
|
|
import { moneyFormatter } from "@/utils";
|
|
|
|
import { moneyFormatter } from "@/utils";
|
|
|
|
import { getparameter } from "@/api/system/dictionary";
|
|
|
|
import { getparameter } from "@/api/system/dictionary";
|
|
|
|
import { getOutDetail } from "@/api/out";
|
|
|
|
import { getOutDetail, httpCurl } from "@/api/out";
|
|
|
|
|
|
|
|
|
|
|
|
import detailContractSign from "./detailContractSign";
|
|
|
|
import detailContractSign from "./detailContractSign";
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
@ -590,17 +590,17 @@ export default {
|
|
|
|
watch: {
|
|
|
|
watch: {
|
|
|
|
isShowDetail(val) {
|
|
|
|
isShowDetail(val) {
|
|
|
|
if (val) {
|
|
|
|
if (val) {
|
|
|
|
getOutDetail({ tbname: "hetong", out_contract_id: this.id }).then(
|
|
|
|
httpCurl({ tbname: "hetong", out_contract_id: this.id }).then(
|
|
|
|
(res) => {
|
|
|
|
(res) => {
|
|
|
|
this.outContractDetail = res;
|
|
|
|
this.outContractDetail = res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
);
|
|
|
|
getOutDetail({ tbname: "caigou", out_caigou_id: this.id }).then(
|
|
|
|
httpCurl({ tbname: "caigou", out_caigou_id: this.id }).then(
|
|
|
|
(res) => {
|
|
|
|
(res) => {
|
|
|
|
this.outCaigouDetail = res;
|
|
|
|
this.outCaigouDetail = res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
);
|
|
|
|
getOutDetail({ tbname: "pay", out_pay_id: this.id }).then((res) => {
|
|
|
|
httpCurl({ tbname: "pay", out_pay_id: this.id }).then((res) => {
|
|
|
|
this.outPayDetail = res;
|
|
|
|
this.outPayDetail = res;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|