Browse Source

公众服务统计相关bug

wangqin
lau572 6 months ago
parent
commit
e13509367f
  1. 6
      ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThrough/assets/charts3.js
  2. 15
      ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThrough/index.vue
  3. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/assets/charts.js
  4. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/assets/charts.js
  5. 5
      ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/record/index.vue

6
ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThrough/assets/charts3.js

@ -68,7 +68,11 @@ var options = {
containLabel: true,
},
yAxis: {
type: 'value'
type: 'value',
axisLabel: {
fontSize: 10,
color: "#fff",
},
},

15
ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThrough/index.vue

@ -25,13 +25,15 @@
size="mini"
class="btnSearch"
icon="el-icon-search"
@click="bindEventTypePublishManageMonth"
>查询</el-button
>
<el-button class="btnReset" size="mini" icon="el-icon-refresh-left"
>重置</el-button
@click="init"
>重置</el-button
>
</div>
<div class="charts keep-ratio" id="nucleusThrough"></div>
<div class="charts" id="nucleusThrough"></div>
</div>
</div>
</template>
@ -59,6 +61,9 @@ export default {
this.bindEventTypePublishManageMonth();
},
bindEventTypePublishManageMonth(){
if (!this.dateTime){
return this.$modal.msgWarning("请选择日期");
}
request({
url: `/business/manage/eventTypePublishManageMonth`,
method: "post",
@ -131,11 +136,11 @@ export default {
display: flex;
align-items: center;
height: 40px;
width: 50%;
width: 35%;
font-size: 14px;
margin-bottom: 10px;
left: 20px;
top: 2px;
left: 10px;
top: 5px;
z-index: 9;
div {

2
ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/assets/charts.js

@ -92,7 +92,7 @@ var options = {
grid: {
top: "75px", //上边距
right: "0", //右边距
left: "0", //左边距
left: "3px", //左边距
bottom: "20px", //下边距
containLabel: true,
},

2
ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/assets/charts.js

@ -91,7 +91,7 @@ var options = {
grid: {
top: "80px", //上边距
right: "0", //右边距
left: "0", //左边距
left: "3px", //左边距
bottom: "20px", //下边距
containLabel: true,
},

5
ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/record/index.vue

@ -20,7 +20,7 @@
:formConfigOptions="{ dFormData: { eventState: '0' } }" @handleSearch="handleSearch" />
</div>
<!-- 内容 -->
<Table :data="tableData" height="100%" style="width:500">
<Table :data="tableData" height="100%" style="width:1880px">
<el-table-column label="序号" type="index" :index="indexMethod" width="100" align="center"
header-align="center" />
@ -114,7 +114,7 @@ export default {
},
onDelete(id){
const self = this;
this.$confirm("是否删除?"+id, "警告", {
this.$confirm("是否删除?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
@ -201,6 +201,7 @@ export default {
request({
url: `/business/manage/statisticsList`,
method: "post",
params: { pageNum: this.searchData.pageNum, pageSize: this.searchData.pageSize },
data: this.searchData,
}).then((result) => {
if (result.code != 200) return Message.error(result?.msg);

Loading…
Cancel
Save