12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- // pages/recordSheet/components/inspect/inspect.js
- Component({
- /**
- * 组件的属性列表
- */
- options: {
- addGlobalClass: true
- },
- properties: {
- },
- /**
- * 组件的初始数据
- */
- data: {
- list: ['','','',''],
- more: true,
- maxlength: 500,
- number: 0,
- value: "",
- imgs: [
- {
- type: "image",
- url: "https://img1.baidu.com/it/u=202543353,3627416815&fm=26&fmt=auto"
- },
- {
- type: "image",
- url: "https://img0.baidu.com/it/u=745609344,230882238&fm=26&fmt=auto"
- },
- {
- type: "image",
- url: "https://img0.baidu.com/it/u=286636366,3227707112&fm=26&fmt=auto"
- },
- {
- type: "image",
- url: "https://img1.baidu.com/it/u=2450865760,444795162&fm=26&fmt=auto"
- },
- {
- type: "image",
- url: "https://img0.baidu.com/it/u=4226275504,4103997964&fm=26&fmt=auto"
- },
- {
- type: "image",
- url: "https://img0.baidu.com/it/u=2247422843,411257408&fm=26&fmt=auto"
- },
- ],
- },
- /**
- * 组件的方法列表
- */
- methods: {
- onOpenList() {
- this.setData({
- more: false
- })
- }
- }
- })
|