123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * @Author: 傅豪杰 18516149270@163.com
- * @Date: 2023-07-24 14:48:20
- * @LastEditors: 傅豪杰 18516149270@163.com
- * @LastEditTime: 2023-07-26 16:49:36
- * @FilePath: /infrared_remote/admin_web/ruoyi-ui/src/mock/cpnsList.js
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- // 组件相关配置文件
- export const cpnsList = [
- {
- classType: 'icon-m-anniu',
- type: 'button',
- text: '按钮',
- content: '文案',
- border: '1px',
- borderColor: '#fff',
- borderRadius: '8px',
- fontSize: '14px',
- background: '#000',
- color: '#fff',
- backgroundImage:'',
- typeNum:'1'
- },
- {
- classType: 'icon-wenben',
- type: 'text',
- text: '文字',
- content: '文案',
- border: '0',
- borderColor: 'none',
- borderRadius: '0',
- fontSize: '14px',
- background: 'none',
- color: '#000',
- backgroundImage:''
- },
- {
- classType: 'icon-tupian',
- type: 'image',
- text: '图片',
- content: '',
- border: '0',
- borderColor: 'none',
- borderRadius: '0',
- fontSize: '0',
- background: 'none',
- color: '#000',
- backgroundImage:''
- }
- ]
|