| 123456789101112131415161718192021222324 |
- Component({
- properties: {
- list: {
- type: Array
- }
- },
- options: {
- addGlobalClass: true
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- }
- },
- methods: {
- distribution({
- currentTarget
- }) {
- wx.navigateTo({
- url: `/packageA/publicClue/distribution?data=${JSON.stringify(currentTarget.dataset.item)}`,
- })
- }
- }
- })
|