Commit 129fcf9bb97b3538378beee6f49872926f8abe2d

Authored by ly525
1 parent 7b6ce8ec

style: format with eslint

front-end/h5/src/components/plugins/lbp-form-button.js
... ... @@ -72,5 +72,5 @@ export default {
72 72 req.open('post', `/works/form/submit/${workId}`, true)
73 73 req.send(formData)
74 74 }
75   - },
  75 + }
76 76 }
... ...
front-end/h5/src/components/plugins/lbp-form-input.js
... ... @@ -62,7 +62,7 @@ export default {
62 62 textAlign: PropTypes.textAlign({ defaultValue: 'left' }),
63 63 vertical: PropTypes.boolean(),
64 64 lineHeight: PropTypes.number({ label: '行高(px)', defaultValue: 1 })
65   - },
  65 + }
66 66 }
67 67  
68 68 // .lb-plugin__input {
... ...
front-end/h5/src/engine-entry.js
... ... @@ -31,7 +31,7 @@ const Engine = {
31 31 components: {
32 32 NodeWrapper
33 33 },
34   - data() {
  34 + data () {
35 35 return {
36 36 isLongPage: window.__work.mode === PAGE_MODE.LONG_PAGE
37 37 }
... ...
front-end/h5/src/mixins/load-plugins.js
... ... @@ -250,7 +250,7 @@ export const pluginsList = [
250 250 icon: 'table',
251 251 component: LbpTable,
252 252 visible: true,
253   - name: LbpTable.name,
  253 + name: LbpTable.name
254 254 },
255 255 {
256 256 i18nTitle: {
... ... @@ -277,7 +277,7 @@ export const pluginsList = [
277 277 shortcutProps: {
278 278 theme: 'lbp-table-theme-light-blue'
279 279 }
280   - },
  280 + }
281 281 ]
282 282  
283 283 export default {
... ...