Commit a71987d0 by 叶富雄

添加路由

parent 25942223
......@@ -56,3 +56,6 @@ export const delAsjZjwz = params =>
//提取
export const getWzxqList = params =>
postform(`${base.alyIP}/zjwzJc/getWzxqList`, params)
//提取
export const hjwzdb = params =>
postform(`${base.alyIP}/zjwzJc/hjwzdb`, params)
......@@ -16,7 +16,7 @@
>
<template #btnGroup="scope">
<el-button @click="TQ(scope.scope)" type="text">痕迹物证检查</el-button>
<el-button @click="TQ(scope.scope)" type="text">痕迹物证比对情况</el-button>
<el-button @click="BD(scope.scope)" type="text">痕迹物证比对情况</el-button>
</template>
<template #listOperation="scope">
<el-button @click="BJ" size="mini">编辑</el-button>
......@@ -44,7 +44,7 @@
import zj from "@p/ajzcgzxnpg/components/zj.vue";
import rightContent from "@c/ptCxForm_components.vue";
import { deleteZjclById, getZjclLb } from "@/api/zjcl/zjcl.js";
import {getWzxqList,getZjwzLb} from "@/api/ajzc/ajzc.js";
import {getWzxqList,getZjwzLb,hjwzdb} from "@/api/ajzc/ajzc.js";
export default {
name: "queryZjcl",
components: {rightContent,zj},
......@@ -241,6 +241,16 @@
},
});*/
},
BD(scope){
let params = new FormData()
params.append('asjbh',scope.row.asjbh);
hjwzdb(params).then(res=>{
if(res.code ===200){
this.$alert(res.data.bdjgms, '痕迹物证比对情况', {
});
}
})
},
TQ(scope) {
let params = new FormData()
params.append('asjbh',scope.row.asjbh)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment