| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | // components/diy-article/index.jsComponent({    /**     * 组件的属性列表     */    properties: {    },    /**     * 组件的初始数据     */    data: {        style: {            width: 100,            height: 100,            marginBottom: 10,            marginAuto: 'auto',            borderRadius: 0,            background: '#FFFFFF',                        leftMeun: 10,            titleTop: 15,            titleDown: 5,            titleSize: 18,            titleWeight: 600,            authorColor: '#787878',            imageWidth: 75,            imageHeight: 75,            imageRadius: 5,            imageTop: 15,            imageRight: 15,        },        aritcleList: [            {            title: "文章标题在这里",            author: "文章作者",            image: "https://i.ibb.co/X2rgchS/80079-20210808214304311050-0.jpg"            }        ]    },    /**     * 组件的方法列表     */    methods: {    }})
 |