fix:矩阵题优化
This commit is contained in:
2
components.d.ts
vendored
2
components.d.ts
vendored
@@ -2,7 +2,7 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
// Generated by unplugin-vue-components
|
// Generated by unplugin-vue-components
|
||||||
// Read more: https://github.com/vuejs/core/pull/3399
|
// Read more: https://github.com/vuejs/core/pull/3399
|
||||||
export {}
|
export {};
|
||||||
|
|
||||||
/* prettier-ignore */
|
/* prettier-ignore */
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ const errorMessage = defineModel('errorMessage', {
|
|||||||
</template>
|
</template>
|
||||||
<template #default="{ row /*, column, $index*/ }">
|
<template #default="{ row /*, column, $index*/ }">
|
||||||
<div style="position: relative" class="flex align-center space-between">
|
<div style="position: relative" class="flex align-center space-between">
|
||||||
<div :style="{ width: `${tableWidth - 50}px` }">
|
<div :style="{ width: `${tableWidth - 30}px` }">
|
||||||
<contenteditable v-model="row.option" :active="active" @blur="emitValue" />
|
<contenteditable v-model="row.option" :active="active" @blur="emitValue" />
|
||||||
</div>
|
</div>
|
||||||
<van-popover
|
<van-popover
|
||||||
@@ -168,7 +168,7 @@ const errorMessage = defineModel('errorMessage', {
|
|||||||
>
|
>
|
||||||
<template #header>
|
<template #header>
|
||||||
<div class="flex align-center space-between">
|
<div class="flex align-center space-between">
|
||||||
<div :style="{ width: `${tableWidth - 20}px` }">
|
<div :style="{ width: `${tableWidth - 10}px` }" style="color: #606266">
|
||||||
<contenteditable v-model="col.option" :active="active" @blur="emitValue" />
|
<contenteditable v-model="col.option" :active="active" @blur="emitValue" />
|
||||||
</div>
|
</div>
|
||||||
<van-popover
|
<van-popover
|
||||||
@@ -221,7 +221,7 @@ input[type='text'] {
|
|||||||
//position: absolute;
|
//position: absolute;
|
||||||
//top: 15%;
|
//top: 15%;
|
||||||
//right: 0;
|
//right: 0;
|
||||||
|
color: #606266;
|
||||||
& > svg {
|
& > svg {
|
||||||
height: 15px;
|
height: 15px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user