|
|
@@ -179,7 +179,7 @@ defineExpose({
|
|
|
:style="{ height: cardHeight }"
|
|
|
@click="handleCreate"
|
|
|
>
|
|
|
- <el-button link icon="plus">新增</el-button>
|
|
|
+ <el-icon :size="18" class="mr-2px"><plus></plus></el-icon>新增
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="span" v-bind="$attrs" v-for="(item, index) in tableData" :key="item.id" class="mb-10">
|
|
|
@@ -215,9 +215,15 @@ defineExpose({
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
-<style scoped>
|
|
|
+<style scoped lang="scss">
|
|
|
.card-list-item {
|
|
|
border-color: var(--el-border-color-light);
|
|
|
border-radius: var(--el-card-border-radius);
|
|
|
+ color: var(--el-text-color-regular);
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ color: var(--el-color-primary);
|
|
|
+ border-color: currentColor;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|