From c8cb33b723bc0aa50a85988888b1d1a5a1d2e365 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 11 Feb 2022 14:33:19 +0800 Subject: [PATCH] 27245 --- .../apps/AppGridBlock/components/list.vue | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/project/sass/apps/AppGridBlock/components/list.vue b/project/sass/apps/AppGridBlock/components/list.vue index 76225c20..0fb97bfa 100644 --- a/project/sass/apps/AppGridBlock/components/list.vue +++ b/project/sass/apps/AppGridBlock/components/list.vue @@ -115,7 +115,11 @@ fixed="right" width="160"> import AMapLoader from "@amap/amap-jsapi-loader"; +import Template from '../../../../../packages/wechat/AppAskForm/components/Template.vue'; export default { + components: { Template }, name: "List", label: "网格区块", props: { @@ -649,6 +655,21 @@ export default { } } + .flex-box { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + word-break: break-all; + + & > div { + display: flex; + } + } + .mt10 { padding: 8px 0; }