Merge branch 'main' of git.zdool.com:xs/ggfwjsc
This commit is contained in:
commit
99919c256b
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
|
@ -119,13 +119,14 @@ const getOption = () => {
|
|||
barGap: 0.3 /*多个并排柱子设置柱子之间的间距*/,
|
||||
label: {
|
||||
show: true,
|
||||
position: "inside",
|
||||
position: "right",
|
||||
color: "#ffffff",
|
||||
formatter: function (data) {
|
||||
return data.value;
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
show:true,
|
||||
color: {
|
||||
type: "linear",
|
||||
colorStops: [
|
||||
|
@ -145,7 +146,7 @@ const getOption = () => {
|
|||
barGap: 0.3 /*多个并排柱子设置柱子之间的间距*/,
|
||||
label: {
|
||||
show: true,
|
||||
position: "inside",
|
||||
position: "right",
|
||||
color: "#ffffff",
|
||||
formatter: function (data) {
|
||||
return data.value;
|
||||
|
@ -153,6 +154,7 @@ const getOption = () => {
|
|||
},
|
||||
itemStyle: {
|
||||
color: {
|
||||
show:true,
|
||||
type: "linear",
|
||||
colorStops: [
|
||||
{ offset: 0, color: "rgba(23, 255, 206, 0.2)" },
|
||||
|
|
|
@ -449,7 +449,7 @@ const setChart1 = () => {
|
|||
onBeforeMount(() => {
|
||||
setTimeout(() => {
|
||||
data.list = props.list;
|
||||
data.month = props.list.month;
|
||||
data.month = props.list.month.map((item) => item + "月");
|
||||
// console.log(data.list, "生活");
|
||||
setChart1();
|
||||
getOption();
|
||||
|
|
|
@ -36,321 +36,334 @@ const data = reactive({
|
|||
list: [],
|
||||
list1: [],
|
||||
list2: [],
|
||||
year: [],
|
||||
lineData: [],
|
||||
lineData2: [],
|
||||
month: [],
|
||||
option: {},
|
||||
initialLegendData: ["困难军人生活补贴人数", "困难军人生活补贴金额"],
|
||||
});
|
||||
|
||||
|
||||
// const data1 = [120, 200, 50, 80, 70];
|
||||
// const data2 = [12, 20, 5, 8, 7];
|
||||
// const lineData = [150, 230, 24, 218, 135];
|
||||
// const lineData2 = [15, 23, 4, 18, 15];
|
||||
// const max = data
|
||||
// .concat(lineData)
|
||||
// .reduce((pre, cur) => (pre > cur ? pre : cur), 0); //找到这个新数组中的最大值
|
||||
// // 背景颜色
|
||||
// const color = [
|
||||
// {
|
||||
// type: "linear",
|
||||
// x: 0,
|
||||
// x2: 0,
|
||||
// y: 0,
|
||||
// y2: 1,
|
||||
// },
|
||||
// ];
|
||||
// 背景颜色
|
||||
const color = [
|
||||
{
|
||||
type: "linear",
|
||||
x: 0,
|
||||
x2: 0,
|
||||
y: 0,
|
||||
y2: 1,
|
||||
},
|
||||
];
|
||||
|
||||
// const getOption = () => {
|
||||
// data.option = {
|
||||
// tooltip: {
|
||||
// trigger: "axis",
|
||||
// formatter: "{b0}<br/> {a0}:{c0}<br/>{a1}:{c1}<br/>{a2}:{c2}<br/>{a3}:{c3}",
|
||||
// },
|
||||
const getOption = () => {
|
||||
data.option = {
|
||||
tooltip: {
|
||||
trigger: "axis",
|
||||
formatter:
|
||||
"{b0}月<br/> {a0}:{c0}<br/>{a1}:{c1}<br/>{a2}:{c2}<br/>{a3}:{c3}",
|
||||
},
|
||||
|
||||
// legend: {
|
||||
// data: [
|
||||
// "困难残疾人生活补贴人数",
|
||||
// "护理补贴人数",
|
||||
// "",
|
||||
// "困难残疾人生活补贴金额",
|
||||
// "护理补贴金额",
|
||||
// ],
|
||||
// top: "3%",
|
||||
// textStyle: {
|
||||
// fontSize: 14,
|
||||
// color: "#ffffff", //上文字标题颜色
|
||||
// },
|
||||
// },
|
||||
// grid: {
|
||||
// top: "25%",
|
||||
// left: "6%",
|
||||
// right: "9%",
|
||||
// bottom: "5%",
|
||||
// containLabel: true,
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// },
|
||||
// calculable: true,
|
||||
// color,
|
||||
// xAxis: [
|
||||
// {
|
||||
// type: "category",
|
||||
legend: {
|
||||
data: [
|
||||
"困难残疾人生活补贴人数",
|
||||
"护理补贴人数",
|
||||
"",
|
||||
"困难残疾人生活补贴金额",
|
||||
"护理补贴金额",
|
||||
],
|
||||
top: "3%",
|
||||
textStyle: {
|
||||
fontSize: 14,
|
||||
color: "#ffffff", //上文字标题颜色
|
||||
},
|
||||
},
|
||||
grid: {
|
||||
top: "25%",
|
||||
left: "6%",
|
||||
right: "9%",
|
||||
bottom: "5%",
|
||||
containLabel: true,
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
},
|
||||
calculable: true,
|
||||
color,
|
||||
xAxis: [
|
||||
{
|
||||
type: "category",
|
||||
|
||||
// axisLabel: {
|
||||
// //坐标轴刻度标签的相关设置
|
||||
// textStyle: {
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// },
|
||||
// },
|
||||
// axisTick: {
|
||||
// show: false, // 设置轴刻度不显示
|
||||
// },
|
||||
// data: ["2019", "2020", "2021", "2022", "2023"],
|
||||
// },
|
||||
// {
|
||||
// type: "category",
|
||||
// show: false,
|
||||
// data: ["2019", "2020", "2021", "2022", "2023"],
|
||||
// },
|
||||
// ],
|
||||
// yAxis: [
|
||||
// {
|
||||
// type: "value",
|
||||
// scale: true,
|
||||
// name: "补贴人数",
|
||||
axisLabel: {
|
||||
//坐标轴刻度标签的相关设置
|
||||
textStyle: {
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
},
|
||||
},
|
||||
axisTick: {
|
||||
show: false, // 设置轴刻度不显示
|
||||
},
|
||||
data: data.month,
|
||||
},
|
||||
{
|
||||
type: "category",
|
||||
show: false,
|
||||
data: data.month,
|
||||
},
|
||||
],
|
||||
yAxis: [
|
||||
{
|
||||
type: "value",
|
||||
scale: true,
|
||||
name: "补贴人数",
|
||||
|
||||
// splitLine: {
|
||||
// //分割线配置
|
||||
// show: false,
|
||||
// lineStyle: {
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// width: 1,
|
||||
// },
|
||||
// },
|
||||
// axisLabel: {
|
||||
// //y轴文字的配置
|
||||
// textStyle: {
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// },
|
||||
// },
|
||||
// axisLine: {
|
||||
// //y轴线的颜色以及宽度
|
||||
// show: false,
|
||||
// lineStyle: {
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// width: 1,
|
||||
// type: "solid",
|
||||
// },
|
||||
// },
|
||||
// },
|
||||
// {
|
||||
// type: "value",
|
||||
// scale: true,
|
||||
// min: 0,
|
||||
splitLine: {
|
||||
//分割线配置
|
||||
show: false,
|
||||
lineStyle: {
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
width: 1,
|
||||
},
|
||||
},
|
||||
axisLabel: {
|
||||
//y轴文字的配置
|
||||
textStyle: {
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
},
|
||||
},
|
||||
axisLine: {
|
||||
//y轴线的颜色以及宽度
|
||||
show: false,
|
||||
lineStyle: {
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
width: 1,
|
||||
type: "solid",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
type: "value",
|
||||
scale: true,
|
||||
min: 0,
|
||||
|
||||
// name: "救助金额/元",
|
||||
// splitLine: {
|
||||
// show: false,
|
||||
// lineStyle: {
|
||||
// color: "rgba(226, 226, 226, 0.3)",
|
||||
// width: 1,
|
||||
// },
|
||||
// },
|
||||
// axisLabel: {
|
||||
// //y轴文字的配置
|
||||
// textStyle: {
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// },
|
||||
// },
|
||||
// axisLine: {
|
||||
// //y轴线的颜色以及宽度
|
||||
// show: false,
|
||||
// lineStyle: {
|
||||
// color: "#ffffff",
|
||||
// fontSize: 14,
|
||||
// width: 1,
|
||||
// type: "solid",
|
||||
// },
|
||||
// },
|
||||
// },
|
||||
// {
|
||||
// type: "value",
|
||||
// min: 0,
|
||||
// max: 100,
|
||||
// splitLine: {
|
||||
// show: false,
|
||||
// lineStyle: {
|
||||
// type: "solid",
|
||||
// color: "rgb(221, 242, 255,0.1)",
|
||||
// },
|
||||
// },
|
||||
// axisLine: {
|
||||
// show: false,
|
||||
// lineStyle: {
|
||||
// type: "dotted",
|
||||
// },
|
||||
// },
|
||||
// axisLabel: {
|
||||
// show: false,
|
||||
// fontSize: 14,
|
||||
// color: "#ffffff",
|
||||
// lineHeight: 19,
|
||||
// fontFamily: "MicrosoftYaHei",
|
||||
// },
|
||||
// },
|
||||
// ],
|
||||
// series: [
|
||||
// {
|
||||
// yAxisIndex: 0,
|
||||
// name: "困难残疾人生活补贴人数",
|
||||
// data: data1,
|
||||
// barWidth: 10,
|
||||
// type: "bar",
|
||||
// itemStyle: {
|
||||
// color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||
// {
|
||||
// offset: 0,
|
||||
// color: "rgba(142, 187, 255, 1)",
|
||||
// },
|
||||
// {
|
||||
// offset: 1,
|
||||
// color: "rgba(142, 187, 255, 0.20)",
|
||||
// },
|
||||
// ]),
|
||||
// },
|
||||
// },
|
||||
name: "救助金额/元",
|
||||
splitLine: {
|
||||
show: false,
|
||||
lineStyle: {
|
||||
color: "rgba(226, 226, 226, 0.3)",
|
||||
width: 1,
|
||||
},
|
||||
},
|
||||
axisLabel: {
|
||||
//y轴文字的配置
|
||||
textStyle: {
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
},
|
||||
},
|
||||
axisLine: {
|
||||
//y轴线的颜色以及宽度
|
||||
show: false,
|
||||
lineStyle: {
|
||||
color: "#ffffff",
|
||||
fontSize: 14,
|
||||
width: 1,
|
||||
type: "solid",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
type: "value",
|
||||
min: 0,
|
||||
max: 100,
|
||||
splitLine: {
|
||||
show: false,
|
||||
lineStyle: {
|
||||
type: "solid",
|
||||
color: "rgb(221, 242, 255,0.1)",
|
||||
},
|
||||
},
|
||||
axisLine: {
|
||||
show: false,
|
||||
lineStyle: {
|
||||
type: "dotted",
|
||||
},
|
||||
},
|
||||
axisLabel: {
|
||||
show: false,
|
||||
fontSize: 14,
|
||||
color: "#ffffff",
|
||||
lineHeight: 19,
|
||||
fontFamily: "MicrosoftYaHei",
|
||||
},
|
||||
},
|
||||
],
|
||||
series: [
|
||||
{
|
||||
z: 1,
|
||||
yAxisIndex: 0,
|
||||
name: "困难残疾人生活补贴人数",
|
||||
data: data.list1,
|
||||
barWidth: 18,
|
||||
barGap: "-50%",
|
||||
type: "bar",
|
||||
itemStyle: {
|
||||
color: {
|
||||
type: "linear",
|
||||
x: 0,
|
||||
x2: 1,
|
||||
y: 0,
|
||||
y2: 0,
|
||||
colorStops: [
|
||||
{ offset: 0, color: "rgba(142, 187, 255, .7)" },
|
||||
{ offset: 0.5, color: "rgba(142, 187, 255, .7)" },
|
||||
{ offset: 0.5, color: "rgba(142, 187, 255, .3)" },
|
||||
{ offset: 1, color: "rgba(142, 187, 255, .5)" },
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
// {
|
||||
// yAxisIndex: 0,
|
||||
// name: "护理补贴人数",
|
||||
// data: data2,
|
||||
// barWidth: 10,
|
||||
// type: "bar",
|
||||
// itemStyle: {
|
||||
// color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||
// {
|
||||
// offset: 0,
|
||||
// color: "rgba(23, 237, 255, 1)",
|
||||
// },
|
||||
// {
|
||||
// offset: 1,
|
||||
// color: "rgba(23, 237, 255, 0.20)",
|
||||
// },
|
||||
// ]),
|
||||
// },
|
||||
// },
|
||||
// {
|
||||
// yAxisIndex: 1,
|
||||
// name: "困难残疾人生活补贴金额",
|
||||
// data: lineData,
|
||||
// type: "line", //线状图
|
||||
// itemStyle: {
|
||||
// borderColor: "#00FCFF",
|
||||
// borderWidth: 1,
|
||||
// color: "#00FCFF",
|
||||
// },
|
||||
// },
|
||||
// {
|
||||
// yAxisIndex: 1,
|
||||
// name: "护理补贴金额",
|
||||
// data: lineData2,
|
||||
// type: "line", //线状图
|
||||
// itemStyle: {
|
||||
// borderColor: "#00FCFF",
|
||||
// borderWidth: 1,
|
||||
// color: "#2468FF",
|
||||
// },
|
||||
// },
|
||||
// {
|
||||
// yAxisIndex: 2,
|
||||
// xAxisIndex: 1,
|
||||
// itemStyle: {
|
||||
// color: "rgba(180, 180, 180, 0.2)", //外阴影背景
|
||||
// },
|
||||
// data: data.map(() => 100),
|
||||
// barWidth: 60, //外阴影背景宽
|
||||
// emphasis: {
|
||||
// itemStyle: {
|
||||
// color: {
|
||||
// type: "linear",
|
||||
// x: 0,
|
||||
// x2: 0,
|
||||
// y: 0,
|
||||
// y2: 1,
|
||||
// colorStops: [
|
||||
// {
|
||||
// offset: 0,
|
||||
// color: "rgba(64, 247, 176, 0.25)",
|
||||
// },
|
||||
// {
|
||||
// offset: 1,
|
||||
// color: "rgba(17, 34, 64, 0.25)",
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
// },
|
||||
// },
|
||||
// type: "bar",
|
||||
// },
|
||||
// ],
|
||||
// };
|
||||
// }
|
||||
{
|
||||
z: 2,
|
||||
yAxisIndex: 0,
|
||||
name: "护理补贴人数",
|
||||
data: data.list2,
|
||||
barWidth: 18,
|
||||
barGap: "-50%",
|
||||
type: "bar",
|
||||
itemStyle: {
|
||||
color: {
|
||||
type: "linear",
|
||||
x: 0,
|
||||
x2: 1,
|
||||
y: 0,
|
||||
y2: 0,
|
||||
colorStops: [
|
||||
{ offset: 0, color: "rgba(23, 237, 255, .7)" },
|
||||
{ offset: 0.5, color: "rgba(23, 237, 255, .7)" },
|
||||
{ offset: 0.5, color: "rgba(23, 237, 255, .3)" },
|
||||
{ offset: 1, color: "rgba(23, 237, 255, .5)" },
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
yAxisIndex: 1,
|
||||
name: "困难残疾人生活补贴金额",
|
||||
data: data.lineData,
|
||||
type: "line", //线状图
|
||||
itemStyle: {
|
||||
borderColor: "#00FCFF",
|
||||
borderWidth: 1,
|
||||
color: "#00FCFF",
|
||||
},
|
||||
},
|
||||
{
|
||||
yAxisIndex: 1,
|
||||
name: "护理补贴金额",
|
||||
data: data.lineData2,
|
||||
type: "line", //线状图
|
||||
itemStyle: {
|
||||
borderColor: "#00FCFF",
|
||||
borderWidth: 1,
|
||||
color: "#2468FF",
|
||||
},
|
||||
},
|
||||
{
|
||||
yAxisIndex: 2,
|
||||
xAxisIndex: 1,
|
||||
itemStyle: {
|
||||
color: "rgba(180, 180, 180, 0.2)", //外阴影背景
|
||||
},
|
||||
data: data.month.map(() => 100),
|
||||
barWidth: 60, //外阴影背景宽
|
||||
emphasis: {
|
||||
itemStyle: {
|
||||
color: {
|
||||
type: "linear",
|
||||
x: 0,
|
||||
x2: 0,
|
||||
y: 0,
|
||||
y2: 1,
|
||||
colorStops: [
|
||||
{
|
||||
offset: 0,
|
||||
color: "rgba(64, 247, 176, 0.25)",
|
||||
},
|
||||
{
|
||||
offset: 1,
|
||||
color: "rgba(17, 34, 64, 0.25)",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
type: "bar",
|
||||
},
|
||||
{
|
||||
z: 1,
|
||||
name: "上部1",
|
||||
type: "pictorialBar",
|
||||
symbolPosition: "end",
|
||||
data: data.list1,
|
||||
symbol: "diamond",
|
||||
symbolOffset: ["-25%", "-50%"],
|
||||
symbolSize: [18, 12],
|
||||
itemStyle: {
|
||||
borderColor: "#2fffa4",
|
||||
color: "rgba(142, 187, 255, 1)",
|
||||
},
|
||||
},
|
||||
{
|
||||
z: 2,
|
||||
name: "上部2",
|
||||
type: "pictorialBar",
|
||||
symbolPosition: "end",
|
||||
data: data.list2,
|
||||
symbol: "diamond",
|
||||
symbolOffset: [4, "-50%"],
|
||||
symbolSize: [18, 12],
|
||||
itemStyle: {
|
||||
borderColor: "#32ffee",
|
||||
color: "rgba(23, 237, 255, 1)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
};
|
||||
|
||||
// 使用生命钩子
|
||||
// onMounted(() => {
|
||||
// // 基于准备好的dom,初始化echarts实例
|
||||
// // var myChart = echarts.init(document.getElementById('main'));
|
||||
// // Vue3中: 需要引入
|
||||
// var myChart = echarts.init(chart.value);
|
||||
const setChart = () => {
|
||||
var myChart = echarts.init(chart.value);
|
||||
myChart.setOption(data.option);
|
||||
};
|
||||
|
||||
// // init(); // vue3.2没有this
|
||||
// // 使用刚指定的配置项和数据显示图表。
|
||||
// myChart.setOption(option);
|
||||
|
||||
// // 单图表响应式: 跟随浏览器大小改变
|
||||
// // window.addEventListener("resize", () => {
|
||||
// // myChart.resize();
|
||||
// // });
|
||||
// });
|
||||
|
||||
// const setChart = () => {
|
||||
// var myChart = echarts.init(chart.value);
|
||||
// myChart.setOption(data.option);
|
||||
// };
|
||||
|
||||
// const setChart1 = () => {
|
||||
// data.list1 = [];
|
||||
// data.list2 = [];
|
||||
// data.list.data.forEach((item) => {
|
||||
// data.list1.push(item.jzrs); //补贴人数
|
||||
// data.list2.push(item.jzje); //补贴金额
|
||||
// });
|
||||
// // console.log("补贴人2", data.list1, data.list2);
|
||||
// };
|
||||
// watch(
|
||||
// () => props.list,
|
||||
// (newVal, oldVal) => {
|
||||
// data.list = newVal;
|
||||
// // console.log("补贴人1", data.list);
|
||||
// setChart1();
|
||||
// getOption();
|
||||
// setChart();
|
||||
// }
|
||||
// );
|
||||
const setChart1 = () => {
|
||||
data.list1 = [];
|
||||
data.list2 = [];
|
||||
data.lineData = [];
|
||||
data.lineData2 = [];
|
||||
data.list.data.forEach((item) => {
|
||||
data.list1.push(item.shbtrs); //困难残疾人生活补贴人数
|
||||
data.list2.push(item.hlbtrs); //护理补贴人数
|
||||
data.lineData.push(item.shbtje); //困难残疾人生活补贴金额
|
||||
data.lineData2.push(item.hlbtje); //护理补贴金额
|
||||
});
|
||||
data.month = data.list.month.map((item) => item + "月");
|
||||
// console.log("补贴人2", data.list1, data.list2);
|
||||
};
|
||||
|
||||
// 使用生命钩子
|
||||
onBeforeMount(() => {
|
||||
setTimeout(() => {
|
||||
data.list = props.list;
|
||||
// setChart1();
|
||||
console.log(data.list, "残疾人补助信息");
|
||||
// getOption();
|
||||
// setChart();
|
||||
setChart1();
|
||||
getOption();
|
||||
setChart();
|
||||
}, 600);
|
||||
});
|
||||
</script>
|
||||
|
|
347
src/view/sy.vue
347
src/view/sy.vue
|
@ -15,13 +15,16 @@
|
|||
</div>
|
||||
<div class="item_content">
|
||||
<div class="sr">
|
||||
<span class="left">收入:</span><span class="right">{{ data.LivelihoodWelfare.zgylbxzsr }}万元</span>
|
||||
</div>
|
||||
<div
|
||||
class="sr"
|
||||
style="margin-top: 5px"
|
||||
<span class="left">收入:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.zgylbxzsr }}万元</span
|
||||
>
|
||||
</div>
|
||||
<div class="sr" style="margin-top: 5px">
|
||||
<span class="left">支出:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.zgylbxzzc }}万元</span
|
||||
>
|
||||
<span class="left">支出:</span><span class="right">{{ data.LivelihoodWelfare.zgylbxzzc }}万元</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -29,13 +32,16 @@
|
|||
<div class="item_title"><span class="blue">工伤</span>保险</div>
|
||||
<div class="item_content">
|
||||
<div class="sr">
|
||||
<span class="left">收入:</span><span class="right">{{ data.LivelihoodWelfare.gsbxzsr }}万元</span>
|
||||
</div>
|
||||
<div
|
||||
class="sr"
|
||||
style="margin-top: 5px"
|
||||
<span class="left">收入:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.gsbxzsr }}万元</span
|
||||
>
|
||||
</div>
|
||||
<div class="sr" style="margin-top: 5px">
|
||||
<span class="left">支出:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.gsbxzzc }}万元</span
|
||||
>
|
||||
<span class="left">支出:</span><span class="right">{{ data.LivelihoodWelfare.gsbxzzc }}万元</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -45,13 +51,16 @@
|
|||
</div>
|
||||
<div class="item_content">
|
||||
<div class="sr">
|
||||
<span class="left">收入:</span><span class="right">{{ data.LivelihoodWelfare.cxylbxzsr }}万元</span>
|
||||
</div>
|
||||
<div
|
||||
class="sr"
|
||||
style="margin-top: 5px"
|
||||
<span class="left">收入:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.cxylbxzsr }}万元</span
|
||||
>
|
||||
</div>
|
||||
<div class="sr" style="margin-top: 5px">
|
||||
<span class="left">支出:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.cxylbxzzc }}万元</span
|
||||
>
|
||||
<span class="left">支出:</span><span class="right">{{ data.LivelihoodWelfare.cxylbxzzc }}万元</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -61,13 +70,16 @@
|
|||
</div>
|
||||
<div class="item_content">
|
||||
<div class="sr">
|
||||
<span class="left">收入:</span><span class="right">{{ data.LivelihoodWelfare.zgyilbxzsr }}万元</span>
|
||||
</div>
|
||||
<div
|
||||
class="sr"
|
||||
style="margin-top: 5px"
|
||||
<span class="left">收入:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.zgyilbxzsr }}万元</span
|
||||
>
|
||||
</div>
|
||||
<div class="sr" style="margin-top: 5px">
|
||||
<span class="left">支出:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.zgyilbxzzc }}万元</span
|
||||
>
|
||||
<span class="left">支出:</span><span class="right">{{ data.LivelihoodWelfare.zgyilbxzzc }}万元</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -77,13 +89,16 @@
|
|||
</div>
|
||||
<div class="item_content">
|
||||
<div class="sr">
|
||||
<span class="left">收入:</span><span class="right">{{ data.LivelihoodWelfare.cxyilbxzsr }}万元</span>
|
||||
</div>
|
||||
<div
|
||||
class="sr"
|
||||
style="margin-top: 5px"
|
||||
<span class="left">收入:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.cxyilbxzsr }}万元</span
|
||||
>
|
||||
</div>
|
||||
<div class="sr" style="margin-top: 5px">
|
||||
<span class="left">支出:</span
|
||||
><span class="right"
|
||||
>{{ data.LivelihoodWelfare.cxyilbxzzc }}万元</span
|
||||
>
|
||||
<span class="left">支出:</span><span class="right">{{ data.LivelihoodWelfare.cxyilbxzzc }}万元</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -100,10 +115,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex1"
|
||||
style="margin-top: 10px"
|
||||
>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="yd_title left_2">
|
||||
<div class="animate-border">
|
||||
<i></i>
|
||||
|
@ -128,41 +140,35 @@
|
|||
<div class="left_2_bottom_item">
|
||||
<div class="left_2_bottom_item_shang">
|
||||
<div class="left">
|
||||
<span class="span1">{{ jysyList[0].title }}</span>学校师生比
|
||||
<span class="span1">{{ jysyList[0].title }}</span
|
||||
>学校师生比
|
||||
</div>
|
||||
<div class="right">
|
||||
<span class="span1">{{ jysyList[0].teacher }}</span>:{{ jysyList[0].student }}
|
||||
<span class="span1">{{ jysyList[0].teacher }}</span
|
||||
>:{{ jysyList[0].student }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="left_2_bottom_item_xia">
|
||||
<div
|
||||
class="csbl"
|
||||
:style="cs"
|
||||
></div>
|
||||
<div class="csbl" :style="cs"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="left_2_bottom_item">
|
||||
<div class="left_2_bottom_item_shang">
|
||||
<div class="left">
|
||||
<span class="span2">{{ jysyList[1].title }}</span>学校师生比
|
||||
<span class="span2">{{ jysyList[1].title }}</span
|
||||
>学校师生比
|
||||
</div>
|
||||
<div class="right">
|
||||
{{ jysyList[1].teacher }}:{{ jysyList[1].student }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="left_2_bottom_item_xia">
|
||||
<div
|
||||
class="ncbl"
|
||||
:style="nc"
|
||||
></div>
|
||||
<div class="ncbl" :style="nc"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex1"
|
||||
style="margin-top: 10px"
|
||||
>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="yd_title left_3">
|
||||
<div class="animate-border">
|
||||
<i></i>
|
||||
|
@ -207,47 +213,24 @@
|
|||
/>
|
||||
<div class="people_total_item left">
|
||||
<div class="number">{{ data.PopulationData.man }}</div>
|
||||
<img
|
||||
src="../assets/images/sy/man.png"
|
||||
alt=""
|
||||
/>
|
||||
<img src="../assets/images/sy/man.png" alt="" />
|
||||
<div class="sex">男性人口</div>
|
||||
<img
|
||||
class="sexMove"
|
||||
src="../assets/images/sy/sexImg.png"
|
||||
alt=""
|
||||
/>
|
||||
<img class="sexMove" src="../assets/images/sy/sexImg.png" alt="" />
|
||||
</div>
|
||||
<div class="people_total_item2 center">
|
||||
<img
|
||||
src="../assets/images/sy/people_total.png"
|
||||
alt=""
|
||||
/>
|
||||
<img src="../assets/images/sy/people_total.png" alt="" />
|
||||
<div class="number">{{ data.PopulationData.rkzs }}</div>
|
||||
<div class="total">人口总数</div>
|
||||
</div>
|
||||
<div class="people_total_item right">
|
||||
<div class="number">{{ data.PopulationData.woman }}</div>
|
||||
<img
|
||||
src="../assets/images/sy/woman.png"
|
||||
alt=""
|
||||
/>
|
||||
<img src="../assets/images/sy/woman.png" alt="" />
|
||||
<div class="sex">女性人口</div>
|
||||
<img
|
||||
class="sexMove"
|
||||
src="../assets/images/sy/sexImg.png"
|
||||
alt=""
|
||||
/>
|
||||
<img class="sexMove" src="../assets/images/sy/sexImg.png" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
<ePie2
|
||||
style="margin-top: 20px"
|
||||
:list="data.ageRatio"
|
||||
></ePie2>
|
||||
<ePie
|
||||
style="margin-bottom: 20px"
|
||||
:list="data.ageGroup"
|
||||
></ePie>
|
||||
<ePie2 style="margin-top: 20px" :list="data.ageRatio"></ePie2>
|
||||
<ePie style="margin-bottom: 20px" :list="data.ageGroup"></ePie>
|
||||
<div class="table">
|
||||
<div class="table_choose">
|
||||
<div
|
||||
|
@ -277,20 +260,13 @@
|
|||
:header-cell-style="tableHeaderColor"
|
||||
v-if="choose == '1'"
|
||||
>
|
||||
<el-table-column
|
||||
prop="company"
|
||||
label="企业名称"
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column prop="company" label="企业名称" width="200" />
|
||||
<el-table-column
|
||||
prop="address"
|
||||
label="项目事项牵头单位"
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="finish"
|
||||
label="完成情况"
|
||||
>
|
||||
<el-table-column prop="finish" label="完成情况">
|
||||
<template #default="scope">
|
||||
<div
|
||||
style="letter-spacing: 3px"
|
||||
|
@ -301,10 +277,24 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="qyfw" v-if="choose == '2'">
|
||||
<div
|
||||
class="zwfw"
|
||||
v-if="choose == '3'"
|
||||
class="qyfw_item"
|
||||
v-for="(item, index) in qyfyList"
|
||||
:key="index"
|
||||
>
|
||||
<img class="qyfw_item_left" :src="item.img" />
|
||||
<div class="qyfw_item_right">
|
||||
<div class="name">{{ item.name }}</div>
|
||||
<img class="line" src="@/assets/images/sy/zwfw_line.png" />
|
||||
<div class="number">
|
||||
<span>{{ item.value }}</span
|
||||
>{{ item.dw }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="zwfw" v-if="choose == '3'">
|
||||
<div class="shang">
|
||||
<div class="shang_item">
|
||||
<div class="title">一网通办事</div>
|
||||
|
@ -327,31 +317,19 @@
|
|||
</div>
|
||||
<div class="xia">
|
||||
<div class="xia_item">
|
||||
<img
|
||||
class="left"
|
||||
src="@/assets/images/sy/zwfw_sl.png"
|
||||
/>
|
||||
<img class="left" src="@/assets/images/sy/zwfw_sl.png" />
|
||||
<div class="right">
|
||||
<div class="name">平均受理时长</div>
|
||||
<img
|
||||
class="line"
|
||||
src="@/assets/images/sy/zwfw_line.png"
|
||||
/>
|
||||
<img class="line" src="@/assets/images/sy/zwfw_line.png" />
|
||||
<div class="time"><span>0.22</span>小时</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="fgx"></div>
|
||||
<div class="xia_item">
|
||||
<img
|
||||
class="left"
|
||||
src="@/assets/images/sy/zwfw_bl.png"
|
||||
/>
|
||||
<img class="left" src="@/assets/images/sy/zwfw_bl.png" />
|
||||
<div class="right">
|
||||
<div class="name">平均办理时长</div>
|
||||
<img
|
||||
class="line"
|
||||
src="@/assets/images/sy/zwfw_line.png"
|
||||
/>
|
||||
<img class="line" src="@/assets/images/sy/zwfw_line.png" />
|
||||
<div class="time"><span>0.54</span>小时</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -379,10 +357,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex1"
|
||||
style="margin-top: 10px"
|
||||
>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="yd_title service">
|
||||
<div class="animate-border">
|
||||
<i></i>
|
||||
|
@ -402,10 +377,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex1"
|
||||
style="margin-top: 10px"
|
||||
>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="yd_title last">
|
||||
<div class="animate-border">
|
||||
<i></i>
|
||||
|
@ -430,10 +402,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex1"
|
||||
style="margin-top: 10px"
|
||||
>
|
||||
<div class="flex1" style="margin-top: 10px">
|
||||
<div class="yd_title last_1">
|
||||
<div class="animate-border">
|
||||
<i></i>
|
||||
|
@ -462,15 +431,8 @@
|
|||
<div class="jtsyBox">
|
||||
<div class="jtsyBoxtop">
|
||||
<div class="jtsyBoxtop1">
|
||||
<img
|
||||
:src="data.jtsyList[0].img"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
src="../assets/images/sy/jtsy.gif"
|
||||
class="turn"
|
||||
alt=""
|
||||
/>
|
||||
<img :src="data.jtsyList[0].img" alt="" />
|
||||
<img src="../assets/images/sy/jtsy.gif" class="turn" alt="" />
|
||||
<div>
|
||||
<div class="jtsyname">{{ data.jtsyList[0].name }}</div>
|
||||
<div class="jtsytext">
|
||||
|
@ -484,15 +446,8 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="jtsyBoxtop1">
|
||||
<img
|
||||
:src="data.jtsyList[1].img"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
src="../assets/images/sy/jtsy.gif"
|
||||
class="turn"
|
||||
alt=""
|
||||
/>
|
||||
<img :src="data.jtsyList[1].img" alt="" />
|
||||
<img src="../assets/images/sy/jtsy.gif" class="turn" alt="" />
|
||||
<div>
|
||||
<div class="jtsyname">{{ data.jtsyList[1].name }}</div>
|
||||
<div class="jtsytext">
|
||||
|
@ -508,15 +463,8 @@
|
|||
</div>
|
||||
<div class="jtsyBoxbot">
|
||||
<div class="jtsyBoxtop1">
|
||||
<img
|
||||
:src="data.jtsyList[2].img"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
src="../assets/images/sy/jtsy.gif"
|
||||
class="turn"
|
||||
alt=""
|
||||
/>
|
||||
<img :src="data.jtsyList[2].img" alt="" />
|
||||
<img src="../assets/images/sy/jtsy.gif" class="turn" alt="" />
|
||||
<div>
|
||||
<div class="jtsyname">{{ data.jtsyList[2].name }}</div>
|
||||
<div class="jtsytext">
|
||||
|
@ -530,15 +478,8 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="jtsyBoxtop1">
|
||||
<img
|
||||
:src="data.jtsyList[3].img"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
src="../assets/images/sy/jtsy.gif"
|
||||
class="turn"
|
||||
alt=""
|
||||
/>
|
||||
<img :src="data.jtsyList[3].img" alt="" />
|
||||
<img src="../assets/images/sy/jtsy.gif" class="turn" alt="" />
|
||||
<div>
|
||||
<div class="jtsyname">{{ data.jtsyList[3].name }}</div>
|
||||
<div class="jtsytext">
|
||||
|
@ -552,15 +493,8 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="jtsyBoxtop1">
|
||||
<img
|
||||
:src="data.jtsyList[4].img"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
src="../assets/images/sy/jtsy.gif"
|
||||
class="turn"
|
||||
alt=""
|
||||
/>
|
||||
<img :src="data.jtsyList[4].img" alt="" />
|
||||
<img src="../assets/images/sy/jtsy.gif" class="turn" alt="" />
|
||||
<div>
|
||||
<div class="jtsyname">{{ data.jtsyList[4].name }}</div>
|
||||
<div class="jtsytext">
|
||||
|
@ -627,7 +561,10 @@ import { ref, reactive, onMounted, onBeforeMount, computed } from "vue";
|
|||
import http from "@/utils/request.js";
|
||||
import { CircleCloseFilled } from "@element-plus/icons-vue";
|
||||
import { columns } from "element-plus/es/components/table-v2/src/common.mjs";
|
||||
|
||||
import qyfw1 from "../assets/images/sy/ljzcs.png";
|
||||
import qyfw2 from "../assets/images/sy/rzbms.png";
|
||||
import qyfw3 from "../assets/images/sy/shqys.png";
|
||||
import qyfw4 from "../assets/images/sy/dxje.png";
|
||||
// 详情弹框
|
||||
const dialogShow = ref(false);
|
||||
//表格列
|
||||
|
@ -1103,13 +1040,15 @@ const jtsyList = ref([
|
|||
|
||||
// 县城学校师生比样式
|
||||
const cs = computed(() => {
|
||||
let str = `--teacher: ${jysyList.value[0].teacher}; --total: ${jysyList.value[0].teacher + jysyList.value[0].student
|
||||
let str = `--teacher: ${jysyList.value[0].teacher}; --total: ${
|
||||
jysyList.value[0].teacher + jysyList.value[0].student
|
||||
}`;
|
||||
return str;
|
||||
});
|
||||
// 农村学校师生比样式
|
||||
const nc = computed(() => {
|
||||
let str = `--teacher: ${jysyList.value[1].teacher}; --total: ${jysyList.value[1].teacher + jysyList.value[1].student
|
||||
let str = `--teacher: ${jysyList.value[1].teacher}; --total: ${
|
||||
jysyList.value[1].teacher + jysyList.value[1].student
|
||||
}`;
|
||||
return str;
|
||||
});
|
||||
|
@ -1277,6 +1216,33 @@ const getTable = (url, currentPage) => {
|
|||
}
|
||||
});
|
||||
};
|
||||
//企业服务
|
||||
const qyfyList = reactive([
|
||||
{
|
||||
name: "累计政策数",
|
||||
value: "273",
|
||||
dw: "个",
|
||||
img: qyfw1,
|
||||
},
|
||||
{
|
||||
name: "入住部门数",
|
||||
value: "35",
|
||||
dw: "个",
|
||||
img: qyfw2,
|
||||
},
|
||||
{
|
||||
name: "受惠企业数",
|
||||
value: "1084",
|
||||
dw: "个",
|
||||
img: qyfw3,
|
||||
},
|
||||
{
|
||||
name: "累计已兑现资金额",
|
||||
value: "18.54",
|
||||
dw: "亿元",
|
||||
img: qyfw4,
|
||||
},
|
||||
]);
|
||||
onBeforeMount(async () => {
|
||||
getData();
|
||||
});
|
||||
|
@ -2245,6 +2211,55 @@ onBeforeMount(async () => {
|
|||
}
|
||||
}
|
||||
}
|
||||
//企业服务
|
||||
.qyfw {
|
||||
height: 272px;
|
||||
height: 272px;
|
||||
box-sizing: border-box;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 4px;
|
||||
border: 0px solid #7aceff;
|
||||
padding: 16px 19px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.qyfw_item {
|
||||
width: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
// justify-content: center;
|
||||
.qyfw_item_left {
|
||||
width: 104px;
|
||||
height: 72px;
|
||||
}
|
||||
.qyfw_item_right {
|
||||
margin-top: 5px;
|
||||
margin-left: 5px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.name {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
color: #ffffff;
|
||||
line-height: 20px;
|
||||
}
|
||||
.line {
|
||||
margin: 10px 0;
|
||||
width: 100px;
|
||||
}
|
||||
.number {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
color: #ffffff;
|
||||
line-height: 20px;
|
||||
span {
|
||||
font-size: 18px;
|
||||
margin-right: 3px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//政务服务
|
||||
.zwfw {
|
||||
height: 272px;
|
||||
|
|
|
@ -131,9 +131,8 @@
|
|||
困难职工
|
||||
</div>
|
||||
</div>
|
||||
<eP4 :list="data.list1"></eP4>
|
||||
<!-- <eP6 v-if="jz[2].choose == '1'" :list="data.difficultSoldiers"></eP6>
|
||||
<eP5 v-if="jz[2].choose == '2'" :list="data.difficultSoldiers"></eP5> -->
|
||||
<eP6 v-if="jz[2].choose == '1'" :list="data.list1"></eP6>
|
||||
<eP4 v-else :list="data.list1"></eP4>
|
||||
</div>
|
||||
<div class="flex1">
|
||||
<div class="yd_title right_2">
|
||||
|
@ -212,7 +211,7 @@ const jzChange = (index, value) => {
|
|||
data.list = value === "1" ? data.housing : data.temporary;
|
||||
} else if (index === 2) {
|
||||
const listMap = {
|
||||
1: data.needyWorkers1,
|
||||
1: data.disabilitySubsidies,
|
||||
2: data.difficultSoldiers,
|
||||
3: data.needyWorkers,
|
||||
};
|
||||
|
@ -276,7 +275,7 @@ const data = reactive({
|
|||
salvation: {
|
||||
data: [
|
||||
{
|
||||
tkjzje:"868.4888", //特困救助金额
|
||||
tkjzje: "868.4888", //特困救助金额
|
||||
tkjzrs: "9430", //特困救助人数
|
||||
dbjzrs: "9430", //低保救助人数
|
||||
dbjzje: "868.4888", //低保救助金额
|
||||
|
@ -285,17 +284,19 @@ const data = reactive({
|
|||
],
|
||||
month: ["1"],
|
||||
}, //生活类救助模块
|
||||
difficultSoldiers: {
|
||||
//困难残疾人补助信息
|
||||
disabilitySubsidies: {
|
||||
data: [
|
||||
{
|
||||
nf: "2019", //补贴年份
|
||||
jzrs: "62", //补贴人数
|
||||
jzje: "6.24", //补贴金额 万元
|
||||
},
|
||||
// {
|
||||
// nf: "2019", //补贴年份
|
||||
// jzrs: "62", //补贴人数
|
||||
// jzje: "6.24", //补贴金额 万元
|
||||
// },
|
||||
],
|
||||
year: ["2019"],
|
||||
}, //困难军人
|
||||
needyWorkers1: {
|
||||
month: ["1"],
|
||||
},
|
||||
//困难军人
|
||||
difficultSoldiers: {
|
||||
data: [
|
||||
{
|
||||
nf: "2019", //补贴年份
|
||||
|
@ -304,7 +305,8 @@ const data = reactive({
|
|||
},
|
||||
],
|
||||
year: ["2019"],
|
||||
}, //困难残疾人补助信息
|
||||
},
|
||||
//困难职工补助信息
|
||||
needyWorkers: {
|
||||
data: [
|
||||
{
|
||||
|
@ -314,7 +316,7 @@ const data = reactive({
|
|||
},
|
||||
],
|
||||
year: ["2019"],
|
||||
}, //困难职工补助信息
|
||||
},
|
||||
diversification: {
|
||||
hszhxms: [
|
||||
{
|
||||
|
@ -372,15 +374,20 @@ const getData = async () => {
|
|||
data.salvation = res.data.lifeAssistance.jz;
|
||||
// 弱势群体补贴
|
||||
// 困难残疾人&困难军人&困难职工
|
||||
//困难残疾人
|
||||
data.disabilitySubsidies.data =
|
||||
res.data.underprivileged.disabilitySubsidies.data;
|
||||
data.disabilitySubsidies.month =
|
||||
res.data.underprivileged.disabilitySubsidies.month;
|
||||
// 困难军人
|
||||
data.difficultSoldiers.data =
|
||||
res.data.underprivileged.difficultSoldiers.data;
|
||||
data.difficultSoldiers.data = res.data.underprivileged.difficultSoldiers.data;
|
||||
data.difficultSoldiers.year =
|
||||
res.data.underprivileged.difficultSoldiers.year;
|
||||
// 困难职工
|
||||
data.needyWorkers.data = res.data.underprivileged.needyWorkers.data;
|
||||
data.needyWorkers.year = res.data.underprivileged.needyWorkers.year;
|
||||
data.list1 = data.needyWorkers1;
|
||||
//初试默认残疾人
|
||||
data.list1 = data.disabilitySubsidies;
|
||||
|
||||
// 多元化力量参与
|
||||
data.diversification.hszhxms = res.data.diversification.hszhxms;
|
||||
|
|
Loading…
Reference in New Issue