Merge branch 'hhl' of SH-Arbitrate/Arbitrate-Frontend into dev
This commit was merged in pull request #54.
This commit is contained in:
@@ -851,9 +851,9 @@ export default {
|
|||||||
return window.location.origin + "/API/evidence/upload";
|
return window.location.origin + "/API/evidence/upload";
|
||||||
},
|
},
|
||||||
handlePreview(file) {
|
handlePreview(file) {
|
||||||
if (file.certificatePath) {
|
if (file && file.response.data.annexName) {
|
||||||
window.open(
|
window.open(
|
||||||
window.location.origin + "/API" + file.certificatePath,
|
window.location.origin + "/API" + file.response.data.annexName,
|
||||||
"_blank"
|
"_blank"
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -71,9 +71,10 @@ export default {
|
|||||||
selectCaseApplicationConfirmFn(parms) {
|
selectCaseApplicationConfirmFn(parms) {
|
||||||
selectCaseApplicationConfirm(parms).then(res => {
|
selectCaseApplicationConfirm(parms).then(res => {
|
||||||
console.log(res, this.form, "KKKKKKKKKKKKKKKKKKKK");
|
console.log(res, this.form, "KKKKKKKKKKKKKKKKKKKK");
|
||||||
if(res.data.paymentStatus == 1){
|
if(res && res.data && res.data.paymentStatus == 1){
|
||||||
clearInterval(this.timer);
|
clearInterval(this.timer);
|
||||||
this.openPay = false;
|
// this.openPay = false;
|
||||||
|
this.payCancel()
|
||||||
this.$message({
|
this.$message({
|
||||||
message: "缴费成功",
|
message: "缴费成功",
|
||||||
type: "success",
|
type: "success",
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
openDialog: {
|
detailform: {
|
||||||
handler(val) {
|
handler(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user