|
|
@@ -125,7 +125,7 @@
|
|
|
<div class="module-com tabs-wrap">
|
|
|
<div class="tabs-list" v-for="(item, index) in tabsData" :key="index" @click="pageTo(item)">
|
|
|
<div class="tabs-icon">
|
|
|
- <i class="iconfont" :class="item.icon"></i>
|
|
|
+ <span>{{ item.icon }}</span>
|
|
|
</div>
|
|
|
<div class="tabs-name">{{ item.name }}</div>
|
|
|
</div>
|
|
|
@@ -505,14 +505,14 @@ export default {
|
|
|
tabsData: [
|
|
|
{
|
|
|
name: "升降级",
|
|
|
- icon: "iconshezhi",
|
|
|
+ icon: "⚙️",
|
|
|
funtion: () => {
|
|
|
this.beginModifyMember()
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
name: "减余额",
|
|
|
- icon: "iconjian",
|
|
|
+ icon: "➖",
|
|
|
funtion: () => {
|
|
|
this.deductAmount = ''
|
|
|
this.deductRemark = ''
|
|
|
@@ -521,14 +521,14 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
name: "充值",
|
|
|
- icon: "iconzeng",
|
|
|
+ icon: "➕",
|
|
|
funtion: () => {
|
|
|
- this.openRechargePopup()
|
|
|
+ this.openRechargePopup()
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
name: "开单",
|
|
|
- icon: "iconbianji",
|
|
|
+ icon: "✏️",
|
|
|
funtion: () => {
|
|
|
this.addOrder()
|
|
|
}
|