提交修改

new-exam
dshclm 5 months ago
parent 47c7e41102
commit 2af62ddb98

@ -366,7 +366,7 @@
})
var rightMain = echarts.init(document.getElementById('rightMain'));
axios.post(prefix + '/countBF').then(response => {
if (response.data.code == web_status.SUCCESS){
if (response.data.code == web_status.SUCCESS && response.data.data.length > 0){
rightMain.setOption({
tooltip: {
trigger: 'item'
@ -376,7 +376,7 @@
right: 'right'
},
title: {
text: '密品报废统计'
text: '密品报废统计',
},
series: [
{
@ -406,6 +406,18 @@
}
]
});
}else {
rightMain.setOption({
title: {
text: '暂无数据',
x: 'center',
y: 'center',
textStyle: {
fontSize: 14,
fontWeight: 'normal'
}
}
})
}
})
</script>

@ -237,12 +237,12 @@
<div class="form-group">
<label class="col-sm-4 control-label is-required">保密协议签订书:</label>
<div class="fileinput fileinput-new col-sm-8" data-provides="fileinput">
<span class="btn btn-white btn-file">
<span class="btn btn-white btn-file" style="overflow: visible">
<span class="fileinput-new">选择文件</span>
<span class="fileinput-exists">更改</span>
<input type="file" id="fileUrlId" name="..." required>
<input type="hidden" id="fileUrl" name="confAgreement">
<input type="hidden" id="fileName" name="confName">
<input type="hidden" id="fileUrl" name="confAgreement" required>
<input type="hidden" id="fileName" name="confName" required>
</span>
<span class="fileinput-filename"></span>
<a href="#" class="close fileinput-exists" data-dismiss="fileinput" style="float: none">&times;</a>

Loading…
Cancel
Save