样式优化
This commit is contained in:
parent
7d3c6f0adb
commit
0c59c4864c
|
|
@ -1,9 +1,9 @@
|
||||||
import { createSSRApp } from 'vue'
|
import { createSSRApp } from 'vue'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import pinia from './stores/index'
|
import pinia from './stores/index'
|
||||||
import VConsole from 'vconsole'
|
// import VConsole from 'vconsole'
|
||||||
|
|
||||||
new VConsole()
|
// new VConsole()
|
||||||
|
|
||||||
import '@/styles/reset.css'
|
import '@/styles/reset.css'
|
||||||
import '@/styles/common.scss'
|
import '@/styles/common.scss'
|
||||||
|
|
|
||||||
|
|
@ -28,11 +28,18 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<uni-popup ref="popup" type="center" border-radius="6px 6px 6px 6px" background-color="#fff">
|
<uni-popup ref="popup" type="center" border-radius="6px 6px 6px 6px" background-color="#fff">
|
||||||
<div style="padding: 20px">
|
<uni-icons
|
||||||
|
type="close"
|
||||||
|
size="25"
|
||||||
|
color="red"
|
||||||
|
style="margin: 5px 0 0 88%"
|
||||||
|
@click="popup.close()"
|
||||||
|
/>
|
||||||
|
<div style="padding: 0 20px 20px">
|
||||||
<div>编码详情</div>
|
<div>编码详情</div>
|
||||||
<div class="code-list">
|
<div class="code-list">
|
||||||
<div v-for="(item, index) in popupRow" :key="index">
|
<div v-for="(item, index) in popupRow" :key="index">
|
||||||
<span>{{ item.maCode }}</span>
|
<span>{{ index + 1 }}. {{ item.maCode }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -124,4 +131,9 @@ const handleItem = (item) => {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.code-list {
|
||||||
|
width: 59vw;
|
||||||
|
max-height: 70vh;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue