|
@@ -10,8 +10,8 @@ export default defineComponent({
|
|
|
return () => {
|
|
|
return (
|
|
|
<div class="px-16px">
|
|
|
- <div class="flex items-center">
|
|
|
- <span class="w-70px">屏幕类型</span>
|
|
|
+ <div class="flex items-center my-15px">
|
|
|
+ <span class="w-70px text-12px">屏幕类型</span>
|
|
|
<Select
|
|
|
value={ctrl.state.screen.useFor}
|
|
|
onChange={(v) => {
|
|
@@ -33,8 +33,8 @@ export default defineComponent({
|
|
|
]}
|
|
|
/>
|
|
|
</div>
|
|
|
- <div class="flex items-center mt-5px">
|
|
|
- <span class="w-70px">页面模式</span>
|
|
|
+ <div class="flex items-center my-15px">
|
|
|
+ <span class="w-70px text-12px">页面模式</span>
|
|
|
<Select
|
|
|
onChange={(v) => {
|
|
|
ctrl.saveScreenPage();
|
|
@@ -61,8 +61,8 @@ export default defineComponent({
|
|
|
</div>
|
|
|
{ctrl.state.screen.pageMode == "short" &&
|
|
|
ctrl.state.screen.useFor == "mobile" && (
|
|
|
- <div class="flex items-center mt-5px">
|
|
|
- <span class="w-70px">屏幕长度</span>
|
|
|
+ <div class="flex items-center my-15px">
|
|
|
+ <span class="w-70px text-12px">屏幕长度</span>
|
|
|
<Select
|
|
|
onChange={(v) => {
|
|
|
ctrl.saveScreenPage();
|