案件日志接口联调
This commit is contained in:
@@ -104,8 +104,13 @@
|
||||
@pagination="getList(queryParams)"
|
||||
/>
|
||||
<!-- 弹窗 -->
|
||||
<!-- <paymentdetailsDialog :openDialog="openDialog" :detailform="detailform" :title="title" :flag="flag"
|
||||
@cancelpaymentdetails="cancelpaymentdetails" @updataList="updataList"></paymentdetailsDialog> -->
|
||||
<archiveDetailsDialog
|
||||
v-if="showarchiveDetails"
|
||||
:showarchiveDetails="showarchiveDetails"
|
||||
:detailform="detailform"
|
||||
@cancelpaymentdetails="cancelpaymentdetails"
|
||||
@updataList="updataList"
|
||||
></archiveDetailsDialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -114,12 +119,12 @@ import {
|
||||
caseApplicationList,
|
||||
caseApplicationDetail,
|
||||
} from "@/api/awardManagement/awardManagement";
|
||||
// import paymentdetailsDialog from "./components/paymentdetailsDialog.vue";
|
||||
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
||||
|
||||
export default {
|
||||
name: "archiveList",
|
||||
dicts: ["case_status"],
|
||||
// components: { paymentdetailsDialog },
|
||||
components: { archiveDetailsDialog },
|
||||
data() {
|
||||
return {
|
||||
queryParams: {
|
||||
@@ -132,9 +137,6 @@ export default {
|
||||
total: 0,
|
||||
// 表格数据
|
||||
list: [],
|
||||
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
// 弹出层内容
|
||||
form: {},
|
||||
@@ -142,8 +144,7 @@ export default {
|
||||
rules: {},
|
||||
dataList: [],
|
||||
detailform: {}, //详情数据
|
||||
openDialog: false, //详情数据弹框
|
||||
flag: null,
|
||||
showarchiveDetails: false, //详情数据弹框
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@@ -175,12 +176,12 @@ export default {
|
||||
},
|
||||
// model框显示
|
||||
showDetail(row) {
|
||||
this.getDetail({ id: row.id });
|
||||
this.openDialog = true;
|
||||
// this.getDetail({ id: row.id });
|
||||
this.showarchiveDetails = true;
|
||||
},
|
||||
// 关闭弹窗
|
||||
cancelpaymentdetails() {
|
||||
this.openDialog = false;
|
||||
this.showarchiveDetails = false;
|
||||
},
|
||||
/** 查询详情 */
|
||||
getDetail(parms) {
|
||||
|
||||
Reference in New Issue
Block a user