This commit is contained in:
parent
0ade2e66c2
commit
aeb3b5c9b3
|
@ -50,8 +50,10 @@
|
||||||
>
|
>
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<div class="arrowl"></div>
|
<div class="arrowl"></div>
|
||||||
<div class="item_content" v-for="item in data.menu">
|
<div class="contenta">
|
||||||
{{ item.label }}
|
<div class="item_content" v-for="item in data.menu">
|
||||||
|
{{ item.label }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="arrowr"></div>
|
<div class="arrowr"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -59,13 +61,14 @@
|
||||||
<div class="operationFlow">
|
<div class="operationFlow">
|
||||||
<div class="titles">
|
<div class="titles">
|
||||||
<div class="titlea">
|
<div class="titlea">
|
||||||
业务单位:<span>民政局-社会救助科</span>
|
业务单位:<span>医保局-龙游县医疗保障事业管理中心</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="titlea">业务负责人:<span>杨*</span></div>
|
<div class="titlea">业务负责人:<span>周*珊,伊*田,杨**</span></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="operationConten">
|
<div class="operationConten">
|
||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div>1/6 低保金</div>
|
<!-- <div>1/6 低保金</div> -->
|
||||||
|
<div>{{data.menu[0].label }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="stepsa">
|
<div class="stepsa">
|
||||||
<div class="stepsb">
|
<div class="stepsb">
|
||||||
|
@ -157,11 +160,13 @@ const data = reactive({
|
||||||
watch(
|
watch(
|
||||||
() => props.dialogShow,
|
() => props.dialogShow,
|
||||||
(newVal, oldVal) => {
|
(newVal, oldVal) => {
|
||||||
console.log(222);
|
// console.log(222);
|
||||||
dialogShow.value = newVal;
|
dialogShow.value = newVal;
|
||||||
if (newVal == true) {
|
if (newVal == true) {
|
||||||
data.content = props.tableData;
|
|
||||||
data.title = props.title;
|
data.title = props.title;
|
||||||
|
data.content = props.tableData;
|
||||||
|
data.menu = props.menu;
|
||||||
|
// console.log(11,data.menu);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -172,6 +177,8 @@ onMounted(() => {
|
||||||
data.title = props.title;
|
data.title = props.title;
|
||||||
data.content = props.tableData;
|
data.content = props.tableData;
|
||||||
data.menu = props.menu;
|
data.menu = props.menu;
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const closeDialog = () => {
|
const closeDialog = () => {
|
||||||
|
@ -273,6 +280,13 @@ const closeDialog = () => {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
|
.contenta{
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 10px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
.item_content {
|
.item_content {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -333,7 +347,7 @@ const closeDialog = () => {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.titlea {
|
.titlea {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
width: 260px;
|
min-width: 290px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.operationConten {
|
.operationConten {
|
||||||
|
@ -346,7 +360,7 @@ const closeDialog = () => {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
.progress {
|
.progress {
|
||||||
width: 176px;
|
mix-width: 176px;
|
||||||
height: 34px;
|
height: 34px;
|
||||||
background-image: url(@/assets/images/sy_details_LC/fwlc5.png);
|
background-image: url(@/assets/images/sy_details_LC/fwlc5.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
|
|
@ -125,7 +125,7 @@
|
||||||
<div class="displayFlex right_bg">
|
<div class="displayFlex right_bg">
|
||||||
<div class="bt_title">
|
<div class="bt_title">
|
||||||
<div class="yd_title left_3">
|
<div class="yd_title left_3">
|
||||||
<span >服务结果清单</span>
|
<span>服务结果清单</span>
|
||||||
<div class="semi-circle-shadow"></div>
|
<div class="semi-circle-shadow"></div>
|
||||||
<div class="animate-border">
|
<div class="animate-border">
|
||||||
<i></i>
|
<i></i>
|
||||||
|
@ -607,25 +607,36 @@ const Process = reactive({
|
||||||
title: "服务链流程",
|
title: "服务链流程",
|
||||||
data: [],
|
data: [],
|
||||||
menu: [
|
menu: [
|
||||||
|
// {
|
||||||
|
// label: "职工基本医疗保险",
|
||||||
|
// property: "index",
|
||||||
|
// show: false,
|
||||||
|
// },
|
||||||
|
|
||||||
{
|
{
|
||||||
label: "低保金",
|
label: "低保金",
|
||||||
property: "index",
|
property: "index",
|
||||||
|
show: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "低保水费减免",
|
label: "低保水费减免",
|
||||||
property: "xm",
|
property: "xm",
|
||||||
|
show: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "低保电费减免",
|
label: "低保电费减免",
|
||||||
property: "item",
|
property: "item",
|
||||||
|
show: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "低保有线电视减免",
|
label: "低保有线电视减免",
|
||||||
property: "adminName",
|
property: "adminName",
|
||||||
|
show: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "残疾人补贴",
|
label: "残疾人补贴",
|
||||||
property: "sendTime",
|
property: "sendTime",
|
||||||
|
show: false,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
@ -822,7 +833,17 @@ const closeProcess = () => {
|
||||||
};
|
};
|
||||||
//获取服务处置流程数据
|
//获取服务处置流程数据
|
||||||
const openLC = () => {
|
const openLC = () => {
|
||||||
console.log('推送');
|
// if (data.name == "职工基本医疗保险") {
|
||||||
|
// console.log("推送");
|
||||||
|
Process.menu = []
|
||||||
|
Process.menu = [
|
||||||
|
{
|
||||||
|
label: data.name,
|
||||||
|
property: "index",
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
// }
|
||||||
dialogShowProcess.value = true;
|
dialogShowProcess.value = true;
|
||||||
// http.get(`/api/ggfwyth/pg/sfljqd?xh=${routers.query.xh}`).then((res) => {
|
// http.get(`/api/ggfwyth/pg/sfljqd?xh=${routers.query.xh}`).then((res) => {
|
||||||
// if (res.code == 200) {
|
// if (res.code == 200) {
|
||||||
|
|
Loading…
Reference in New Issue