111
This commit is contained in:
parent
efd3a500e6
commit
5f6379ba80
|
@ -213,7 +213,7 @@ const confirmEvent = () => {
|
|||
name: data.character.xm,
|
||||
address: data.character.dz,
|
||||
phone: "",
|
||||
type: "ggdw_mz_db",
|
||||
type: data.character.id,
|
||||
};
|
||||
http.post(`/api/ggfwyth/pg/reported`, ReportedDto).then((res) => {
|
||||
if (res.code == 200) {
|
||||
|
|
|
@ -304,10 +304,10 @@ const router = useRouter();
|
|||
const routers = useRoute();
|
||||
const data = reactive({
|
||||
name: "",
|
||||
identNo: "",//人物ID
|
||||
first: 1,//随访记录&体检记录切换
|
||||
tabelshow: true,//老年人福利补贴切换
|
||||
pagedData: [],//服务内容清单(中间)临时分页数据
|
||||
identNo: "", //人物ID
|
||||
first: 1, //随访记录&体检记录切换
|
||||
tabelshow: true, //老年人福利补贴切换
|
||||
pagedData: [], //服务内容清单(中间)临时分页数据
|
||||
columns: [],
|
||||
column_1: [],
|
||||
column_2: [],
|
||||
|
@ -2422,6 +2422,7 @@ const statusDetails = (val) => {
|
|||
tableType.character = {
|
||||
...val,
|
||||
age: val.nl,
|
||||
id: routers.query.id,
|
||||
// dz: val.address,
|
||||
titleName: formData.name,
|
||||
};
|
||||
|
|
|
@ -4057,7 +4057,7 @@ const reset_font2 = () => {
|
|||
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
||||
};
|
||||
onMounted(async () => {
|
||||
// tools.data.set("token", "6b0e380b4a8f46baae4923f83faf670d");
|
||||
tools.data.set("token", "6b0e380b4a8f46baae4923f83faf670d");
|
||||
loadingss.value = true;
|
||||
reset_font();
|
||||
await getXzsj();
|
||||
|
|
|
@ -196,7 +196,7 @@ const goto = (val) => {
|
|||
if (availableRoutes.includes(val.name)) {
|
||||
router.push({
|
||||
path: "/home/index/table/details",
|
||||
query: { name: val.name },
|
||||
query: { name: val.name, id: val.id },
|
||||
});
|
||||
} else {
|
||||
ElMessage.warning({
|
||||
|
@ -640,7 +640,7 @@ const getData = async (name, fullName) => {
|
|||
res.data.forEach((item, index) => {
|
||||
const imageIndex = index % data.Bj.length;
|
||||
data.tabPublicService.push({
|
||||
id: index,
|
||||
id: item.id,
|
||||
Bj: data.Bj[imageIndex],
|
||||
name: item.sx,
|
||||
text: item.bmfxqk,
|
||||
|
@ -979,16 +979,16 @@ onMounted(() => {
|
|||
}
|
||||
</style>
|
||||
<style lang="scss" scoped>
|
||||
.tab{
|
||||
.tab {
|
||||
:deep(.el-table) {
|
||||
background: rgba(32, 64, 115, 1);
|
||||
color: #ffffff;
|
||||
--el-table-border-color: rgba(57, 107, 161);
|
||||
--el-table-tr-bg-color: none;
|
||||
--el-table-header-bg-color: none;
|
||||
--el-table-header-text-color: none;
|
||||
border: 1px solid #7aceff;
|
||||
}
|
||||
background: rgba(32, 64, 115, 1);
|
||||
color: #ffffff;
|
||||
--el-table-border-color: rgba(57, 107, 161);
|
||||
--el-table-tr-bg-color: none;
|
||||
--el-table-header-bg-color: none;
|
||||
--el-table-header-text-color: none;
|
||||
border: 1px solid #7aceff;
|
||||
}
|
||||
}
|
||||
|
||||
// :deep(.el-table tr) {
|
||||
|
|
Loading…
Reference in New Issue