This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
views/application-management/services/components Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ declare module 'vue' {
2929 AInputSearch : typeof import ( '@arco-design/web-vue' ) [ 'InputSearch' ] ;
3030 ALayout : typeof import ( '@arco-design/web-vue' ) [ 'Layout' ] ;
3131 ALayoutContent : typeof import ( '@arco-design/web-vue' ) [ 'LayoutContent' ] ;
32+ ALayoutFooter : typeof import ( '@arco-design/web-vue' ) [ 'LayoutFooter' ] ;
3233 ALayoutSider : typeof import ( '@arco-design/web-vue' ) [ 'LayoutSider' ] ;
3334 ALink : typeof import ( '@arco-design/web-vue' ) [ 'Link' ] ;
3435 AList : typeof import ( '@arco-design/web-vue' ) [ 'List' ] ;
Original file line number Diff line number Diff line change 8787 });
8888 </script >
8989
90- <style lang="less" scoped>
91- .time-box {
92- display : inline-block ;
93- // width: 65px;
94- }
95- </style >
90+ <style lang="less" scoped></style >
Original file line number Diff line number Diff line change 3535 tableLayout: {
3636 type: String ,
3737 default: ' auto'
38+ },
39+ align: {
40+ type: String ,
41+ default: ' left'
3842 }
3943 },
4044 setup(props , { slots , emit }) {
7276 column = { props .cols }
7377 layout = { props .layout }
7478 table-layout = { props .tableLayout }
79+ align = { props .align }
7580 >
7681 { _ .map (props .dataInfo , (item , index ) => {
7782 return (
Original file line number Diff line number Diff line change 173173 data-info = { basicDataList .value }
174174 cols = { 2 }
175175 layout = { props .layout }
176+ align = " right"
176177 v-slots = { {
177178 value : ({ data , value }) => {
178179 if (data .key === ' componentChangeSummary' ) {
185186 show = { showTimer .value }
186187 value = { data .value }
187188 stopped = { isStopped .value }
189+ class = " flex"
188190 ></ClockTimer >
189191 );
190192 }
You can’t perform that action at this time.
0 commit comments