This commit is contained in:
parent
7e481c87c9
commit
ef0ec678aa
|
@ -151,7 +151,10 @@
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<!-- 姓名 -->
|
<!-- 姓名 -->
|
||||||
<div v-if="item.property == 'xm'">
|
<div v-if="item.property == 'xm'">
|
||||||
<div>
|
<div
|
||||||
|
style="cursor: pointer"
|
||||||
|
@click="handleRowClick(scope.row)"
|
||||||
|
>
|
||||||
{{ scope.row.xm }}
|
{{ scope.row.xm }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -166,19 +169,19 @@
|
||||||
/>
|
/>
|
||||||
</div> -->
|
</div> -->
|
||||||
<img
|
<img
|
||||||
style="width: 30px; height: 30px;cursor: pointer;"
|
style="width: 30px; height: 30px; cursor: pointer"
|
||||||
v-if="scope.row.deng == 0"
|
v-if="scope.row.deng == 0"
|
||||||
:src="lampImages[1]"
|
:src="lampImages[1]"
|
||||||
@click="statusDetails(scope.row)"
|
@click="statusDetails(scope.row)"
|
||||||
/>
|
/>
|
||||||
<img
|
<img
|
||||||
style="width: 30px; height: 30px;cursor: pointer;"
|
style="width: 30px; height: 30px; cursor: pointer"
|
||||||
v-if="scope.row.deng == 1"
|
v-if="scope.row.deng == 1"
|
||||||
:src="lampImages[3]"
|
:src="lampImages[3]"
|
||||||
@click="statusDetails(scope.row)"
|
@click="statusDetails(scope.row)"
|
||||||
/>
|
/>
|
||||||
<img
|
<img
|
||||||
style="width: 30px; height: 30px;cursor: pointer;"
|
style="width: 30px; height: 30px; cursor: pointer"
|
||||||
v-if="scope.row.deng == 2"
|
v-if="scope.row.deng == 2"
|
||||||
:src="lampImages[2]"
|
:src="lampImages[2]"
|
||||||
@click="statusDetails(scope.row)"
|
@click="statusDetails(scope.row)"
|
||||||
|
@ -514,12 +517,14 @@ const getTable = (pagination) => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
const getTable1 = (pagination) => {
|
const getTable1 = (pagination) => {
|
||||||
http.get(`${pagination.url}?sfzhm=${data.identNo}&xh=${routers.query.xh}`).then((res) => {
|
http
|
||||||
|
.get(`${pagination.url}?sfzhm=${data.identNo}&xh=${routers.query.xh}`)
|
||||||
|
.then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
tableType.data = res.data;
|
tableType.data = res.data;
|
||||||
tableType.typeId = routers.query.id;
|
tableType.typeId = routers.query.id;
|
||||||
dialogShow.value = true;
|
dialogShow.value = true;
|
||||||
}else{
|
} else {
|
||||||
ElMessage.warning({
|
ElMessage.warning({
|
||||||
message: res.message,
|
message: res.message,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue