证据目录界面,案件导入问题
This commit is contained in:
@@ -23,10 +23,10 @@
|
||||
@keyup.enter.native="handleQuery"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in dict.type.case_status"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
v-for="dict in caseStatus"
|
||||
:key="dict.dictSort"
|
||||
:label="dict.dictLabel"
|
||||
:value="dict.dictSort"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@@ -136,10 +136,10 @@ import {
|
||||
casePay,
|
||||
} from "@/api/pay/pay";
|
||||
import paymentdetailsDialog from "./components/paymentdetailsDialog.vue";
|
||||
|
||||
import { getDicts } from '@/api/system/dict/data.js'
|
||||
export default {
|
||||
name: "paymentList",
|
||||
dicts: ["case_status"],
|
||||
// dicts: ["case_status"],
|
||||
components: { paymentdetailsDialog },
|
||||
data() {
|
||||
return {
|
||||
@@ -180,10 +180,18 @@ export default {
|
||||
detailform: {}, //缴费详情数据
|
||||
openDialog: false, //缴费详情数据弹框
|
||||
flag: null,
|
||||
caseStatus:[]
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
getDicts("case_status").then(res => {
|
||||
this.caseStatus = res.data;
|
||||
let params = this.$route.params.status;
|
||||
if (params >= 0) {
|
||||
this.queryParams.caseStatus = params;
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
/** 搜索按钮操作 */
|
||||
|
||||
Reference in New Issue
Block a user