You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tips.js 823B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * @Author: gaorf30153 gaorf30153@hundsun.com
  3. * @Date: 2024-07-02 14:27:51
  4. * @LastEditors: gaorf30153 gaorf30153@hundsun.com
  5. * @LastEditTime: 2024-07-02 15:18:33
  6. * @FilePath: \wxminipro\plugin\components\tips\tips.js
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. // plugin/components/tips.js
  10. Component({
  11. /**
  12. * 组件的属性列表
  13. */
  14. properties: {
  15. content: {
  16. type: String,
  17. value: "请仔细核对证件信息,如信息有误,请手动修改或重新拍照上传",
  18. },
  19. },
  20. /**
  21. * 组件的初始数据
  22. */
  23. data: {
  24. show: true
  25. },
  26. /**
  27. * 组件的方法列表
  28. */
  29. methods: {
  30. closeTips() {
  31. this.setData({
  32. show: false,
  33. })
  34. },
  35. },
  36. })