@7365admin1/layer-common 3.1.3-staging.45 → 3.1.4-staging.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/components/MemberMain.vue +17 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -149,21 +149,23 @@
|
|
|
149
149
|
</template>
|
|
150
150
|
|
|
151
151
|
<template #footer>
|
|
152
|
-
<
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
152
|
+
<div class="d-flex justify-center ga-3 w-100">
|
|
153
|
+
<v-btn
|
|
154
|
+
variant="text"
|
|
155
|
+
@click="confirmDialog = false"
|
|
156
|
+
:disabled="updateLoading"
|
|
157
|
+
>
|
|
158
|
+
Close
|
|
159
|
+
</v-btn>
|
|
160
|
+
<v-btn
|
|
161
|
+
color="primary"
|
|
162
|
+
variant="flat"
|
|
163
|
+
@click="handleUpdateMemberStatus"
|
|
164
|
+
:loading="updateLoading"
|
|
165
|
+
>
|
|
166
|
+
{{ updateActionText }} Member
|
|
167
|
+
</v-btn>
|
|
168
|
+
</div>
|
|
167
169
|
</template>
|
|
168
170
|
</ConfirmDialog>
|
|
169
171
|
|