agilebuilder-ui 1.1.4-temp2 → 1.1.4-temp4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/lib/super-ui.css +1 -1
  2. package/lib/super-ui.js +21442 -20618
  3. package/lib/super-ui.umd.cjs +70 -71
  4. package/package.json +1 -1
  5. package/packages/fs-preview/src/fs-preview.vue +1 -1
  6. package/packages/fs-upload-list/src/fs-upload-list.vue +2 -2
  7. package/packages/fs-upload-new/src/fs-button-upload.vue +2 -4
  8. package/packages/fs-upload-new/src/fs-drag-upload.vue +2 -4
  9. package/packages/fs-upload-new/src/fs-upload-new.vue +1 -1
  10. package/packages/super-grid/src/dynamic-input.vue +17 -3
  11. package/packages/super-grid/src/super-grid.vue +13 -9
  12. package/packages/workgroup-tree-mobile/src/dept-result.vue +2 -1
  13. package/src/styles/index.scss +2 -0
  14. package/src/styles/mixin.scss +6 -5
  15. package/src/styles/theme/tiffany-blue-mobile/button.scss +122 -0
  16. package/src/styles/theme/tiffany-blue-mobile/card.scss +144 -0
  17. package/src/styles/theme/tiffany-blue-mobile/checkbox.scss +16 -0
  18. package/src/styles/theme/tiffany-blue-mobile/dialog.scss +17 -0
  19. package/src/styles/theme/tiffany-blue-mobile/element-variables.scss +7 -0
  20. package/src/styles/theme/tiffany-blue-mobile/font.scss +71 -0
  21. package/src/styles/theme/tiffany-blue-mobile/form.scss +51 -0
  22. package/src/styles/theme/tiffany-blue-mobile/general.scss +64 -0
  23. package/src/styles/theme/tiffany-blue-mobile/home.scss +213 -0
  24. package/src/styles/theme/tiffany-blue-mobile/index.scss +280 -0
  25. package/src/styles/theme/tiffany-blue-mobile/input.scss +15 -0
  26. package/src/styles/theme/tiffany-blue-mobile/message.scss +8 -0
  27. package/src/styles/theme/tiffany-blue-mobile/mobile.scss +13 -0
  28. package/src/styles/theme/tiffany-blue-mobile/pagination.scss +17 -0
  29. package/src/styles/theme/tiffany-blue-mobile/radio.scss +13 -0
  30. package/src/styles/theme/tiffany-blue-mobile/scrollbar-style.scss +32 -0
  31. package/src/styles/theme/tiffany-blue-mobile/select.scss +7 -0
  32. package/src/styles/theme/tiffany-blue-mobile/sidebar.scss +289 -0
  33. package/src/styles/theme/tiffany-blue-mobile/tab.scss +84 -0
  34. package/src/styles/theme/tiffany-blue-mobile/table.scss +16 -0
  35. package/src/styles/theme/tiffany-blue-mobile/tree.scss +61 -0
  36. package/src/styles/theme/tiffany-blue-mobile/var.scss +23 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agilebuilder-ui",
3
- "version": "1.1.4-temp2",
3
+ "version": "1.1.4-temp4",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./lib/super-ui.js",
@@ -167,7 +167,7 @@ export default {
167
167
  const uuids = serverPath.split(',')
168
168
  const baseURL = window.$vueApp.config.globalProperties.baseURL
169
169
  const baseAPI = window.$vueApp.config.globalProperties.baseAPI
170
- const tempAction = baseURL + '/common/fs-upload/search-file-names'
170
+ let tempAction = baseURL + '/common/fs-upload/search-file-names'
171
171
  if (isPlateSys(window.$vueApp.config.globalProperties.systemCode)) {
172
172
  tempAction = baseAPI + '/api/search-file-names'
173
173
  }
@@ -308,8 +308,8 @@ export default {
308
308
  const uuids = this.fileInfo.serverPath.split(',')
309
309
  const baseURL = window.$vueApp.config.globalProperties.baseURL
310
310
  const baseAPI = window.$vueApp.config.globalProperties.baseAPI
311
- const tempAction = baseURL + '/common/fs-upload/search-file-names'
312
- if (isPlateSys(this.systemCode)) {
311
+ let tempAction = baseURL + '/common/fs-upload/search-file-names'
312
+ if (isPlateSys(window.$vueApp.config.globalProperties.systemCode)) {
313
313
  tempAction = baseAPI + '/api/search-file-names'
314
314
  }
315
315
  this.$http.post(tempAction, uuids).then((result) => {
@@ -16,9 +16,7 @@
16
16
  >
17
17
  <el-button size="small" type="primary">{{ placeholder }}</el-button>
18
18
  <template #tip>
19
- <el-text size="small">
20
- {{ accept }} {{ $t('imatrixUIMessage.uploadFileTip', { fileSzie: limitFileSize }) }}</el-text
21
- >
19
+ <el-text size="small"> {{ accept }} {{$t('imatrixUIMessage.uploadFileTip',{fileSize: limitFileSize})}}</el-text>
22
20
  </template>
23
21
  </el-upload>
24
22
  <template v-if="fileList && fileList.length > 0">
@@ -127,7 +125,7 @@ if (props.action) {
127
125
  defaultAction.value = props.action
128
126
  } else {
129
127
  let tempAction = baseURL + '/common/fs-upload'
130
- if (isPlateSys(props.systemCode)) {
128
+ if (isPlateSys(window.$vueApp.config.globalProperties.systemCode)) {
131
129
  tempAction = baseAPI + '/component/super-form/uploads'
132
130
  }
133
131
  defaultAction.value = tempAction
@@ -18,9 +18,7 @@
18
18
  <el-icon class="el-icon--upload"><upload-filled /></el-icon>
19
19
  <div class="el-upload__text">{{ placeholder }}</div>
20
20
  <template #tip>
21
- <el-text size="small">
22
- {{ accept }} {{ $t('imatrixUIMessage.uploadFileTip', { fileSzie: limitFileSize }) }}</el-text
23
- >
21
+ <el-text size="small"> {{ accept }} {{$t('imatrixUIMessage.uploadFileTip',{fileSize: limitFileSize})}}</el-text>
24
22
  </template>
25
23
  </el-upload>
26
24
  <template v-if="fileList && fileList.length > 0">
@@ -129,7 +127,7 @@ if (props.action) {
129
127
  defaultAction.value = props.action
130
128
  } else {
131
129
  let tempAction = baseURL + '/common/fs-upload'
132
- if (isPlateSys(props.systemCode)) {
130
+ if (isPlateSys(window.$vueApp.config.globalProperties.systemCode)) {
133
131
  tempAction = baseAPI + '/component/super-form/uploads'
134
132
  }
135
133
  defaultAction.value = tempAction
@@ -124,7 +124,7 @@ import FileUploadMobile from './file-upload-mobile/file-upload.vue'
124
124
  import FileUploadInputMobile from './file-upload-mobile/file-upload-input.vue'
125
125
  import { ref, defineProps } from 'vue'
126
126
  import { getReplaceUrlDomain, isMobileBrowser, isPlateSys } from '../../../src/utils/common-util'
127
- import { Download } from '@element-plus/icons-vue/dist/types'
127
+ import { Download } from '@element-plus/icons-vue'
128
128
  const props = defineProps({
129
129
  openFsUpload: {
130
130
  type: Object,
@@ -658,7 +658,14 @@ export default {
658
658
  const colConfigure = gridParams.colConfigureMap ? gridParams.colConfigureMap[this.column.prop] : null
659
659
  const runtimeInfo = colConfigure && colConfigure.runtime ? colConfigure.runtime : {}
660
660
  const designProperty = runtimeInfo.props ? runtimeInfo.props : {}
661
- console.log('super-grid-dynamicInput--designProperty=', designProperty, 'colConfigure=', colConfigure, 'gridParams.colConfigureMap=', gridParams.colConfigureMap)
661
+ console.log(
662
+ 'super-grid-dynamicInput--designProperty=',
663
+ designProperty,
664
+ 'colConfigure=',
665
+ colConfigure,
666
+ 'gridParams.colConfigureMap=',
667
+ gridParams.colConfigureMap
668
+ )
662
669
  return {
663
670
  deptManTree: false, // 是否是部门人员树
664
671
  isMultiTree: false, // 是否是多选树
@@ -1825,6 +1832,8 @@ export default {
1825
1832
  return 'YYYY'
1826
1833
  } else if (this.type === 'month') {
1827
1834
  return 'MM'
1835
+ } else if (this.dataType === 'TIME') {
1836
+ return 'HH:mm:ss'
1828
1837
  }
1829
1838
  return 'YYYY-MM-DD'
1830
1839
  },
@@ -1938,7 +1947,12 @@ export default {
1938
1947
  let configureObj = this.colConfigure
1939
1948
  let linkPage = configureObj.props.linkPage
1940
1949
  console.log('doClickwithJumpPage-----linkPage=', linkPage, 'eventName=', eventName)
1941
- if (eventName && (eventName === 'click' || eventName === 'prefixClick' || eventName === 'suffixClick' ) && (linkPage && linkPage.jumpPageUrl)) {
1950
+ if (
1951
+ eventName &&
1952
+ (eventName === 'click' || eventName === 'prefixClick' || eventName === 'suffixClick') &&
1953
+ linkPage &&
1954
+ linkPage.jumpPageUrl
1955
+ ) {
1942
1956
  // 表示有跳转页面配置
1943
1957
  const jumpJson = JSON.parse(JSON.stringify(linkPage))
1944
1958
  if (jumpJson && Array.isArray(jumpJson)) {
@@ -1960,7 +1974,7 @@ export default {
1960
1974
  this.jumpPageLink(this.column, this.row, this.listCode, this.rowIndex, jumpJson)
1961
1975
  } else {
1962
1976
  // 表示没有跳转页面配置
1963
- this.callCustomEvent(eventName)
1977
+ this.callCustomEvent(eventName)
1964
1978
  }
1965
1979
  }
1966
1980
  }
@@ -404,7 +404,7 @@ export default {
404
404
  if (this.options && this.options.configureObj) {
405
405
  configureObj = this.options.configureObj
406
406
  }
407
-
407
+
408
408
  let pageContext
409
409
  if (this.options && this.options.pageContext) {
410
410
  pageContext = this.options.pageContext
@@ -2168,10 +2168,10 @@ export default {
2168
2168
  // 表示更改了排序信息
2169
2169
  searchParam.sorts = this.sortInfo
2170
2170
  }
2171
+ if (!searchParam.sorts) {
2172
+ searchParam.sorts = []
2173
+ }
2171
2174
  if (this.mergeFields && this.mergeFields.length > 0) {
2172
- if (!searchParam.sorts) {
2173
- searchParam.sorts = []
2174
- }
2175
2175
  const mergeFieldsArr = []
2176
2176
  for (const mergeField of this.mergeFields) {
2177
2177
  let flag = true
@@ -2191,6 +2191,10 @@ export default {
2191
2191
  mergeFieldsArr.push(...searchParam.sorts)
2192
2192
  searchParam.sorts = mergeFieldsArr
2193
2193
  }
2194
+ debugger
2195
+ if (gridParams.options.initSortInfo) {
2196
+ searchParam.sorts.push(gridParams.options.initSortInfo)
2197
+ }
2194
2198
  // 是否有初始过滤条件
2195
2199
  if (gridParams.options && typeof gridParams.options.initSearchForm !== 'undefined') {
2196
2200
  searchParam.initSearchForm = gridParams.options.initSearchForm
@@ -3129,14 +3133,14 @@ export default {
3129
3133
  },
3130
3134
  // 封装v10字段配置,key是数据库字段名(属性名),value是该字段的配置
3131
3135
  packageListColumnSetting() {
3132
- // key是属性名,value是字段配置
3136
+ // key是属性名,value是字段配置
3133
3137
  let colConfigureMap = {}
3134
- if(this.configureObj){
3138
+ if (this.configureObj) {
3135
3139
  const colItems = this.configureObj.items
3136
- if(colItems) {
3137
- colItems.forEach((colConfigure)=>{
3140
+ if (colItems) {
3141
+ colItems.forEach((colConfigure) => {
3138
3142
  const propName = this.getFormPropName(colConfigure.props.base.prop)
3139
- if(propName){
3143
+ if (propName) {
3140
3144
  colConfigureMap[propName] = colConfigure
3141
3145
  }
3142
3146
  })
@@ -44,8 +44,9 @@ function removeDept (item) {
44
44
 
45
45
  function showResult() {
46
46
  isShowForm.value = true
47
+ JSON.stringify()
47
48
  }
48
49
 
49
50
  defineExpose({showResult})
50
51
 
51
- </script>
52
+ </script>
@@ -17,6 +17,8 @@
17
17
  @import './theme/green/sidebar.scss';
18
18
  @import './display-layout.scss';
19
19
  @import "./table.scss";
20
+ @import './theme/tiffany-blue-mobile/index.scss';
21
+ @import './theme/tiffany-blue-mobile/sidebar.scss';
20
22
 
21
23
  body {
22
24
  overflow: hidden;
@@ -1,9 +1,10 @@
1
1
  @mixin clearfix {
2
- :after {
3
- content: "";
4
- display: table;
5
- clear: both;
6
- }
2
+ // 影响flex布局注释掉
3
+ // :after {
4
+ // content: "";
5
+ // display: table;
6
+ // clear: both;
7
+ // }
7
8
  }
8
9
 
9
10
  @mixin scrollBar {
@@ -0,0 +1,122 @@
1
+ @import "./var.scss";
2
+
3
+ .tiffany-blue-mobile {
4
+ .is-text {
5
+ color: $--button-default-font-color !important;
6
+ }
7
+
8
+ .is-link {
9
+ color: $--button-default-font-color !important;
10
+
11
+ :hover {
12
+ color: #a0d5ff;
13
+ }
14
+ }
15
+
16
+ .el-button--primary {
17
+ border-radius: 4px;
18
+ background: $--button-primary-btn-color;
19
+ border-color: $--button-primary-btn-color;
20
+ }
21
+
22
+ .el-button.el-button--primary:hover {
23
+ background-color: $--color-button-hover;
24
+ }
25
+
26
+ .button--default {
27
+ border-radius: 4px;
28
+ border-color: $--color-primary;
29
+ color: $--color-primary;
30
+ }
31
+
32
+ .button--default:hover {
33
+ color: $--color-primary;
34
+ background-color: $--color-hover;
35
+ border-color: $--color-primary;
36
+ }
37
+
38
+ .operation-area .el-button-group .el-button {
39
+ border-color: $--button-default-border-color;
40
+ color: $--button-default-font-color;
41
+ }
42
+
43
+ .operation-area .el-button-group .el-button:hover {
44
+ background-color: $--color-hover;
45
+ }
46
+
47
+ .el-button.el-button--primary.is-plain {
48
+ color: $--button-default-font-color;
49
+ background-color: #ffffff;
50
+ border: 1px solid $--button-default-border-color;
51
+ }
52
+
53
+ .el-button.el-button--primary.is-plain:hover {
54
+ color: $--color-primary;
55
+ background-color: $--color-hover;
56
+ border-color: $--color-primary;
57
+ }
58
+
59
+ .el-dropdown-link {
60
+ color: $--button-default-font-color;
61
+ font-family: Source Han Sans CN;
62
+ font-weight: regular;
63
+ font-size: 0.9rem;
64
+ line-height: 22px;
65
+ letter-spacing: 0px;
66
+ text-align: center;
67
+ cursor: pointer;
68
+ }
69
+
70
+ //switch 开关选中字体样式
71
+ .el-switch__label.is-active {
72
+ color: $--color-primary;
73
+ }
74
+
75
+ //switch 开关样式
76
+ .el-switch.is-checked .el-switch__core {
77
+ border-color: $--color-primary;
78
+ background-color: $--color-primary;
79
+ }
80
+
81
+ //单选选中样式
82
+ .el-radio__input.is-checked .el-radio__inner {
83
+ color: $--color-primary;
84
+ border-color: $--color-primary;
85
+ background-color: $--color-primary;
86
+ }
87
+
88
+ //单选选中样式
89
+ .el-radio__input.is-checked+.el-radio__label {
90
+ color: $--color-primary;
91
+ }
92
+
93
+ //下拉菜单
94
+ .el-dropdown__list .el-dropdown-menu .el-dropdown-menu__item:hover {
95
+ color: $--select-font-color;
96
+ background-color: $th-cell-background;
97
+ }
98
+
99
+ //工作流结束按钮
100
+ .workflow-end-button {
101
+ background-color: #ee6666;
102
+ border-color: #ee6666;
103
+ color: #FFFFFF;
104
+ }
105
+
106
+ //返回按钮
107
+ .button--return {
108
+ background-color: #FFFFFF;
109
+ color: #8C8C8C;
110
+ border: 1px solid #E3E3E3;
111
+ }
112
+
113
+ //page-runtime 头部按钮样式
114
+ .page-runtime-header-btn {
115
+ margin-bottom: 10px;
116
+ display: inline-block;
117
+ }
118
+
119
+ .page-runtime-header-btn+.page-runtime-header-btn {
120
+ margin-left: 5px;
121
+ }
122
+ }
@@ -0,0 +1,144 @@
1
+ @import "./var.scss";
2
+
3
+ .tiffany-blue-mobile {
4
+ $titleColor: rgba(0, 0, 0, 0.85);
5
+
6
+ el-card box-card is-always-shadow .card-radius {
7
+ border-radius: 12px
8
+ }
9
+
10
+ .form-card-header {
11
+ width: 3px;
12
+ height: 14px;
13
+ left: 0;
14
+ align-items: center;
15
+ text-align: center;
16
+ }
17
+
18
+ .form-card-header-bgc {
19
+ width: 3px;
20
+ height: 14px;
21
+ display: flex;
22
+ background-color: #3D4CF2
23
+ }
24
+
25
+ .form-card-text {
26
+ padding-left: 8px;
27
+ font-size: 1rem;
28
+ line-height: 24px;
29
+ font-weight: 500;
30
+ color: $titleColor;
31
+ display: table-cell;
32
+ position: relative;
33
+ }
34
+
35
+ .superForm {
36
+ .el-card {
37
+ border-radius: 12px;
38
+ box-shadow: 0 1px 4px 0 rgba(0, 13, 31, 0.10);
39
+ }
40
+
41
+
42
+ }
43
+
44
+
45
+ .el-card__header {
46
+ height: 40px;
47
+ background: linear-gradient(180deg, rgba(129, 216, 207, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
48
+ color: #333333;
49
+ font-family: Source Han Sans CN;
50
+ font-size: 0.9rem;
51
+ font-weight: bold;
52
+ text-align: left;
53
+ padding: 9px 0px 9px 20px;
54
+ display: flex;
55
+ align-items: center;
56
+ }
57
+
58
+ .card-style {
59
+ width: 100%;
60
+ margin-top: 20px;
61
+ }
62
+
63
+ .ab_ui_card {
64
+ height: 86px;
65
+ width: 100%;
66
+ background: #FFFFFF;
67
+ box-shadow: 0px 0px 20px 0px rgba(204, 204, 204, 0.15);
68
+ margin-top: 10px;
69
+ position: relative;
70
+ padding: 10px;
71
+ box-sizing: border-box;
72
+ border-radius: 10px;
73
+
74
+ .ab_ui_card_header_bg {
75
+ border-radius: 10px;
76
+ width: 100%;
77
+ height: 20px;
78
+ background: linear-gradient(180deg, rgba(129, 216, 207, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
79
+ position: absolute;
80
+ top: 0;
81
+ left: 0;
82
+ }
83
+
84
+ .ab_ui_card_header_message {
85
+ display: flex;
86
+ justify-content: space-between;
87
+ align-items: center;
88
+
89
+ .ab_ui_card_header_message_left {
90
+ display: flex;
91
+
92
+ .ab_ui_card_title {
93
+ font-size: 1rem;
94
+ margin-right: 5px;
95
+ }
96
+
97
+ .ab_ui_card_icon_warning {
98
+ font-size: 0.6rem;
99
+ background: linear-gradient(136deg, #FFCF37 0%, #FFA745 100%);
100
+ border-radius: 4px;
101
+ padding: 3px 6px;
102
+ color: #FFFFFF;
103
+ height: 100%;
104
+ }
105
+
106
+ .ab_ui_card_icon_danger {
107
+ font-size: 0.6rem;
108
+ background: linear-gradient(135deg, #FF865D 0%, #FC4A30 100%);
109
+ border-radius: 4px;
110
+ padding: 3px 6px;
111
+ color: #FFFFFF;
112
+ height: 100%;
113
+ }
114
+ }
115
+
116
+ .ab_ui_card_time {
117
+ color: #999999;
118
+ }
119
+ }
120
+
121
+ .ab_ui_card_content {
122
+ margin-top: 5px;
123
+ font-size: 0.8rem;
124
+ color: #777777;
125
+ overflow: hidden;
126
+ text-overflow: ellipsis;
127
+ width: 80%;
128
+ height: 100%;
129
+
130
+ }
131
+ }
132
+
133
+ .general_card {
134
+ padding: 20px 10px 10px 10px;
135
+ box-shadow: 0px 0px 20px 0px rgba(204, 204, 204, 0.15);
136
+ border-radius: 10px 10px 10px 10px;
137
+ margin-top: 20px;
138
+ background-color: #ffffff;
139
+
140
+ .title_content {
141
+ font-size: 0.8rem;
142
+ }
143
+ }
144
+ }
@@ -0,0 +1,16 @@
1
+ @import "./var.scss";
2
+
3
+ .tiffany-blue-mobile {
4
+
5
+ .el-checkbox__input.is-checked .el-checkbox__inner,
6
+ .el-checkbox__input.is-indeterminate .el-checkbox__inner {
7
+ background-color: $--color-primary;
8
+ border-color: $--color-primary;
9
+ }
10
+ .el-checkbox-group .is-checked .el-checkbox__label{
11
+ color: $--color-primary;
12
+ }
13
+ .el-checkbox__input.is-checked+.el-checkbox__label{
14
+ color: $--color-primary;
15
+ }
16
+ }
@@ -0,0 +1,17 @@
1
+ .tiffany-blue-mobile {
2
+ .el-dialog__title::before {
3
+ content: "";
4
+ text-align: center;
5
+ background: #1A6BF3;
6
+ float: left;
7
+ position: relative;
8
+ border-radius: 3px;
9
+ /** 定义成 block 元素 **/
10
+ display: block;
11
+ height: 21px;
12
+ width: 4px;
13
+ margin-right: 12px;
14
+ }
15
+
16
+
17
+ }
@@ -0,0 +1,7 @@
1
+ @import "./var.scss";
2
+ // 这样导入报404找不到文件
3
+ // .dark-blue {
4
+ // /* 改变 icon 字体路径变量,必需 */
5
+ // $--font-path: '~element-plus/theme-chalk/fonts';
6
+ // @import '~element-plus/theme-chalk/index.css';
7
+ // }
@@ -0,0 +1,71 @@
1
+ .tiffany-blue-mobile {
2
+ $titleColor: rgba(0, 0, 0, 0.85);
3
+
4
+ .list-file {
5
+ color: rgba(0, 13, 31, 0.45);
6
+ font-size: 0.9rem;
7
+ cursor: pointer;
8
+ }
9
+
10
+ .form-list-file {
11
+ color: rgba(0, 0, 0, 0.65);
12
+ background: #F2F6FA;
13
+ border-radius: 6px;
14
+ font-size: 0.9rem;
15
+ cursor: pointer;
16
+ height: 28px;
17
+ line-height: 28px;
18
+ padding: 0 8px 0 8px;
19
+ margin-right: 32px
20
+ }
21
+
22
+ .tip-font {
23
+ color: rgba(0, 0, 0, 0.65);
24
+ font-size: 0.9rem;
25
+ }
26
+
27
+ .superForm {
28
+ .el-form-item__label {
29
+ color: rgba(0, 13, 31, 0.85);
30
+ }
31
+ }
32
+
33
+
34
+ .page-layout__title {
35
+ width: 46px;
36
+ height: 16px;
37
+ font-size: 0.7rem;
38
+ font-weight: 500;
39
+ color: #333333;
40
+ line-height: 13px;
41
+ }
42
+
43
+ .component-type-name__title {
44
+ width: 40px;
45
+ height: 14px;
46
+ font-size: 0.6rem;
47
+ font-weight: 500;
48
+ color: #333333;
49
+ line-height: 12px;
50
+ // -webkit-background-clip: text;
51
+ // -webkit-text-fill-color: transparent;
52
+ }
53
+
54
+ .page-layout__title::before {
55
+ content: "";
56
+ text-align: center;
57
+ background: #1A6BF3;
58
+ float: left;
59
+ position: relative;
60
+ border-radius: 3px;
61
+ /** 定义成 block 元素 **/
62
+ display: block;
63
+ // height: 21px;
64
+ // width: 4px;
65
+ margin-right: 12px;
66
+
67
+ width: 2px;
68
+ height: 16px;
69
+
70
+ }
71
+ }
@@ -0,0 +1,51 @@
1
+ .tiffany-blue-mobile {
2
+
3
+ .button-at-top {
4
+ width: 100%;
5
+ background: rgb(255, 255, 255);
6
+ line-height: 72px;
7
+ height: 72px;
8
+ position: absolute;
9
+ z-index: 100;
10
+ top: 0px;
11
+ left: 0px;
12
+ right: 0px;
13
+ }
14
+
15
+ .button-at-bottom {
16
+ width: 100%;
17
+ background: rgb(255, 255, 255);
18
+ line-height: 72px;
19
+ height: 72px;
20
+ position: absolute;
21
+ bottom: 0px;
22
+ z-index: 100;
23
+ left: 0px;
24
+ right: 0px;
25
+ }
26
+
27
+ .form-top-button {
28
+ height: 72px;
29
+ float: left;
30
+ padding-left: 24px;
31
+ line-height: 72px;
32
+ }
33
+
34
+ .form-bottom-button {
35
+ height: 72px;
36
+ float: right;
37
+ padding-right: 24px;
38
+ line-height: 72px;
39
+ }
40
+
41
+ .form-center-position{
42
+ position: relative;
43
+
44
+ .form-center-son{
45
+ position: absolute;
46
+ top: 50%;
47
+ left: 50%;
48
+ transform: translate(-50%,-50%);
49
+ }
50
+ }
51
+ }