jufubao-base 1.0.194 → 1.0.196-beta101

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 (27) hide show
  1. package/commands.js +1 -1
  2. package/package.json +1 -1
  3. package/src/ICONS.js +1128 -0
  4. package/src/components/JfbBaseAddress/Attr.js +109 -1
  5. package/src/components/JfbBaseAddress/JfbBaseAddress.vue +153 -77
  6. package/src/components/JfbBaseAddress/XdTfkItem.vue +117 -0
  7. package/src/components/JfbBaseFastLink/Attr.js +24 -8
  8. package/src/components/JfbBaseFastLink/JfbBaseFastLink.vue +37 -21
  9. package/src/components/JfbBaseFooter/Attr.js +141 -75
  10. package/src/components/JfbBaseFooter/JfbBaseFooter.vue +50 -15
  11. package/src/components/JfbBaseImageBlock/JfbBaseImageBlock.vue +2 -0
  12. package/src/components/JfbBaseOrderDetail/Attr.js +147 -65
  13. package/src/components/JfbBaseOrderDetail/JfbBaseOrderDetail.vue +96 -46
  14. package/src/components/JfbBaseOrderList/Attr.js +59 -2
  15. package/src/components/JfbBaseOrderList/JfbBaseOrderList.vue +139 -92
  16. package/src/components/JfbBaseOrderList/Mock.js +3 -0
  17. package/src/components/JfbBaseOrderList/XdTfkOrderItem.vue +267 -0
  18. package/src/components/JfbBasePoster/Attr.js +8 -0
  19. package/src/components/JfbBasePoster/JfbBasePoster.vue +6 -0
  20. package/src/components/JfbBaseUserCenter/Attr.js +308 -52
  21. package/src/components/JfbBaseUserCenter/JfbBaseUserCenter.vue +138 -31
  22. package/src/components/JfbBaseUserInfo/Attr.js +194 -33
  23. package/src/components/JfbBaseUserInfo/JfbBaseUserInfo.vue +80 -44
  24. package/src/components/JfbBaseUserOrder/Attr.js +322 -28
  25. package/src/components/JfbBaseUserOrder/JfbBaseUserOrder.vue +205 -54
  26. package/src/components/JfbBaseWallet/Attr.js +376 -8
  27. package/src/components/JfbBaseWallet/JfbBaseWallet.vue +185 -49
@@ -17,9 +17,18 @@
17
17
  <view class="x-line"></view>
18
18
  <view class="user-center-box" :style="{padding: outMargin}">
19
19
  <view :style="{borderRadius: bodyRadius + 'rpx', backgroundColor:bodyBackgroundColor, padding:outPadding}">
20
- <view class="my-card-add__btn">
21
- <view :style="{color: cardNameColor}">我的{{cardName}}</view>
22
- <view :style="{borderColor:btnBoxColor || mainColor,color:btnBoxColor || mainColor}" @click="handleToLink(add_url)">添加{{cardName}}</view>
20
+ <view class="my-card-add__btn" :style="[titleMarginComp]">
21
+ <view :style="[titleStyleComp]">我的{{cardName}}</view>
22
+ <view class="addBtn" :style="[addBtnStyleComp]" @click="handleToLink(add_url)">
23
+ <text>添加{{cardName}}</text>
24
+ <view v-if="isShowICONBtn === 'Y'">
25
+ <xd-font-icon
26
+ icon="iconxiangyou_xian"
27
+ :color="addBtnStyleComp.color"
28
+ :size="20"
29
+ ></xd-font-icon>
30
+ </view>
31
+ </view>
23
32
  </view>
24
33
  <view
25
34
  class="my-card-add__link"
@@ -27,7 +36,9 @@
27
36
  borderRadius: radius + 'rpx',
28
37
  background: backgroundColor,
29
38
  border: borderBox,
30
- marginTop: padding + 'rpx'
39
+ marginTop: rowSpacing + 'rpx',
40
+ padding:contentPaddingComp,
41
+ boxShadow: contShadow
31
42
  }"
32
43
  >
33
44
  <view class="my-card-add__link-num" v-if="0">
@@ -42,7 +53,8 @@
42
53
  :style="{
43
54
  color:btnTextColor,
44
55
  background:btnBgColor,
45
- fontSize: btnFontSize + 'rpx'
56
+ fontSize: btnFontSize + 'rpx',
57
+ borderRadius:btnRadius + 'rpx',
46
58
  }"
47
59
  @click="handleToLink(card_url)"
48
60
  >
@@ -71,6 +83,15 @@
71
83
  },
72
84
  mixins: [componentsMixins,extsMixins,JfbBaseUserCenterMixin],
73
85
  computed: {
86
+ titleMarginComp(){
87
+ let str = `${this.checkValue(this.titleMargin.top, 0)}rpx`;
88
+ str = `${str} ${this.checkValue(this.titleMargin.right, 0)}rpx`;
89
+ str = `${str} ${this.checkValue(this.titleMargin.bottom, 0)}rpx`;
90
+ str = `${str} ${this.checkValue(this.titleMargin.left, 0)}rpx`;
91
+ return {
92
+ padding: str,
93
+ }
94
+ },
74
95
  outPadding() {
75
96
  let str = `${this.checkValue(this.bodyPadding.top, 0)}rpx`;
76
97
  str = `${str} ${this.checkValue(this.bodyPadding.right, 0)}rpx`;
@@ -86,38 +107,99 @@
86
107
  return str
87
108
  },
88
109
  borderBox() {
89
- if (this.is_border === 'Y') return `${this.is_border_w}rpx solid ${this.is_border_c}`;
110
+ if (this.is_border === 'Y') return `${this.is_border_w}rpx ${this.is_border_s} ${this.is_border_c}`;
90
111
  else return '0';
91
112
  },
113
+ titleStyleComp(){
114
+ return {
115
+ fontSize: this.titleStyle.fontSize || '28rpx',
116
+ color: `${this.titleStyle.color || '#333'}`,
117
+ fontWeight: `${this.titleStyle.fontWeight || 'normal'}`,
118
+ }
119
+ },
120
+ addBtnStyleComp(){
121
+ let border = {};
122
+ if(this.addBtnBorder && this.addBtnBorder.type === 'Y') {
123
+ let value = this.addBtnBorder.value ||{};
124
+ if(value.width) border['borderWidth'] = value.width + 'rpx';
125
+ if(value.color) border['borderColor'] = value.color;
126
+ if(value.style) border['borderStyle'] = value.style;
127
+ }
128
+ if(this.addBtnBorder && this.addBtnBorder.type === 'N') {
129
+ border['borderWidth'] = 0;
130
+ border['borderColor'] = '';
131
+ border['borderStyle'] = ''
132
+ }
133
+
134
+ let addBtnShadow = {};
135
+ if(this.addBtnShadow && this.addBtnShadow.type === 'Y') {
136
+ let value = this.addBtnShadow.value || {};
137
+ if(value.color && value.width) {
138
+ addBtnShadow['boxShadow'] = `0 0 ${value.width}rpx ${value.color}`
139
+ }
140
+ }
141
+ return {
142
+ color: this.addBtnStyle.color || this.mainColor,
143
+ fontSize: this.addBtnStyle.fontSize || '26rpx',
144
+ fontWeight: this.addBtnStyle.fontWeight || 'normal',
145
+ borderColor: this.mainColor,
146
+ borderWidth: '2rpx',
147
+ borderStyle:'solid',
148
+ backgroundColor: this.addBtnBgColor || 'rgba(0,0,0,0)',
149
+ borderRadius:this.addBtnRadius + 'rpx',
150
+ ...border,
151
+ ...addBtnShadow
152
+ }
153
+ },
154
+ contentPaddingComp(){
155
+ let str = `${this.checkValue(this.contentPadding.top, 40)}rpx`;
156
+ str = `${str} ${this.checkValue(this.contentPadding.right, 40)}rpx`;
157
+ str = `${str} ${this.checkValue(this.contentPadding.bottom, 40)}rpx`;
158
+ str = `${str} ${this.checkValue(this.contentPadding.left, 40)}rpx`;
159
+ return str
160
+ },
92
161
  },
93
162
  data() {
94
163
  return {
95
164
  add_url: '',
96
165
  pwd_url: '',
97
166
  card_url:'',
98
- cardName: '',
167
+ cardName: '卡券',
168
+ bodyPadding: {},
169
+ bodyRadius: 0,
170
+ bodyBackgroundColor: 'rgba(0,0,0,0)',
171
+ bodyMargin:{},
172
+ rowSpacing: 20,
173
+
174
+ //title
175
+ titleStyle:{},
176
+ titleMargin:{},
99
177
 
100
- //基础
101
- color: '#333',
178
+ //添加按钮
179
+ addBtnBgColor:'rgba(0,0,0,0)',
180
+ addBtnStyle:{},
181
+ addBtnBorder:{},
182
+ addBtnShadow:{},
183
+ addBtnRadius: '40',
184
+ isShowICONBtn:'N',
185
+
186
+ //进入
187
+ contentPadding:{},
102
188
  backgroundColor: 'rgba(0,0,0,0)',
103
189
  radius: 0,
104
- padding: 20,
190
+ contShadow:'0 0 0 rgba(0,0,0,0)',
191
+
192
+ //进入按钮样式
105
193
  btnBgColor: '',
106
194
  btnTextColor: '',
107
195
  btnFontSize: 24,
196
+ btnRadius:'40',
108
197
 
109
198
  //边框
110
199
  is_border: 'Y',
111
200
  is_border_w: 0,
112
201
  is_border_c: '',
113
202
 
114
- //整体
115
- bodyPadding: {},
116
- bodyRadius: 0,
117
- bodyBackgroundColor: 'rgba(0,0,0,0)',
118
- bodyMargin:{},
119
- cardNameColor: '#333',
120
- btnBoxColor:'',
121
203
  }
122
204
  },
123
205
  watch: {
@@ -131,6 +213,7 @@
131
213
  },
132
214
  methods: {
133
215
  handleToLink(path, type) {
216
+ if (this.$configProject['isPreview']) return;
134
217
  if(!path) {
135
218
  console.warn(`跳转地址不存在`)
136
219
  }
@@ -144,33 +227,53 @@
144
227
  * @param container {object} 业务组件对象自己
145
228
  */
146
229
  init(container) {
147
-
148
- //整体
230
+ this.cardName = getContainerPropsValue(container, 'content.cardName', '卡券');
149
231
  this.bodyMargin = getContainerPropsValue(container, 'content.bodyMargin', {});
150
232
  this.bodyRadius = getContainerPropsValue(container, 'content.bodyRadius', 0);
151
233
  this.bodyBackgroundColor = getContainerPropsValue(container, 'content.bodyBackgroundColor', 'rgba(0,0,0,0)');
152
234
  this.bodyPadding = getContainerPropsValue(container, 'content.bodyPadding', {});
235
+ this.rowSpacing = getContainerPropsValue(container, 'content.padding', 20);
236
+
237
+ //标题
238
+ this.titleStyle = getContainerPropsValue(container, 'content.titleStyle', {});
239
+ this.titleMargin = getContainerPropsValue(container, 'content.titleMargin', {})
153
240
 
154
- //基础
241
+ //添加按钮
242
+ this.addBtnBgColor = getContainerPropsValue(container, 'content.addBtnBgColor', 'rgba(0,0,0,0)');
243
+ this.addBtnStyle = getContainerPropsValue(container, 'content.addBtnStyle', {});
244
+ this.addBtnBorder = getContainerPropsValue(container, 'content.addBtnBorder', {});
245
+ this.addBtnRadius = getContainerPropsValue(container, 'content.addBtnRadius', '40');
246
+ this.addBtnShadow = getContainerPropsValue(container, 'content.addBtnShadow', {});
247
+ this.isShowICONBtn = getContainerPropsValue(container, 'content.isShowICONBtn', 'N')
248
+
249
+ //进入
250
+ this.contentPadding = getContainerPropsValue(container, 'content.contentPadding', {});
155
251
  this.radius = getContainerPropsValue(container, 'content.radius', 0);
156
252
  this.color = getContainerPropsValue(container, 'content.textColor', '#333');
157
253
  this.backgroundColor = getContainerPropsValue(container, 'content.backgroundColor', '#f8f8f8');
158
- this.padding = getContainerPropsValue(container, 'content.padding', 20);
159
- this.btnBgColor = getContainerPropsValue(container, 'content.btnBgColor', this.mainGradient);
254
+ this.contShadow = this.getXdShadow({width:20, color:'rgba(0,0,0,0)'},getContainerPropsValue(container, 'content.contShadow', {}))
255
+
256
+ //进入按钮
257
+ this.btnBgColor = getContainerPropsValue(container, 'content.btnBgColor', this.mainGradient||this.mainColor);
160
258
  this.btnTextColor = getContainerPropsValue(container, 'content.btnTextColor', '#fff');
161
259
  this.btnFontSize = getContainerPropsValue(container, 'content.btnFontSize',26);
162
- this.cardNameColor = getContainerPropsValue(container, 'content.cardNameColor','#333');
163
- this.btnBoxColor = getContainerPropsValue(container, 'content.cardNameColor','');
260
+ this.btnRadius = getContainerPropsValue(container, 'content.btnRadius','40');
261
+ this.contBorder = getContainerPropsValue(container, 'content.contBorder', {});
164
262
  this.is_border = getContainerPropsValue(container, 'content.is_border', 'N');
165
263
  this.is_border_c = getContainerPropsValue(container, 'content.is_border_c', '#fff');
166
264
  this.is_border_w = getContainerPropsValue(container, 'content.is_border_w', 2);
265
+ this.is_border_s = 'solid';
266
+ if(this.contBorder.type === 'Y') {
267
+ this.is_border = 'Y';
268
+ if(this.contBorder.value && this.contBorder.value.width) this.is_border_w = this.contBorder.value.width;
269
+ if(this.contBorder.value && this.contBorder.value.color) this.is_border_c = this.contBorder.value.color;
270
+ if(this.contBorder.value && this.contBorder.value.style) this.is_border_s = this.contBorder.value.style;
167
271
 
168
- //其他
272
+ }
273
+ //链接
169
274
  this.add_url = getContainerPropsValue(container, 'content.add_url', {value: ''}).value;
170
275
  this.pwd_url = getContainerPropsValue(container, 'content.pwd_url', {value: ''}).value;
171
276
  this.card_url = getContainerPropsValue(container, 'content.card_url', {value: ''}).value;
172
- this.cardName = getContainerPropsValue(container, 'content.cardName', '卡券');
173
-
174
277
  },
175
278
  }
176
279
  }
@@ -182,7 +285,15 @@
182
285
 
183
286
  .jfb-base-user-center {
184
287
  &__body{
288
+ & .addBtn {
289
+ display: flex;
290
+ justify-content: center;
291
+ align-items: center;
185
292
 
293
+ & > view {
294
+ margin-left: 10rpx;
295
+ }
296
+ }
186
297
  }
187
298
  }
188
299
 
@@ -197,9 +308,6 @@
197
308
  width: unit(200, rpx);
198
309
  height: unit(60, rpx);
199
310
  line-height: unit(60, rpx);
200
- border-radius: unit(30, rpx);
201
- border: 1px solid #FF5733;
202
- color: #FF5733;
203
311
  text-align: center;
204
312
  }
205
313
  }
@@ -235,7 +343,6 @@
235
343
  height: unit(80, rpx);
236
344
  line-height: unit(80, rpx);
237
345
  border-radius: unit(100, rpx);
238
- font-size: unit(24, rpx);
239
346
  text-align: center;
240
347
  margin-top: unit(30, rpx);
241
348
  }
@@ -6,12 +6,6 @@ export default {
6
6
  style: [],
7
7
  content: (data)=>{
8
8
  return [
9
- {
10
- label: '',
11
- ele: 'slot',
12
- slot: 'is_reference_title',
13
- groupKey:'advanced',
14
- },
15
9
  {
16
10
  label: '内容排版:',
17
11
  ele: 'xd-radio',
@@ -27,30 +21,66 @@ export default {
27
21
  ]
28
22
  },
29
23
  {
30
- label: '内容文字颜色:',
31
- ele: 'xd-color',
32
- valueKey: 'textColor',
24
+ label: '退出登录自定义名称:',
25
+ ele: 'el-input',
26
+ type: 'text',
27
+ groupKey:'content',
28
+ valueKey: 'logoutName',
29
+ value: data['logoutName'] || '',
30
+ notice: '退出登录自定义名称设置,默认值:<span style="color:red">[退出登录]</span>',
31
+ inline: false,
32
+ className: 'input60',
33
+ },
34
+
35
+ {
36
+ ele: 'title',
37
+ label: '基础',
38
+ size: 'small',
33
39
  groupKey:'style',
34
- value: data.textColor || '',
35
- placeholder: '请选择内容文字颜色',
36
- classNmae: 'input80',
37
40
  },
38
41
  {
39
- label: '内容背景颜色:',
42
+ label: '设置外边距:',
43
+ ele: 'xd-margin-padding',
44
+ valueKey: 'margin',
45
+ groupKey:'style',
46
+ value: data['margin'] || null,
47
+ setting: {
48
+ type: 'margin',
49
+ },
50
+ inline: false,
51
+ notice: '设置外边距,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
52
+ },
53
+ {
54
+ label: '设置填充:',
55
+ groupKey:'style',
56
+ ele: 'xd-margin-padding',
57
+ valueKey: 'padding',
58
+ value: data['padding'] || null,
59
+ setting: {
60
+ type: 'padding',
61
+ },
62
+ placeholder: '设置填充',
63
+ inline: false,
64
+ notice: '设置填充,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
65
+ },
66
+ {
67
+ label: '背景颜色:',
40
68
  ele: 'xd-color',
41
69
  valueKey: 'backgroundColor',
42
70
  groupKey:'style',
43
71
  value: data.backgroundColor || '',
44
- placeholder: '请选择内容背景颜色',
72
+ labelInline:true,
73
+ placeholder: '请选择背景颜色',
45
74
  classNmae: 'input80',
46
75
  },
47
76
  {
48
- label: '内容圆角设置:',
77
+ label: '圆角设置:',
49
78
  ele: 'xd-site-select-list',
50
79
  valueKey: 'radius',
51
- value: data['radius'] || '',
80
+ value: data['radius'] || '0',
81
+ labelInline:true,
52
82
  groupKey:'style',
53
- placeholder: '请选择内容圆角设置',
83
+ placeholder: '请选择圆角设置',
54
84
  multiple: false,
55
85
  className: 'input60',
56
86
  handleCustom({action, data}) {
@@ -67,36 +97,138 @@ export default {
67
97
  },
68
98
  },
69
99
  {
70
- label: '内容设置外边距:',
71
- ele: 'xd-margin-padding',
72
- valueKey: 'margin',
100
+ label: '投影设置:',
101
+ ele: 'xd-shadow',
73
102
  groupKey:'style',
74
- value: data['margin'] || null,
103
+ valueKey: 'contShadow',
104
+ value: data['contShadow'] || '',
105
+ labelInline:true,
75
106
  setting: {
76
- type: 'margin',
107
+ selected: 'N'
108
+ },
109
+ handleCustom({action, data}) {
110
+ XdBus.getParentApi('getOptionsSettingList')({setting_id: 'edtix_style_radius'})
111
+ .then(res => {
112
+ data.cb(res.list)
113
+ })
114
+ .catch(error => {
115
+ console.error(error);
116
+ data.cb([])
117
+ });
77
118
  },
78
- placeholder: '请设置外边距',
79
- inline: false,
80
- notice: '设置外边距,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">0</span>像素',
81
119
  },
82
120
  {
83
- label: '内容设置内边距:',
121
+ label: '边框设置:',
122
+ ele: 'xd-border',
84
123
  groupKey:'style',
85
- ele: 'xd-margin-padding',
86
- valueKey: 'padding',
87
- value: data['padding'] || null,
124
+ valueKey: 'contBorder',
125
+ value: data['contBorder'] || '',
126
+ labelInline:true,
88
127
  setting: {
89
- type: 'padding',
128
+ selected:'N'
90
129
  },
91
- placeholder: '请设置边距',
92
- inline: false,
93
- notice: '设置内边距,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
94
130
  },
131
+ {
132
+ label: "昵称字体样式设置",
133
+ ele: "xd-text-and-bgc",
134
+ groupKey:'style',
135
+ valueKey: 'nickStyle',
136
+ value: data['nickStyle'] || null,
137
+ setting: {
138
+ fontSize: true,
139
+ color: true,
140
+ bgColor: false,
141
+ weight: true,
142
+ selected:false
143
+ },
144
+ handleCustom({action, data}) {
145
+ XdBus.getParentApi('getOptionsSettingList')({setting_id: 'edtix_style_font_size'})
146
+ .then(res => {
147
+ data.cb(res.list)
148
+ })
149
+ .catch(error => {
150
+ console.error(error);
151
+ data.cb([])
152
+ });
153
+ },
154
+ },
155
+ {
156
+ label: "退出字体样式设置",
157
+ ele: "xd-text-and-bgc",
158
+ groupKey:'style',
159
+ valueKey: 'logoutStyle',
160
+ value: data['logoutStyle'] || null,
161
+ setting: {
162
+ fontSize: true,
163
+ color: true,
164
+ bgColor: false,
165
+ weight: true,
166
+ selected:false
167
+ },
168
+ handleCustom({action, data}) {
169
+ XdBus.getParentApi('getOptionsSettingList')({setting_id: 'edtix_style_font_size'})
170
+ .then(res => {
171
+ data.cb(res.list)
172
+ })
173
+ .catch(error => {
174
+ console.error(error);
175
+ data.cb([])
176
+ });
177
+ },
178
+ },
179
+
180
+ {
181
+ ele: 'title',
182
+ label: '用户图像设置',
183
+ size: 'small',
184
+ groupKey:'style',
185
+ },
186
+ {
187
+ label: '边框颜色:',
188
+ ele: 'xd-color',
189
+ groupKey:'style',
190
+ valueKey: 'imageColor',
191
+ value: data['imageColor'] || '',
192
+ placeholder: '请选择背景颜色',
193
+ classNmae: 'input80',
194
+ labelInline:true,
195
+ },
196
+ {
197
+ label: '圆角设置:',
198
+ ele: 'xd-site-select-list',
199
+ valueKey: 'imageRadius',
200
+ value: data['imageRadius'] || '50%',
201
+ groupKey:'style',
202
+ placeholder: '请选择圆角设置',
203
+ labelInline:true,
204
+ multiple: false,
205
+ className: 'input60',
206
+ handleCustom({action, data}) {
207
+ XdBus.getParentApi('getOptionsSettingList')({
208
+ setting_id: 'edtix_style_radius',
209
+ key: Date.now()
210
+ })
211
+ .then(res => {
212
+ data.cb(res.list.map(item=>{
213
+ return {
214
+ ...item,
215
+ value: item.value + 'rpx'
216
+ }
217
+ }).concat({label: '圆角', value:'50%'}))
218
+ })
219
+ .catch(error => {
220
+ console.error(error);
221
+ });
222
+ },
223
+ },
224
+
225
+ //=====属性已废弃(不能删除,已隐藏)====
95
226
  {
96
227
  ele: 'title',
97
228
  label: '投影设置',
98
229
  size: 'small',
99
230
  groupKey:'style',
231
+ hidden: true,
100
232
  },
101
233
  {
102
234
  label: '是否有投影:',
@@ -107,6 +239,7 @@ export default {
107
239
  placeholder: '请选择是否投影',
108
240
  multiple: false,
109
241
  className: 'input80',
242
+ hidden: true,
110
243
  list: [
111
244
  {label: '是', value: 'Y'},
112
245
  {label: '否', value: 'N'},
@@ -120,6 +253,7 @@ export default {
120
253
  value: data['is_shadow_bg'] || '',
121
254
  placeholder: '请选择投影颜色',
122
255
  classNmae: 'input80',
256
+ hidden: true,
123
257
  },
124
258
  data['is_shadow'] === 'Y' && {
125
259
  label: '投影范围:',
@@ -142,16 +276,19 @@ export default {
142
276
  console.error(error);
143
277
  });
144
278
  },
279
+ hidden: true,
145
280
  },
146
281
  {
147
282
  ele: 'title',
148
283
  label: '边框设置',
149
284
  size: 'small',
150
285
  groupKey:'style',
286
+ hidden: true,
151
287
  },
152
288
  {
153
289
  label: '是否有边框:',
154
290
  ele: 'xd-radio',
291
+ hidden: true,
155
292
  valueKey: 'is_border',
156
293
  groupKey:'style',
157
294
  value: data['is_border'] || 'N',
@@ -165,6 +302,7 @@ export default {
165
302
  },
166
303
  data['is_border'] === 'Y' && {
167
304
  label: '边框颜色:',
305
+ hidden: true,
168
306
  ele: 'xd-color',
169
307
  groupKey:'style',
170
308
  valueKey: 'is_border_c',
@@ -173,6 +311,7 @@ export default {
173
311
  classNmae: 'input80',
174
312
  },
175
313
  data['is_border'] === 'Y' && {
314
+ hidden: true,
176
315
  label: '边框大小:',
177
316
  ele: 'el-input',
178
317
  type: 'number',
@@ -182,6 +321,28 @@ export default {
182
321
  placeholder: '请输入边框颜色',
183
322
  className: 'input80',
184
323
  },
324
+ //=====属性已废弃====
325
+
326
+ 0&&{
327
+ label: '是否显示设置:',
328
+ ele: 'xd-radio',
329
+ valueKey: 'isSetting',
330
+ value: data['isSetting'] || 'N',
331
+ groupKey:'advanced',
332
+ placeholder: '是否显示设置',
333
+ multiple: false,
334
+ className: 'input80',
335
+ list: [
336
+ {label: '不显示', value: 'N'},
337
+ {label: '显示', value: 'Y'},
338
+ ]
339
+ },
340
+ {
341
+ label: '',
342
+ ele: 'slot',
343
+ slot: 'is_reference_title',
344
+ groupKey:'advanced',
345
+ },
185
346
  {
186
347
  label: '',
187
348
  ele: 'slot',