This commit is contained in:
parent
b37811ced5
commit
1667091380
|
|
@ -45,16 +45,16 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_top_item_tow">0</div>
|
<div class="orderbox_right_top_item_tow">0</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="orderbox_right_top_item">
|
<div class="orderbox_right_top_item" @click="stored = true">
|
||||||
<div class="orderbox_right_top_item_one">
|
<div class="orderbox_right_top_item_one">
|
||||||
<el-icon :size="24" style="color:#00b58d ;">
|
<el-icon :size="24" style="color:#00b58d ;">
|
||||||
<Box />
|
<Box />
|
||||||
</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">0</div>
|
<div class="orderbox_right_top_item_tow">0</div>
|
||||||
</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">
|
||||||
<el-icon :size="24" style="color:#00b58d ;">
|
<el-icon :size="24" style="color:#00b58d ;">
|
||||||
<CopyDocument />
|
<CopyDocument />
|
||||||
|
|
@ -71,7 +71,17 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<el-dialog v-model="stored" title="Tips" width="500" :before-close="handleClose">
|
||||||
|
<span>This is a message</span>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button @click="stored = false">Cancel</el-button>
|
||||||
|
<el-button type="primary" @click="stored = false">
|
||||||
|
Confirm
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -80,12 +90,18 @@ import { ref } from 'vue'
|
||||||
import { useRoute } from "vue-router"
|
import { useRoute } from "vue-router"
|
||||||
import { ElMessage } from 'element-plus'
|
import { ElMessage } from 'element-plus'
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
console.log(route)
|
|
||||||
const itemboxshow = ref(false)
|
|
||||||
const handleClick = (Name) => {
|
|
||||||
console.log(Name)
|
|
||||||
}
|
|
||||||
const firstinput = ref('')//搜索输入框
|
const firstinput = ref('')//搜索输入框
|
||||||
|
const stored = ref(false)//储值余额
|
||||||
|
const handleClose = (done) => {
|
||||||
|
ElMessage.confirm('Are you sure to close this dialog?')
|
||||||
|
.then(() => {
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
// catch error
|
||||||
|
})
|
||||||
|
}
|
||||||
const tableData = [
|
const tableData = [
|
||||||
{
|
{
|
||||||
date: '2016-05-03',
|
date: '2016-05-03',
|
||||||
|
|
@ -233,7 +249,8 @@ const tableData = [
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
// .orderbox_right_top_item::after:nth-child(1){
|
|
||||||
|
// .orderbox_right_top_item::after(1){
|
||||||
// position: absolute;
|
// position: absolute;
|
||||||
// top: 2px;
|
// top: 2px;
|
||||||
// content: '';
|
// content: '';
|
||||||
|
|
@ -311,4 +328,5 @@ const tableData = [
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}</style>
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue