11
This commit is contained in:
@@ -23,19 +23,19 @@
|
|||||||
<div class="orderbox_right_top">
|
<div class="orderbox_right_top">
|
||||||
<div class="orderbox_right_topdiv">
|
<div class="orderbox_right_topdiv">
|
||||||
<span>会员昵称:</span>
|
<span>会员昵称:</span>
|
||||||
<span>{{ tableData.list[datarow].name }}</span>
|
<span>{{ tableData.list.length != 0 ? tableData.list[datarow].name : '无' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_topdiv">
|
<div class="orderbox_right_topdiv">
|
||||||
<span>手机号码:</span>
|
<span>手机号码:</span>
|
||||||
<span>{{ tableData.list[datarow].telephone }}</span>
|
<span>{{ tableData.list.length != 0 ? tableData.list[datarow].telephone : '无' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_topdiv">
|
<div class="orderbox_right_topdiv">
|
||||||
<span>会员编号:</span>
|
<span>会员编号:</span>
|
||||||
<span>{{ tableData.list[datarow].code }}</span>
|
<span>{{ tableData.list.length != 0 ? tableData.list[datarow].code : '无' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_topdiv">
|
<div class="orderbox_right_topdiv">
|
||||||
<span>会员等级:</span>
|
<span>会员等级:</span>
|
||||||
<span>{{ tableData.list[datarow].level }}</span>
|
<span>{{ tableData.list.length != 0 ? tableData.list[datarow].level : '无' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_top_item">
|
<div class="orderbox_right_top_item">
|
||||||
<div class="orderbox_right_top_item_one">
|
<div class="orderbox_right_top_item_one">
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
</el-icon>
|
</el-icon>
|
||||||
<span class="orderbox_right_top_item_onespan">会员积分</span>
|
<span class="orderbox_right_top_item_onespan">会员积分</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_top_item_tow">{{ tableData.list[datarow].levelConsume }}</div>
|
<div class="orderbox_right_top_item_tow">{{ tableData.list.length != 0 ? tableData.list[datarow].levelConsume : '无' }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_top_item" @click="stored = true">
|
<div class="orderbox_right_top_item" @click="stored = true">
|
||||||
<div class="orderbox_right_top_item_one">
|
<div class="orderbox_right_top_item_one">
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
<span class="orderbox_right_top_item_onespan">储值余额</span>
|
<span class="orderbox_right_top_item_onespan">储值余额</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_top_item_tow">
|
<div class="orderbox_right_top_item_tow">
|
||||||
<span>{{ tableData.list[datarow].amount }}</span>
|
<span>{{ tableData.list.length != 0 ? tableData.list[datarow].amount : '无' }}</span>
|
||||||
<el-icon size="10">
|
<el-icon size="10">
|
||||||
<ArrowRight />
|
<ArrowRight />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
@@ -148,8 +148,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class='keyboard'>
|
<div class='keyboard'>
|
||||||
<cwxeyboard @confirmEvent="confirmEvent" @consumeFee="consumeFee"
|
<cwxeyboard @confirmEvent="confirmEvent" @consumeFee="consumeFee" btn-color="orange" title="支付">
|
||||||
btn-color="orange" title="支付">
|
|
||||||
</cwxeyboard>
|
</cwxeyboard>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -158,7 +157,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<el-dialog width="500" v-model="payCarddialogVisible" style="padding: 0; " title="会员充值"
|
<el-dialog width="500" v-model="payCarddialogVisible" style="padding: 0; " title="会员充值"
|
||||||
:close-on-click-modal="false">
|
:close-on-click-modal="false">
|
||||||
<payCard :amount="moneys" :orderId="orderId" :selecttype="1" @paySuccess="paySuccess" />
|
<payCard :amount="moneys" :orderId="orderId" :selecttype="1" @paySuccess="paySuccess" />
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
|
|
||||||
@@ -185,7 +184,6 @@ const handleClose = async () => {
|
|||||||
const emit = defineEmits('paySuccess')
|
const emit = defineEmits('paySuccess')
|
||||||
|
|
||||||
function paySuccess() {
|
function paySuccess() {
|
||||||
console.log('188')
|
|
||||||
payCarddialogVisible.value = false
|
payCarddialogVisible.value = false
|
||||||
recharge.value = false
|
recharge.value = false
|
||||||
moneys.value = 0
|
moneys.value = 0
|
||||||
@@ -259,10 +257,7 @@ const MemberAccount = async () => {//获取流水
|
|||||||
flowingwater.total = res.total
|
flowingwater.total = res.total
|
||||||
flowingwater.list = res.list
|
flowingwater.list = res.list
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
ElMessage({
|
|
||||||
message: '获取失败',
|
|
||||||
type: 'error',
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -275,14 +270,7 @@ const memberaddshowclose = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const tableData = reactive({//表格数据
|
const tableData = reactive({//表格数据
|
||||||
list: [{
|
list: [],
|
||||||
name: "",
|
|
||||||
amount: "",
|
|
||||||
levelConsume: "",
|
|
||||||
level: "",
|
|
||||||
code: "",
|
|
||||||
telephone: ""
|
|
||||||
}],
|
|
||||||
page: 1,
|
page: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
phone: '',
|
phone: '',
|
||||||
|
|||||||
Reference in New Issue
Block a user