Commit 1ae4ae2b authored by zhanglw's avatar zhanglw

excel在线编辑视图器

parent 1e48282f
......@@ -23,7 +23,8 @@
})
}
</script>
<script src="https://cdn.sheetjs.com/xlsx-latest/package/dist/shim.min.js"></script>
<script src="https://cdn.sheetjs.com/xlsx-latest/package/dist/xlsx.full.min.js"></script>
<script src="https://webapi.amap.com/maps?v=1.4.15&key=bfa930cbec820fc1c16f8f54348f98e3&plugin=Map3D,AMap.DistrictSearch,AMap.Geocoder,AMap.MouseTool,AMap.Autocomplete,AMap.PlaceSearch"></script>
</head>
<body>
......
......@@ -3193,6 +3193,16 @@ var HttpReq = function(){
data: data,
})
},
//开采管理-修改并保存excel报表
scUploadExcelByBase64: function(data){
return request({
url: '/api/miningManagement/uploadExcelByBase64',
method: 'POST',
data:data,
}).then((res) => {
return res
})
},
//开采管理-下载文件
downloadExcelOrFbx: function(params){
return request({
......
......@@ -2,7 +2,7 @@
<div class="home_manage">
<div class="statistics">
<ul>
<li v-for="(item,index) in dataList" :key="index">
<li v-for="(item,index) in dataList" :key="'on'+index">
<div class="liner">
<div class="content">
<span>{{item.online}}</span>在线
......@@ -13,7 +13,7 @@
</div>
</div>
</li>
<li v-for="(item,index) in dataList" :key="index">
<li v-for="(item,index) in dataList" :key="'off'+index">
<div class="liner">
<div class="content">
<span>{{item.count-item.online}}</span>离线
......
This diff is collapsed.
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