+
+
- | {{ index + 1 }} |
- {{ item.tm }} |
- {{ item.rz }} |
-
+ |
{{item[col.key] }}
|
-
- {{item.status == 1 ? "正常" : rec == 0 ? "异常" : ''}}
- |
@@ -41,9 +36,9 @@
type:Array,
default:[],
},
- cols2:{
- type:Array,
- default:[],
+ name:{
+ type:String,
+ default:'',
},
newCol:{
type:Array,
@@ -60,7 +55,7 @@
methods:{
getStyle(row){
return {
- width:row.title == "时间" ? "200px": "100px"
+ width:"100px"
}
}
}
@@ -86,7 +81,7 @@
.scroll-table{
height: calc(100vh - 180px);
overflow-y: auto;
- overflow-x: auto;
+ // overflow-x: auto;
width:'100%'
}
.table_cur tr {
diff --git a/pages/aqjc/jrxOptions.js b/pages/aqjc/jrxOptions.js
index d7d8216..35bca8f 100644
--- a/pages/aqjc/jrxOptions.js
+++ b/pages/aqjc/jrxOptions.js
@@ -1,322 +1,198 @@
import { imageUrl060,imageUrl090,rule } from './dataUrl'
-export default function jrxOptions(data = {}, type = "1") {
- const yMin = type == "1" ? 70 : type == "2" ? 70 : 70;
- const yMax = type == "1" ? 154 : type == "2" ? 150 : 150;
- const type1 = ["SY05", "SY06", "SY07", "SY08"]
- const type2 = ["SY09","SY10","SY11","SY12"]
- const alltype = type == "1" ? type1 : type == "2" ? type2 : type2;
- // 字体颜色
- const textColor = '#666'
- const imageUrl = type == "1" ? imageUrl060:
- type == "2" ? imageUrl090 : imageUrl090;
- const xValue = type == "1" ? (((data?.rz - 99) + 1.1 * 13) / 1.1):
- type == "2" ? (((data?.rz - 99) + 1 * 14) / 1) : (((data?.rz - 99) + 1 * 14) / 1)
- const rz = data?.rz ?
- [[xValue, data?.rz], [0, data?.rz], ] :
- []
- const rz1 = data?.rz ?
- type == "1" ?
- [[0, 99], [13, 99], [xValue, data?.rz]]:
- type == "2" ?
- [[0, 99], [14, 99], [xValue, data?.rz]]
- : [[0, 99], [14, 99], [xValue, data?.rz]]
- :
- []
- const gz1 = data[alltype[0]] ?
- type == "1" ? [[51.6, 85], [51.6, data[alltype[0]]]] :
- type == "2" ? [[47.5, 85], [47.5, data[alltype[0]]]] :
- [[47.5, 158], [85, data[alltype[0]]]]
- : [];
- const gz2 = data[alltype[1]] ?
- type == "1" ? [[53.6, 85], [53.6, data[alltype[1]]]] :
- type == "2" ? [[49.5, 85], [49.5, data[alltype[1]]]] :
- [[53.6, 158], [53.6, data[alltype[1]]]] :
- [];
-
- const gz3 = data[alltype[2]] ?
- type == "1" ? [[72.5, 90], [72.5, data[alltype[2]]]] :
- type == "2" ? [[66.5, 90], [66.5, data[alltype[2]]]] :
- [[73, 161], [73, data[alltype[2]]]] : [];
-
- const gz4 = data[alltype[3]] ?
- type == "1" ? [[84.5, 96], [84.5, data[alltype[3]]]] :
- type == "2" ? [[77, 96], [77, data[alltype[3]]]] :
- [[85, 166], [85, data[alltype[3]]]] : [];
-
- const line = data?.rz ?
- type == "1" ?
- [
- [xValue, data?.rz],
- [51.6, data[alltype[0]]],
- [53.6, data[alltype[1]]],
- [72.5, data[alltype[2]]],
- [84.5, data[alltype[3]]]
- ] :
- type == "2" ?
- [
- [xValue, data?.rz],
- [47.5, data[alltype[0]]],
- [49.5, data[alltype[1]]],
- [66.5, data[alltype[2]]],
- [77, data[alltype[3]]]
- ] :
- [
- [xValue, data?.rz],
- [51.6, data[alltype[0]]],
- [53.6, data[alltype[1]]],
- [73, data[alltype[2]]],
- [85, data[alltype[3]]]
- ]
- : []
+export default function jrxOptions(data ) {
+ // 缝开度
+ const kdMin = Math.floor(Math.min(...data.map(item => item.value)));
+ const kdMax = Math.ceil(Math.max(...data.map(item => item.value)));
+
+ // 温度
+ const tempMin = Math.floor(Math.min(...data.map(item => item.temp)));
+ const tempMax = Math.ceil(Math.max(...data.map(item => item.temp)));
+
+ // 模数
+ const modulusMin = Math.floor(Math.min(...data.map(item => item.modulus)));
+ const modulusMax = Math.ceil(Math.max(...data.map(item => item.modulus)));
let eopts = {
- toolbox: {
- show: true,
- feature: {
- saveAsImage: {
- show: true,
- excludeComponents: ['toolbox'],
- pixelRatio: 2,
- name:"测值图"
- },
- },
- right: "10%",
- top:"4%"
- },
- graphic: [
- {
- type: 'image',
- left: '5%',
- top: 0,
- bottom:0,
- z: 1,
- bounding: 'raw',
- style: {
- image: imageUrl,
- width: 1310,
- height: 380
- }
- },
- {
- type: 'image',
- // id: 'background',
- left: '5%',
- bottom:"5%",
- z: 1,
- bounding: 'all',
- style: {
- image: rule,
- width: 10,
- height: 450
- }
- }
- ],
- grid: {
- top: '0%',
- left: '2%',
- right: '5%',
- bottom: '0%',
- containLabel: true
- },
- xAxis: {
- min: 0,
- max:100,
- axisLabel: {
- show:false,
- // 坐标轴字体颜色
- color: textColor,
- fontSize: 18
- },
- axisLine: {
- show:false,
- lineStyle: {
- color: textColor
- }
- },
- axisTick: {
- // y轴刻度线
- show: false
- },
- splitLine: {
- // 网格
- show: false
- },
- boundaryGap: false
- },
- yAxis: {
- type: 'value',
- min: yMin,
- max: yMax,
- interval:5,
- // data:[155,160,180,190,210],
- nameTextStyle: {
- color: '#333',
- fontSize: 18,
- padding: [0, 0, 0, 80]
- },
- axisLabel: {
- // 坐标轴字体颜色
- color: textColor,
- fontSize: 18,
- showMinLabel: false,
- showMaxLabel: false
- },
- axisLine: {
- show: false
- },
- axisTick: {
- // y轴刻度线
- show: false
- },
- splitLine: {
- // 网格
- show: false,
- lineStyle: {
- color: '#CCCCCC',
- type: 'dashed'
- }
- }
- },
+ tooltip: {
+ trigger: 'axis',
+ },
+ legend: {
+ top:'0%',
+ data: ['缝开度', '温度', '模数']
+ },
+ grid: {
+ left: 35,
+ right:120
+ },
+ xAxis: [
+ {
+ type: 'category',
+ data: data.map(o => o.tm),
+ inverse: false,
+ splitLine: {
+ show: false
+ },
+ axisLabel: {
+ padding: [0, 0, 100, 0],
+ color: '#333',
+ fontSize: 12,
+ format:'ykzXAxisFormat'
+ },
+ axisLine: {
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ }
+ ],
+ yAxis: [
+ {
+ type: 'value',
+ position: 'left',
+ name: "缝开度(mm)",
+ nameTextStyle: {
+ padding: [-10, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: true,
+ lineStyle: {
+ color: '#bfbfbf',
+ width: 0.5,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: kdMin,
+ max: kdMax,
+ },
+ {
+ type: 'value',
+ position: 'right',
+ offset: 80,
+ name: "温度(°℃)",
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: false,
+ lineStyle: {
+ color: '#07a6ff',
+ width: 0.25,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: tempMin,
+ max: tempMax,
+ },
+ {
+ type: 'value',
+ position: 'right',
+ name: "模数(F)",
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: false,
+ lineStyle: {
+ color: '#07a6ff',
+ width: 0.25,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: modulusMin,
+ max: modulusMax,
+ }
+ ],
}
let chartData = {
- series: [
- // 和大坝坡面重合的线 斜率为0.75
- {
-
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#fff'
- },
- lineStyle: {
- color: '#fff'
+ series: [
+ {
+ yAxisIndex: 0,
+ name: '缝开度',
+ type: 'line',
+ color: "#d6eaec",
+ data: data.map(o => o.value),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
},
- areaStyle: {
- origin: "end",
- color: 'rgba(0, 128, 255, 0.3)' // 设置区域填充颜色
+ {
+ // xAxisIndex: 1,
+ yAxisIndex: 1,
+ name: '温度',
+ type: 'line',
+ color: "#60a0f8",
+ lineStyle: {
+ // type: "dashed"
+ },
+ data: data.map(o => o.temp),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
},
- data:[...rz,...rz1]
-
- },
- {
-
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF'
- },
- markPoint: {
- data: [{ type: 'max',x:"20%", coord: [xValue, data?.rz] }],
- symbol: 'pin',
- symbolSize: [30, 10],
- itemStyle: {
- color: '#fff', // 标注点颜色
- borderColor: '#ffa500', // 标注点边框颜色
- borderWidth: 0 // 标注点边框宽度
- },
- label: {
- show: true, // 是否显示标签
- formatter: "库水位" +data?.rz + "m", // 标签格式
- color: '#5487FF', // 标签文字颜色
- fontSize: 12, // 标签文字大小
- }
+ {
+ yAxisIndex: 2,
+ name: '模数',
+ type: 'line',
+ // color: "#60a0f8",
+ lineStyle: {
+ // type: "dashed"
+ },
+ data: data.map(o => o.modulus),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
},
- data:rz
- },
- {
-
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF'
- },
- data:rz1
- },
- // 管位
- {
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF',
- width:6
- },
- data: gz1
- },
- {
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF',
- width:6
- },
- data: gz2
- },
- {
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF',
- width:6
- },
- data: gz3
- },
- {
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF',
- width:6
- },
- data: gz4
- },
- // 管位连接线
- {
- type: 'line',
- symbol: 'none',
- symbolSize: 10,
- z: 1,
- itemStyle: {
- color: '#5487FF'
- },
- lineStyle: {
- color: '#5487FF',
- },
- data: line
- },
- ]
+ ]
}
return {
eopts,
diff --git a/pages/aqjc/syOptions.js b/pages/aqjc/syOptions.js
new file mode 100644
index 0000000..5d7c39f
--- /dev/null
+++ b/pages/aqjc/syOptions.js
@@ -0,0 +1,300 @@
+export default function syOptions(data) {
+ // 水位
+ const rzMin = Math.floor(Math.min(...data.map(item => item.value)));
+ const rzMax = Math.ceil(Math.max(...data.map(item => item.value)));
+
+ // 水压
+ const pressMin = Math.floor(Math.min(...data.map(item => item.press)));
+ const pressMax = Math.ceil(Math.max(...data.map(item => item.press)));
+
+ // 高程
+ const waterEleMin = Math.floor(Math.min(...data.map(item => item.waterEle)));
+ const waterEleMax = Math.ceil(Math.max(...data.map(item => item.waterEle)));
+ // 温度
+ const tempMin = Math.floor(Math.min(...data.map(item => item.temp)));
+ const tempMax = Math.ceil(Math.max(...data.map(item => item.temp)));
+
+ // 模数
+ const modulusMin = Math.floor(Math.min(...data.map(item => item.modulus)));
+ const modulusMax = Math.ceil(Math.max(...data.map(item => item.modulus)));
+ let chartData = {
+ series: [
+ {
+ yAxisIndex: 0,
+ name: '水位',
+ type: 'line',
+ color: "#d6eaec",
+ data: data.map(o => o.value),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
+ },
+ {
+ yAxisIndex: 1,
+ name: '水压',
+ type: 'line',
+ color: "#60a0f8",
+ lineStyle: {
+ // type: "dashed"
+ },
+ data: data.map(o => o.press),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
+ },
+ {
+ yAxisIndex: 2,
+ name: '水位高程',
+ type: 'line',
+ // color: "#60a0f8",
+ lineStyle: {
+ // type: "dashed"
+ },
+ data: data.map(o => o.waterEle),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
+ },
+ {
+ yAxisIndex: 3,
+ name: '温度',
+ type: 'line',
+ // color: "#60a0f8",
+ lineStyle: {
+ // type: "dashed"
+ },
+ data: data.map(o => o.temp),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
+ },
+ {
+ yAxisIndex: 4,
+ name: '模数',
+ type: 'line',
+ // color: "#60a0f8",
+ lineStyle: {
+ // type: "dashed"
+ },
+ data: data.map(o => o.modulus),
+ symbol: 'none', // 设置标记点为'none',即去掉圆点
+ smooth: 0.5
+ },
+ ]
+ }
+ let eopts = {
+ tooltip: {
+ trigger: 'axis',
+ },
+ legend: {
+ top: '0%',
+ left:-10,
+ data: ['水位','水压','水位高程','温度', '模数']
+ },
+ grid: {
+ left: 35,
+ right: 120
+ },
+ xAxis: [
+ {
+ type: 'category',
+ data: data.map(o => o.tm),
+ inverse: false,
+ splitLine: {
+ show: false
+ },
+ axisLabel: {
+ padding: [0, 0, 100, 0],
+ color: '#333',
+ fontSize: 12,
+ format:'ykzXAxisFormat'
+ },
+ axisLine: {
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ }
+ ],
+ yAxis: [
+ {
+ type: 'value',
+ position: 'left',
+ name: "水位(mm)",
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: true,
+ lineStyle: {
+ color: '#bfbfbf',
+ width: 0.5,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: rzMin,
+ max: rzMax,
+ },
+ {
+ type: 'value',
+ position: 'right',
+ name: "水压(KPa)",
+ offset: -40,
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: false,
+ lineStyle: {
+ color: '#07a6ff',
+ width: 0.25,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: pressMin,
+ max: pressMax,
+ },
+ {
+ type: 'value',
+ position: 'right',
+ name: "水位高程(m)",
+ offset: -115,
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: false,
+ lineStyle: {
+ color: '#07a6ff',
+ width: 0.25,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: waterEleMin,
+ max: waterEleMax,
+ },
+ {
+ type: 'value',
+ position: 'right',
+ name: "温度(℃)",
+ offset: 25,
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: false,
+ lineStyle: {
+ color: '#07a6ff',
+ width: 0.25,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: tempMin,
+ max: tempMax,
+ },
+ {
+ type: 'value',
+ position: 'right',
+ name: "模数(F)",
+ offset: 80,
+ nameTextStyle: {
+ padding: [0, 0, 10, 10],
+ color: '#333333',
+ fontSize: 14
+ },
+ splitLine: {
+ show: false,
+ lineStyle: {
+ color: '#07a6ff',
+ width: 0.25,
+ type: 'dotted'
+ }
+ },
+ axisLabel: {
+ color: '#333',
+ fontSize: 12,
+ },
+ axisLine: {
+ // show: false
+ lineStyle: {
+ color: '#8c8c8c',
+ width: 1,
+ }
+ },
+ axisTick: {
+ show: false,
+ },
+ min: modulusMin,
+ max: modulusMax,
+ }
+ ]
+ }
+ return {
+ eopts,
+ chartData
+ }
+}
\ No newline at end of file
diff --git a/pages/homeIndex/index.vue b/pages/homeIndex/index.vue
index 245ef5d..bf34a24 100644
--- a/pages/homeIndex/index.vue
+++ b/pages/homeIndex/index.vue
@@ -107,7 +107,7 @@ export default {
};
},
onPullDownRefresh() {
- this.getYjData();
+ this.getAllList();
uni.$showMsg("刷新成功");
setTimeout(function () {
uni.stopPullDownRefresh();
@@ -119,7 +119,7 @@ export default {
{
value: "工程概况",
key: 1,
- icon: "../../static/tabs/zhjs.png",
+ icon: "../../static/tabs/wxyh.png",
url: "/pages/gcgk/index",
},
{
@@ -145,11 +145,11 @@ export default {
key: 3,
icon: "../../static/tabs/spjk.png",
url: "/pages/spjk/index",
- },
- {
+ },
+ {
value: "水雨情",
key: 6,
- icon: "../../static/tabs/spjk.png",
+ icon: "../../static/tabs/xingzhuang2.png",
url: "/pages/syq/index",
},
];
@@ -206,25 +206,41 @@ export default {
});
this.setInsert(menu2);
},
- // 预警
- async getYjData() {
- const params = {
- start: warnStm,
- end: warnetm,
- };
- try {
- const res = await uni.$http.post(
- "/gunshiApp/tsg/stQxWarnR/home/warn",
- params
- );
- const { flowWarn, pressWarn, qxWarn, shiftWarn } = res.data.data;
- const arr = [...flowWarn, ...pressWarn, ...qxWarn, ...shiftWarn];
- if (arr.length > 0) {
+
+ // 闸前
+ getZqList() {
+ return uni.$http.post("/gunshiApp/ykz/warnRecord/page", {
+ pageSo: {
+ pageSize: 999,
+ pageNumber: 1,
+ },
+ dateTimeRangeSo: {
+ start: warnStm,
+ end: warnetm,
+ },
+ });
+ },
+ // 安全类型
+ getAqList() {
+ return uni.$http.post("/gunshiApp/ykz/osmoticWarnRecord/page", {
+ pageSo: {
+ pageSize: 999,
+ pageNumber: 1,
+ },
+ dateTimeRangeSo: {
+ start: warnStm,
+ end: warnetm,
+ },
+ });
+ },
+
+ getAllList() {
+ Promise.all([this.getZqList(), this.getAqList()]).then((res) => {
+ const result = res.map((item) => item.data?.data?.records).flat();
+ if (result.length > 0) {
this.warnStatus = true;
}
- } catch (error) {
- uni.$showMsg();
- }
+ });
},
},
@@ -240,7 +256,7 @@ export default {
}, 10000);
this.setInsert();
- this.getYjData();
+ this.getAllList();
this.getSwList();
},
onHide() {
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 23f0da3..5b78d70 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -1,12 +1,13 @@
-
-
-
- 用户登录
-
+ 荆州新建盐卡闸信息化系统
+
+
+
+
+
@@ -193,8 +194,9 @@
.img {
width: 100vw;
- height: 40vh;
- margin-top: 0vh;
+ // height: 40vh;
+ height: 30vh;
+ margin-top: 2vh;
/* background-color: red; */
}
@@ -214,8 +216,9 @@
flex-direction: column;
.sub {
- font-size: 28px;
- color: #000;
+ font-size: 22px;
+ color: #102e9e;
+ margin-top: 3vh;
}
.line {
diff --git a/pages/syq/slTable.vue b/pages/syq/slTable.vue
index 5bde3cd..8b32089 100644
--- a/pages/syq/slTable.vue
+++ b/pages/syq/slTable.vue
@@ -15,7 +15,7 @@
-
+
| {{simpleData(item.typeName)}} |
{{ item.val }} |
{{item.tm}} |
diff --git a/pages/yj/index.vue b/pages/yj/index.vue
index c0c0101..cf13f99 100644
--- a/pages/yj/index.vue
+++ b/pages/yj/index.vue
@@ -2,7 +2,7 @@
- 预警时间:{{ model.start }} 至 {{ model.end }}
+ 预(报)警时间:{{ model.start }} 至 {{ model.end }}
@@ -147,6 +147,9 @@ export default {
pageSize: 999,
pageNumber: 1,
},
+ dateTimeRangeSo:{
+ ...this.model
+ }
})
},
@@ -158,6 +161,9 @@ export default {
pageSize: 999,
pageNumber: 1,
},
+ dateTimeRangeSo:{
+ ...this.model
+ }
})
},
diff --git a/static/images/loinBg.png b/static/images/loinBg.png
new file mode 100644
index 0000000..82cb3e0
Binary files /dev/null and b/static/images/loinBg.png differ
diff --git a/uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js b/uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js
index 509bb36..81bf13d 100644
--- a/uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js
+++ b/uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js
@@ -56,6 +56,9 @@ const cfe = {
},
"xAxisFormat": function (value) {
return value.substr('2020--'.length, 11)
+ },
+ "ykzXAxisFormat": function (value) {
+ return value.slice(0, 10)
},
"projectFormat":function (value) {
return value + 'mm';