leisure-core 0.3.4 → 0.3.5
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/le-button/src/main.vue +1 -1
- package/le-member/src/main.vue +23 -22
- package/package.json +1 -1
package/le-button/src/main.vue
CHANGED
package/le-member/src/main.vue
CHANGED
|
@@ -93,13 +93,12 @@
|
|
|
93
93
|
>
|
|
94
94
|
<template slot-scope="scope">
|
|
95
95
|
<div class="le-table-btn-container">
|
|
96
|
-
<
|
|
96
|
+
<le-button
|
|
97
97
|
type="primary"
|
|
98
|
-
id="
|
|
99
|
-
|
|
98
|
+
id="btnIntegral"
|
|
99
|
+
text="积分"
|
|
100
100
|
@click="openIntegralWindow(scope.row, 0)"
|
|
101
|
-
|
|
102
|
-
>
|
|
101
|
+
></le-button>
|
|
103
102
|
<!-- <el-button
|
|
104
103
|
id="btnXf"
|
|
105
104
|
v-if="scope.row.unionid"
|
|
@@ -108,33 +107,35 @@
|
|
|
108
107
|
>
|
|
109
108
|
订单
|
|
110
109
|
</el-button> -->
|
|
111
|
-
<
|
|
112
|
-
id="
|
|
113
|
-
|
|
110
|
+
<le-button
|
|
111
|
+
id="btnGiveIntegral"
|
|
112
|
+
text="赠送积分"
|
|
114
113
|
type="danger"
|
|
114
|
+
:disp="scope.row.unionid && showMoreBtn"
|
|
115
115
|
@click="giveIntegral(scope.row)"
|
|
116
|
-
>
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
<el-button
|
|
120
|
-
id="btnMemberNote"
|
|
116
|
+
></le-button>
|
|
117
|
+
<le-button
|
|
118
|
+
id="btnRecord"
|
|
121
119
|
v-if="scope.row.unionid"
|
|
122
120
|
type="danger"
|
|
121
|
+
text="领取记录"
|
|
123
122
|
@click="openMeberNote(scope.row)"
|
|
124
123
|
>
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
<el-button
|
|
124
|
+
</le-button>
|
|
125
|
+
<le-button
|
|
128
126
|
id="btnQrCode"
|
|
129
127
|
v-if="scope.row.unionid"
|
|
130
128
|
type="danger"
|
|
129
|
+
text="二维码"
|
|
131
130
|
@click="getQrCode(scope.row)"
|
|
132
131
|
>
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
132
|
+
</le-button>
|
|
133
|
+
<le-button
|
|
134
|
+
id="btnOtherInfo"
|
|
135
|
+
text="辅助信息"
|
|
136
|
+
type="primary"
|
|
137
|
+
@click="openOtherInfo(scope.row.id)"
|
|
138
|
+
></le-button>
|
|
138
139
|
</div>
|
|
139
140
|
</template>
|
|
140
141
|
</el-table-column>
|
|
@@ -289,7 +290,7 @@ export default {
|
|
|
289
290
|
uid: "",
|
|
290
291
|
|
|
291
292
|
showGiveIntegral: false,
|
|
292
|
-
showOtherDialog:false,
|
|
293
|
+
showOtherDialog: false,
|
|
293
294
|
currentUser: {},
|
|
294
295
|
integralForm: {
|
|
295
296
|
phone: "",
|