Compare commits

...

2 Commits

Author SHA1 Message Date
duanxiaohai de0347a616 Merge branch 'main' of https://git.cityme.com.cn/xiangshan/ggfwjsc 2024-10-24 10:56:14 +08:00
duanxiaohai 0cdd91817d gx 2024-10-24 10:56:10 +08:00
7 changed files with 326 additions and 311 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 110 KiB

View File

@ -66,7 +66,10 @@
:data="data.tableData" :data="data.tableData"
height="390px" height="390px"
max-height="390" max-height="390"
:header-cell-style="{ background: 'rgba(0, 143, 205, 0.63)', fontSize:' 22px' }" :header-cell-style="{
background: 'rgba(0, 143, 205, 0.63)',
fontSize: ' 22px',
}"
:row-style="rowState" :row-style="rowState"
@row-click="handleRowClick" @row-click="handleRowClick"
stripe stripe
@ -298,6 +301,17 @@ watch(
(match, name) => `${maskName(name.trim())}` (match, name) => `${maskName(name.trim())}`
); );
} }
//
function maskPhoneNumber(phone) {
return phone.replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2");
}
function maskYwfzrsj(ywfzrsj) {
return ywfzrsj
.split(",")
.map((phone) => maskPhoneNumber(phone.trim()))
.join(",");
}
if (props.tableData.data.wxs.length > 0) { if (props.tableData.data.wxs.length > 0) {
props.tableData.data.wxs.forEach((item, index) => { props.tableData.data.wxs.forEach((item, index) => {
let obj = { let obj = {
@ -308,7 +322,8 @@ watch(
qtbm: item.qtbm, qtbm: item.qtbm,
zrks: item.zrks, zrks: item.zrks,
ywfzr: maskName(item.ywfzr), ywfzr: maskName(item.ywfzr),
fgldsj: item.fgldsj.replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2"), ywfzrsj: maskYwfzrsj(item.ywfzrsj),
// ywfzrsj: item.ywfzrsj.replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2"),
}; };
data.tableData.push(obj); data.tableData.push(obj);
}); });
@ -324,8 +339,8 @@ watch(
qtbm: item.qtbm, qtbm: item.qtbm,
zrks: item.zrks, zrks: item.zrks,
ywfzr: maskName(item.ywfzr), ywfzr: maskName(item.ywfzr),
// fgldsj: item.fgldsj, // ywfzrsj: item.ywfzrsj,
fgldsj: item.fgldsj.replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2"), ywfzrsj: maskYwfzrsj(item.ywfzrsj),
}; };
data.tableData.push(obj); data.tableData.push(obj);
}); });

View File

@ -19,13 +19,13 @@ const props = defineProps({
const chart = ref(); // DOM const chart = ref(); // DOM
const colors = [ const colors = [
// { {
// left: "rgba(234, 162, 57, .16)", left: "rgba(234, 162, 57, .16)",
// right: "rgba(234, 162, 57, .6)", right: "rgba(234, 162, 57, .6)",
// top: "rgba(234, 162, 57, 1)", top: "rgba(234, 162, 57, 1)",
// bottom: "rgba(234, 162, 57, .46)", bottom: "rgba(234, 162, 57, .46)",
// front: "rgba(234, 162, 57, .66)", front: "rgba(234, 162, 57, .66)",
// }, },
{ {
left: "rgba(14, 252, 255, .16)", left: "rgba(14, 252, 255, .16)",
right: "rgba(14, 252, 255, .6)", right: "rgba(14, 252, 255, .6)",
@ -38,7 +38,7 @@ const colors = [
const data = reactive({ const data = reactive({
list: [], list: [],
option: {}, option: {},
Max: 20000, Max: 100000,
valueList: [4504, 16086, 6130, 2844, 4967, 179, 1685, 5010], valueList: [4504, 16086, 6130, 2844, 4967, 179, 1685, 5010],
valueList2: [1181, 2177, 3720, 3711, 4642, 1654, 3395, 5552], valueList2: [1181, 2177, 3720, 3711, 4642, 1654, 3395, 5552],
xxname: ["2020", "2021", "2022", "2023"], xxname: ["2020", "2021", "2022", "2023"],
@ -267,7 +267,7 @@ const getOption = () => {
"育龄妇女", "育龄妇女",
], ],
top: "0%", top: "0%",
right: "30%", // right: "0%",
textStyle: { textStyle: {
fontSize: 16, fontSize: 16,
color: "#ffffff", color: "#ffffff",
@ -279,10 +279,10 @@ const getOption = () => {
formatter: "{b0}:</br>{a0}:{c0}", formatter: "{b0}:</br>{a0}:{c0}",
}, },
grid: { grid: {
left: 0, left: 20,
right: 0, right: 40,
bottom: 10, bottom: 10,
top: 40, top: 60,
containLabel: true, containLabel: true,
}, },
xAxis: [ xAxis: [
@ -326,7 +326,6 @@ const getOption = () => {
], ],
yAxis: { yAxis: {
min: 0, min: 0,
max: data.Max,
// interval: 100, // interval: 100,
type: "value", type: "value",
axisLine: { axisLine: {
@ -538,45 +537,6 @@ const getOption = () => {
}, },
data: data.valueList2, data: data.valueList2,
}, },
//
{
type: "bar",
xAxisIndex: 1,
label: {
show: true,
fontSize: 18,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value - 5;
},
},
itemStyle: {
color: "rgba(221, 242, 255, 0)",
},
data: data.valueList.map((item) => parseInt(item) + 5),
barWidth: 30,
},
{
type: "bar",
xAxisIndex: 1,
label: {
show: true,
fontSize: 18,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value - 5;
},
},
itemStyle: {
color: "rgba(221, 242, 255, 0)",
},
data: data.valueList2.map((item) => parseInt(item) + 5),
barWidth: 20,
},
], ],
}; };
}; };
@ -603,9 +563,9 @@ const setChart1 = () => {
}; };
onBeforeMount(() => { onBeforeMount(() => {
setTimeout(() => {
data.xxname = props.list.year; data.xxname = props.list.year;
data.valueList2 = props.list.data; data.valueList2 = props.list.data;
setTimeout(() => {
// data.valueList2.forEach((item, index) => { // data.valueList2.forEach((item, index) => {
// props.list.forEach((itemm, indexx) => { // props.list.forEach((itemm, indexx) => {
// if (item == itemm.xzjd) { // if (item == itemm.xzjd) {
@ -614,7 +574,7 @@ onBeforeMount(() => {
// } // }
// }); // });
// }); // });
console.log(6666,props.list); // console.log(6666, props.list);
getOption(); getOption();
setChart(); setChart();

View File

@ -1,245 +1,225 @@
<template> <template>
<div ref="chart" style="width: 100%; height: 350px"></div> <div ref="chart" style="width: 100%; height:410px"></div>
</template> </template>
<script setup> <script setup>
import { import { onMounted, reactive, ref, watch } from "vue";
onMounted,
reactive,
ref,
onBeforeMount,
defineProps,
watch,
} from "vue";
// echarts
import * as echarts from "echarts"; import * as echarts from "echarts";
const chart = ref();
const clear = ref(false);
const props = defineProps({ const props = defineProps({
list: { list: Array,
type: Array, month: Array,
default: () => [],
},
list2: {
type: Array,
default: () => [],
},
year: {
type: Array,
default: () => [],
},
}); });
const data = reactive({ const data = reactive({
list: [], list: [],
list2: [], month: [],
year: [],
option: {}, option: {},
bg: [], name: [],
}); formatter: "{b0}<br />",
const chart = ref(); // DOM
const getOption = () => {
data.option = {
tooltip: {
trigger: "axis",
padding: [20, 10, 20, 10],
formatter: "{b0}<br />{a1}:{c1}<br /> ",
},
legend: {
data: ["出生人数", "高血压人数"],
top: "6%",
right: "11%",
textStyle: {
fontSize: 16,
color: "#ffffff",
},
},
grid: {
top: "25%",
left: "1%",
right: "10%",
bottom: "3%",
containLabel: true,
},
xAxis: {
type: "category",
// boundaryGap: false,
data: data.year,
// splitArea: {
// show: true,
// interval: '10',
// areaStyle: {
// color: ["rgba(255, 255, 255, 0.10)"],
// width:10,
// },
// },
axisLabel: {
//
textStyle: {
color: "#ffffff",
fontSize: 16,
},
},
},
yAxis: {
type: "value",
splitLine: {
show: true,
lineStyle: {
color: "rgba(226, 226, 226, 0.3)",
width: 1,
},
},
axisLabel: {
//
textStyle: {
color: "#ffffff",
fontSize: 16,
},
},
},
series: [ series: [
{ {
name: "背景", name: "背景",
type: "bar", type: "bar",
data: data.bg, data: [],
showBackground: true, showBackground: true,
backgroundStyle: { backgroundStyle: {
color: "rgba(180, 180, 180, 0.2)", color: "rgba(180, 180, 180, 0.2)",
}, },
}, },
{ ],
name: "出生人数", legend: {
type: "line", data: [],
stack: "Total", top: "3%",
symbol: "emptyCircle", right: "10%",
smooth: true, textStyle: {
symbolSize: 10, fontSize: 16,
itemStyle: {
borderColor: "#E8FF00",
borderWidth: 1,
color: "#E8FF00",
},
label: {
show: true,
color: "#ffffff", color: "#ffffff",
position: "top",
formatter: function (data) {
return data.value;
}, },
}, },
areaStyle: { bgColor: [
color: "#F4F65B", "#2468FF",
normal: { "#E8FF00",
//线4x0,y0,x2,y2(0~1);true "#FF5733",
color: new echarts.graphic.LinearGradient( "#33FF57",
0, "#3357FF",
0, "#FF33A1",
0, "#57FF33",
1, "#33FFA1",
[ "#A133FF",
{ "#FF5733",
offset: 0,
// color: 'RGBA(184, 204, 241, 1)'
color: "rgba(255, 234, 90, 0.50)",
},
{
offset: 1,
color: "rgba(255, 234, 90, 0)",
},
], ],
false
),
shadowBlur: 0, //shadowBlurshadowColor,shadowOffsetX/Y,
},
},
data: data.list,
},
{
name: "高血压人数",
type: "line",
stack: "Total",
symbol: "emptyCircle",
smooth: true,
symbolSize: 10,
itemStyle: {
borderColor: "#00FCFF",
borderWidth: 1,
color: "#00FCFF",
},
label: {
show: true,
color: "#ffffff",
position: "top",
formatter: function (data) {
return data.value;
},
},
areaStyle: {
color: "#F4F65B",
normal: {
//线4x0,y0,x2,y2(0~1);true
color: new echarts.graphic.LinearGradient(
0,
0,
0,
1,
[
{
offset: 0,
// color: 'RGBA(184, 204, 241, 1)'
color: "rgba(0, 252, 255, 0.50)",
},
{
offset: 1,
color: "rgba(0, 252, 255, 0)",
},
],
false
),
shadowBlur: 0, //shadowBlurshadowColor,shadowOffsetX/Y,
},
},
data: data.list,
},
],
};
};
watch(
() => props.list,
(newValue, oldValue) => {
setTimeout(() => {
data.list = props.list;
data.list2 = props.list2;
data.year = props.year;
data.bg = [];
data.year.forEach(() => {
data.bg.push(0);
}); });
getOption();
setChart(); const updateSeries = () => {
}, 600); // data.series = [
// {
// name: "",
// type: "bar",
// data: data.month.map(() => 0),
// showBackground: true,
// backgroundStyle: {
// color: "rgba(180, 180, 180, 0.2)",
// },
// },
// ];
if (data.list.length > 0) {
// if (!data.list) {
data.list.forEach((item, index) => {
const color = data.bgColor[index % data.bgColor.length];
data.series.push({
yAxisIndex: 0,
name: item.name,
type: "line",
smooth: true,
symbol: "emptyCircle",
symbolSize: 10,
itemStyle: {
borderColor: color,
borderWidth: 1,
color: color,
},
label: {
show: true,
color: color,
formatter: (data) => data.value,
},
data: item.data,
});
});
} }
);
data.legend.data = data.list.map((item) => item.name);
data.formatter =
"{b0}月<br />" +
data.list.map((_, index) => `{a${index}}:{c${index}}<br />`).join("");
};
const getOption = () => {
data.option = {
tooltip: {
trigger: "axis",
padding: [20, 10, 20, 10],
formatter: data.formatter,
},
legend: data.legend,
grid: {
top: "20%",
left: "6%",
right: "6%",
bottom: "8%",
containLabel: true,
},
xAxis: {
type: "category",
data: data.month,
axisLabel: {
color: "#ffffff",
fontSize: 16,
},
},
yAxis: [
{
type: "value",
// name: "/",
splitLine: {
show: true,
lineStyle: {
color: "rgba(255, 255, 255, 0.2)",
fontSize: 16,
width: 1,
},
},
min: 0,
max: (value) =>
Math.ceil(Math.max(value.max, value.max * 1.2) / 50) * 50,
nameTextStyle: {
fontSize: 14,
},
axisLine: {
show: false,
lineStyle: {
color: "#ffffff",
fontSize: 16,
width: 1,
type: "solid",
},
},
},
{
type: "value",
splitLine: {
show: false,
lineStyle: {
color: "rgba(255, 255, 255, 0.2)",
fontSize: 16,
width: 1,
},
},
min: 0,
max: (value) =>
Math.ceil(Math.max(value.max, value.max * 1.6) / 50) * 50,
nameTextStyle: {
fontSize: 14,
},
axisLabel: {
show: false,
},
axisLine: {
show: false,
lineStyle: {
color: "#ffffff",
fontSize: 16,
width: 1,
type: "solid",
},
},
},
],
series: data.series,
};
};
const setChart = () => { const setChart = () => {
// Vue3 // const myChart = echarts.init(chart.value);
var myChart = echarts.init(chart.value); let myChart = echarts.getInstanceByDom(chart.value);
if (!myChart) {
// 使 myChart = echarts.init(chart.value);
}
if (clear.value) {
myChart.clear();
}
myChart.setOption(data.option); myChart.setOption(data.option);
}; };
onBeforeMount(() => { // watch(
// () => props.list,
// (newVal, oldVal) => {
// if (newVal.length < oldVal.length) {
// clear.value = true;
// } else {
// clear.value = false;
// }
// data.list = newVal;
// updateSeries();
// getOption();
// setChart();
// }
// );
onMounted(() => {
setTimeout(() => { setTimeout(() => {
data.list = props.list; data.list = props.list;
data.list2 = props.list2; data.month = props.month;
data.year = props.year; // console.log(666, data.list, data.month);
data.year.forEach(() => { // data.month.forEach((item) => {
data.bg.push(0); // item = item + "";
}); // });
console.log(data.bg);
updateSeries();
getOption(); getOption();
setChart(); setChart();
}, 600); }, 600);

View File

@ -1,5 +1,5 @@
<template> <template>
<div ref="chart" style="width: 100%; height: 100%"></div> <div ref="chart" style="width: 100%; height:430px"></div>
</template> </template>
<script setup> <script setup>
@ -38,10 +38,10 @@ const colors = [
const data = reactive({ const data = reactive({
list: [], list: [],
option: {}, option: {},
Max: 20000, Max: 5000,
valueList: [4504, 16086, 6130, 2844, 4967, 179, 1685, 5010], valueList: [4504, 16086, 6130, 2844, 4967, 179, 1685, 5010],
valueList2: [1181, 2177, 3720, 3711, 4642, 1654, 3395, 5552], valueList2: [1181, 2177, 3720, 3711, 4642, 1654, 3395, 5552],
xxname: ["2020", "2021", "2022", "2023"], xxname: ["失业登记", "离校未就业", "低保低边", "低收入农户"],
}); });
// 5: // 5:
//c0:c1,c2:c3 //c0:c1,c2:c3
@ -262,12 +262,9 @@ echarts.graphic.registerShape("CubeBottom_2", CubeBottom_2);
const getOption = () => { const getOption = () => {
data.option = { data.option = {
legend: { legend: {
data: [ data: ["重点群体结构类型", "帮扶就业人数"],
"适龄生育妇女",
"育龄妇女",
],
top: "0%", top: "0%",
right: "30%", // right: "30%",
textStyle: { textStyle: {
fontSize: 16, fontSize: 16,
color: "#ffffff", color: "#ffffff",
@ -280,8 +277,8 @@ const getOption = () => {
grid: { grid: {
left: 0, left: 0,
right: 0, right: 0,
bottom: 10, bottom: 40,
top: 40, top: 60,
containLabel: true, containLabel: true,
}, },
xAxis: [ xAxis: [
@ -300,9 +297,9 @@ const getOption = () => {
show: true, show: true,
color: "#fff", color: "#fff",
fontSize: 16, fontSize: 16,
formatter: function (value) { // formatter: function (value) {
return value.length > 4 ? value.slice(0, 6) + "..." : value; // return value.length > 4 ? value.slice(0, 6) + "..." : value;
}, // },
}, },
}, },
{ {
@ -353,7 +350,7 @@ const getOption = () => {
series: [ series: [
{ {
xAxisIndex: 0, xAxisIndex: 0,
name: "适龄生育妇女", name: "重点群体结构类型",
type: "custom", type: "custom",
renderItem: (params, api) => { renderItem: (params, api) => {
const location = api.coord([api.value(0), api.value(1)]); const location = api.coord([api.value(0), api.value(1)]);
@ -446,7 +443,7 @@ const getOption = () => {
}, },
{ {
xAxisIndex: 0, xAxisIndex: 0,
name: "育龄妇女", name: "帮扶就业人数",
type: "custom", type: "custom",
renderItem: (params, api) => { renderItem: (params, api) => {
const location = api.coord([api.value(0), api.value(1)]); const location = api.coord([api.value(0), api.value(1)]);
@ -592,27 +589,38 @@ const getMaxCeilingValue = (arr) => {
}; };
const setChart1 = () => { const setChart1 = () => {
data.valueList = []; data.valueList = [];
data.xxname = []; data.valueList2 = [];
if (data.list.length !== 0) { if (data.list.length !== 0) {
data.list.forEach((item) => { // data.valueList.push(data.list.bf.bfdjsy); //
data.xxname.push(item.name); // // data.valueList.push(data.list.bf.bflxwjy); //
data.valueList.push(item.num); // // data.valueList.push(data.list.bf.bfdbdb); //
}); // data.valueList.push(data.list.bf.bfdsrnh); //
// data.valueList2.push(data.list.zd.zddjsy); //
// data.valueList2.push(data.list.zd.zdlxwjy); //
// data.valueList2.push(data.list.zd.zddbdb); //
// data.valueList2.push(data.list.zd.zddsrnh); //
const keyPoints = ['bfdjsy', 'bflxwjy', 'bfdbdb', 'bfdsrnh'];
const supportPoints = ['zddjsy', 'zdlxwjy', 'zddbdb', 'zddsrnh'];
data.valueList = keyPoints.map(key => data.list.bf[key]);
data.valueList2 = supportPoints.map(key => data.list.zd[key]);
} }
}; };
onBeforeMount(() => { onBeforeMount(() => {
// data.xxname = props.list.year;
// data.valueList = props.list.data;
setTimeout(() => { setTimeout(() => {
data.xxname.forEach((item, index) => { // data.xxname.forEach((item, index) => {
props.list.forEach((itemm, indexx) => { // props.list.forEach((itemm, indexx) => {
if (item == itemm.xzjd) { // if (item == itemm.xzjd) {
data.valueList[index] = itemm.qrrs; // data.valueList[index] = itemm.qrrs;
data.valueList2[index] = itemm.qcrs; // data.valueList2[index] = itemm.qcrs;
} // }
}); // });
}); // });
// data.xxname = props.list.year;
data.list = props.list;
setChart1()
// console.log(666,data.valueList,data.valueList2);
getOption(); getOption();
setChart(); setChart();
}, 800); }, 800);

View File

@ -509,7 +509,8 @@ const tableType = reactive({
}, },
{ {
label: "联系电话", label: "联系电话",
property: "fgldsj", // property: "fgldsj",
property: "ywfzrsj",
}, },
{ {

View File

@ -8,7 +8,7 @@
<i></i> <i></i>
</div> </div>
</div> </div>
<eP1 :list="data.csrs.data" :year="data.csrs.year"></eP1> <eP1 :list="data.ViewData" :month="data.jnrcs.month"></eP1>
</div> </div>
<div class="flex1"> <div class="flex1">
<div class="yd_title left_3"> <div class="yd_title left_3">
@ -17,7 +17,7 @@
<i></i> <i></i>
</div> </div>
</div> </div>
<eP2 :list="data.ylfnzb"></eP2> <eP2 :list="data.syl"></eP2>
</div> </div>
</div> </div>
<div class="displayFlex center_bg"> <div class="displayFlex center_bg">
@ -50,7 +50,7 @@
<i></i> <i></i>
</div> </div>
</div> </div>
<eP3></eP3> <!-- <eP3></eP3> -->
</div> </div>
</div> </div>
@ -105,67 +105,101 @@ const data = reactive({
employmentList: [ employmentList: [
{ {
name: "发布人力资源供求信息", name: "发布人力资源供求信息",
value: "38", value: "0",
img: jy1, img: jy1,
dw: "次", dw: "次",
}, },
{ {
name: "见习岗位信息3次", name: "见习岗位信息3次",
value: "385", value: "0",
img: jy2, img: jy2,
dw: "个", dw: "个",
}, },
{ {
name: "开展就业创业政策宣传", name: "开展就业创业政策宣传",
value: "3", value: "0",
img: jy3, img: jy3,
dw: "次", dw: "次",
}, },
{ {
name: "劳动用工政策法规咨询", name: "劳动用工政策法规咨询",
value: "2300", value: "0",
img: jy4, img: jy4,
dw: "余人次", dw: "余人次",
}, },
{ {
name: "组织招聘会", name: "组织招聘会",
value: "52", value: "0",
dw: "场", dw: "场",
img: jy5, img: jy5,
}, },
{ {
name: "提供岗位", name: "提供岗位",
value: "40342", value: "0",
dw: "个", dw: "个",
img: jy6, img: jy6,
}, },
{ {
name: "求职意向登记", name: "求职意向登记",
value: "7609", value: "0",
dw: "人次", dw: "人次",
img: jy7, img: jy7,
}, },
{ {
name: "流动人员人事档案", name: "流动人员人事档案",
value: "23530", value: "0",
dw: "份", dw: "份",
img: jy8, img: jy8,
}, },
], ],
ViewData: [
{
name: "一级/高级技师",
value: "0",
show: true,
data: ["0", "0", "0", "0", "0", "0"], ///
},
{
name: "二级/技师",
value: "0",
show: true,
data: ["0", "0", "0", "0", "0", "0"], ///
},
{
name: "三级/高级工",
value: "0",
show: true,
data: ["0", "0", "0", "0", "0", "0"], ///
},
{
name: "四级/中级工",
value: "0",
show: true,
data: ["0", "0", "0", "0", "0", "0"], ///
},
{
name: "五级/初级工",
value: "0",
show: true,
data: ["0", "0", "0", "0", "0", "0"], ///
},
],
jnrcs: { jnrcs: {
month: [], month: [],
one: [], /// // one: [], ///
two: [], // / // two: [], // /
three: [], /// // three: [], ///
four: [], /// // four: [], ///
five: [], /// // five: [], ///
}, // }, //
syl: {}, // syl: {
bf: [], //
zd: [], //
}, //
jyfws: {}, // jyfws: {}, //
rczy: {}, // rczy: {}, //
sybx: {}, // sybx: {}, //
gsbx: {}, //
}); });
const showEchart = ref(false); const showEchart = ref(false);
// tap & // tap &
@ -191,11 +225,28 @@ const jzChange = (index, value) => {
const getData = async () => { const getData = async () => {
await http.get("/api/ggfwyth/lysdOverview").then((res) => { await http.get("/api/ggfwyth/lysdOverview").then((res) => {
if (res.code == 200) { if (res.code == 200) {
// data.csrs = res.data.csrs; data.jnrcs.month = res.data.jnrcs.month; //
// data.yynbl = res.data.yynbl; // data.jnrcs.one = res.data.jnrcs.one; //
// data.jbgk = res.data.jbgk; // data.jnrcs.two = res.data.jnrcs.two; //
// data.ylfnzb = res.data.ylfnzb.data; // data.jnrcs.three = res.data.jnrcs.three; //
// data.ylfnyyefb = res.data.ylfnyyefb; // data.jnrcs.four = res.data.jnrcs.four; //
// data.jnrcs.five = res.data.jnrcs.five; //
data.ViewData[0].data = res.data.jnrcs.one; ///
data.ViewData[1].data = res.data.jnrcs.two; ///
data.ViewData[2].data = res.data.jnrcs.three; ///
data.ViewData[3].data = res.data.jnrcs.four; ///
data.ViewData[4].data = res.data.jnrcs.five; ///
data.syl.bf = res.data.syl.bf; //
data.syl.zd = res.data.syl.zd; //
data.jyfws = res.data.jyfws; //
data.employmentList[0].value = res.data.jyfws; ///
data.rczy = res.data.rczy; //
data.sybx = res.data.sybx; //
data.gsbx = res.data.gsbx; //
} }
}); });
}; };