Commit b11d0211 authored by liang's avatar liang

早期胃癌占比调整

parent e5a52a43
...@@ -248,8 +248,8 @@ export default { ...@@ -248,8 +248,8 @@ export default {
], ],
screenNum: 0, screenNum: 0,
botPieData2: [ botPieData2: [
{ value: 0, name: "癌占比" }, { value: 0, name: "进展期胃癌占比" },
{ value: 0, name: "未患癌占比" }, { value: 0, name: "早期胃癌占比 " },
], ],
mapData: [], mapData: [],
curTime: "", curTime: "",
...@@ -406,8 +406,9 @@ export default { ...@@ -406,8 +406,9 @@ export default {
earlyGastric() { earlyGastric() {
earlyGastric().then((res) => { earlyGastric().then((res) => {
if (res.code == 1 && res.data) { if (res.code == 1 && res.data) {
this.botPieData2[0].value = res.data.earlyGastricCancer console.log(res.data, 222)
this.botPieData2[1].value = res.data.unEarlyGastricCancer this.botPieData2[0].value = res.data.unEarlyGastricCancer
this.botPieData2[1].value = res.data.earlyGastricCancer
} }
}) })
}, },
......
...@@ -216,6 +216,7 @@ module.exports = { ...@@ -216,6 +216,7 @@ module.exports = {
.plugin("compression") .plugin("compression")
.use(CompressionWebpackPlugin, [ .use(CompressionWebpackPlugin, [
{ {
cache: false,
filename: "[path].gz[query]", filename: "[path].gz[query]",
algorithm: "gzip", algorithm: "gzip",
test: new RegExp("\\.(" + productionGzipExtensions.join("|") + ")$"), test: new RegExp("\\.(" + productionGzipExtensions.join("|") + ")$"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment