Merge branch 'wwz' of gitee.com:shaanxi-super-shopkeeper_1/cashierdesktop into gyq

This commit is contained in:
gyq 2024-02-26 14:27:59 +08:00
commit a662ae5c01
1 changed files with 19 additions and 78 deletions

View File

@ -45,12 +45,12 @@
</div>
<div class="orderbox_right_top_item_tow">0</div>
</div>
<div class="orderbox_right_top_item">
<div class="orderbox_right_top_item" @click="stored = true">
<div class="orderbox_right_top_item_one">
<el-icon :size="24" style="color:#00b58d ;">
<Box />
</el-icon>
<span class="orderbox_right_top_item_onespan">储值会员</span>
<span class="orderbox_right_top_item_onespan">储值余额</span>
</div>
<div class="orderbox_right_top_item_tow">0</div>
</div>
@ -71,7 +71,15 @@
</div>
</div>
<el-dialog v-model="stored" title="Tips" width="500" :before-close="handleClose">
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="stored = false">
Confirm
</el-button>
</div>
</template>
</el-dialog>
</div>
</template>
@ -80,12 +88,12 @@ import { ref } from 'vue'
import { useRoute } from "vue-router"
import { ElMessage } from 'element-plus'
const route = useRoute()
console.log(route)
const itemboxshow = ref(false)
const handleClick = (Name) => {
console.log(Name)
}
const firstinput = ref('')//
const stored = ref(true)//
const handleClose = () => {
stored.value = !stored.value
}
const tableData = [
{
date: '2016-05-03',
@ -177,38 +185,6 @@ const tableData = [
}
.orderbox_rightbox {
position: relative;
width: 40%;
padding: 20px;
margin-left: 10px;
background: #fff;
border-radius: 10px;
.orderbox_rightbox_top:nth-child(1) {
margin-top: 0;
}
.orderbox_rightbox_top {
margin-top: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
padding: 10px 16px;
width: 100%;
border-radius: 10px;
background: #e7e5e5;
.orderbox_rightbox_top_div {
margin-left: 10px;
display: flex;
flex-direction: column;
justify-content: space-around;
}
}
}
.orderbox_right {
position: relative;
width: 40%;
@ -233,15 +209,7 @@ const tableData = [
margin-top: 10px;
justify-content: space-between;
}
// .orderbox_right_top_item::after:nth-child(1){
// position: absolute;
// top: 2px;
// content: '';
// display: inline-block;
// height: 2px;
// width: 100%;
// background: #fff;
// }
.orderbox_right_top_item {
position: relative;
background: #fff;
@ -273,34 +241,6 @@ const tableData = [
}
.orderbox_right_list_item {
display: flex;
font-size: 14px;
justify-content: space-between;
align-items: center;
padding-bottom: 10px;
div:nth-child(1) {
text-align: left;
width: 45%;
}
div:nth-child(2) {
width: 15%;
align-items: center;
}
div:nth-child(3) {
width: 15%;
align-items: center;
}
div:nth-child(4) {
text-align: right;
width: 25%;
}
}
.orderbox_right_button {
position: absolute;
width: 90%;
@ -311,4 +251,5 @@ const tableData = [
}
}</style>
}
</style>