1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // components/desc/desc.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- msg: {
- type: String,
- value: "暂无"
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- descText: ""
- },
- /* 生命周期 */
- lifetimes:{
- attached(){
- console.log(this.data.msg)
- this.formateDesc(this.data.msg)
- }
- },
- /**
- * 组件的方法列表
- */
- methods: {
- formateDesc(str){
- let _str = str
- if(str.length > 50){
- _str = str.substr(0,50)
- }
- console.log(_str)
- this.setData({
- descText: _str
- })
- },
- showMore(){
- this.setData({
- descText: this.data.msg
- })
- }
- }
- })
|