diff --git a/.env.development b/.env.development index 698c8fc..594a0a0 100644 --- a/.env.development +++ b/.env.development @@ -6,5 +6,5 @@ VUE_APP_API_ROOT = /tduck-api # 详情介绍请阅读 http://eoner.gitee.io/vue-automation/#/cdn VUE_APP_CDN = OFF # 调试工具,可设置 eruda 或 vconsole,如果不需要开启则留空 -VUE_APP_DEBUG_TOOL = eruda +VUE_APP_DEBUG_TOOL = diff --git a/src/views/form/statistics.vue b/src/views/form/statistics.vue index 12a8b8e..c85c718 100644 --- a/src/views/form/statistics.vue +++ b/src/views/form/statistics.vue @@ -51,8 +51,29 @@ width="50" fixed="right" :render-header="renderHeader"> + + + + +
+ 提交详情 +
+
+
+

{{ item.label }}

+ {{activeResultRow? + activeResultRow['processData'][`field${item.formItemId}`]:'' }} +
+
+
+
+
this.customColumnDialogVisible = true}> ) }, + openDetailDrawerHandle(row) { + this.activeResultRow = row + this.detailDrawer=true + }, queryProjectResult() { this.$api.get(`/user/project/result/page`, {params: this.queryConditions}).then(res => { let {records, total, size} = res.data @@ -236,4 +263,16 @@ export default { text-overflow: ellipsis !important; white-space: nowrap !important; } + +/*1.显示滚动条:当内容超出容器的时候,可以拖动:*/ +/deep/ .el-drawer__body { + overflow: auto; + /* overflow-x: auto; */ +} + +/*2.隐藏滚动条,太丑了*/ +/deep/ .el-drawer__container ::-webkit-scrollbar{ + display: none; +} +