12345678910111213141516171819202122232425262728293031323334 |
- Component({
-
- properties: {
- butType: {
- type: String,
- value: "下载"
- }
- },
- options: {
- addGlobalClass: true
- },
-
- data: {
- },
-
- methods: {
- butClick(){
- console.log(this.data.butType)
- },
- checkFile(){
- console.log("查看文件")
- }
- }
- })
|