|
12345678910111213141516171819202122232425262728 |
- /*
- * @Author: gaorf30153 gaorf30153@hundsun.com
- * @Date: 2024-06-18 10:39:19
- * @LastEditors: gaorf30153 gaorf30153@hundsun.com
- * @LastEditTime: 2024-06-20 18:00:24
- * @FilePath: \issuer-plugin\plugin\components\pickerTime\pickerTime.js
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- Component({
- properties: {
- btnName: {
- type: String,
- value: "",
- },
- disabled: {
- type: Boolean,
- value: false,
- },
- },
- data: {},
- methods: {
- click() {
- if(!this.data.disabled){
- this.triggerEvent("click")
- }
- },
- },
- })
|