index.js 219 B

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