index.js 271 B

12345678910111213141516
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. },
  6. userrole: {
  7. type: String
  8. },
  9. hidePrice: {
  10. type: Number
  11. }
  12. },
  13. data: {
  14. hidePrice: wx.getStorageSync('hidePrice'),
  15. }
  16. })