| 1234567891011121314151617181920212223242526272829303132333435 |
- Component({
- properties: {
- visible: {
- type: Boolean,
- value: false,
- },
- amount: {
- type: String,
- value: "",
- },
- accountName: {
- type: String,
- value: "",
- },
- withdrawConfig: {
- type: Object,
- value: {},
- },
- },
- methods: {
- noop() {},
- handleCancel() {
- this.triggerEvent("cancel");
- },
- handleConfirm() {
- this.triggerEvent("confirm");
- },
- handleAmountInput(e) {
- this.triggerEvent("amountchange", {
- value: e.detail.value || "",
- });
- },
- },
- });
|