1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * @Author: gaorf30153 gaorf30153@hundsun.com
- * @Date: 2024-07-02 14:27:51
- * @LastEditors: gaorf30153 gaorf30153@hundsun.com
- * @LastEditTime: 2024-07-02 15:18:33
- * @FilePath: \wxminipro\plugin\components\tips\tips.js
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- // plugin/components/tips.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- content: {
- type: String,
- value: "请仔细核对证件信息,如信息有误,请手动修改或重新拍照上传",
- },
- },
-
- /**
- * 组件的初始数据
- */
- data: {
- show: true
- },
-
- /**
- * 组件的方法列表
- */
- methods: {
- closeTips() {
- this.setData({
- show: false,
- })
- },
- },
- })
|