fix: type='text' => type='primary' link
This commit is contained in:
parent
4f3e7ecaac
commit
0b055b5db4
@ -111,7 +111,8 @@
|
|||||||
>
|
>
|
||||||
<el-divider direction="vertical" />
|
<el-divider direction="vertical" />
|
||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
style="color: #ff4d4f"
|
style="color: #ff4d4f"
|
||||||
@click="removeFieldOptionItem(scope, scope.$index, 'enum')"
|
@click="removeFieldOptionItem(scope, scope.$index, 'enum')"
|
||||||
>移除</el-button
|
>移除</el-button
|
||||||
@ -143,7 +144,8 @@
|
|||||||
>
|
>
|
||||||
<el-divider direction="vertical" />
|
<el-divider direction="vertical" />
|
||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
style="color: #ff4d4f"
|
style="color: #ff4d4f"
|
||||||
@click="removeFieldOptionItem(scope, scope.$index, 'constraint')"
|
@click="removeFieldOptionItem(scope, scope.$index, 'constraint')"
|
||||||
>移除</el-button
|
>移除</el-button
|
||||||
@ -174,7 +176,8 @@
|
|||||||
>
|
>
|
||||||
<el-divider direction="vertical" />
|
<el-divider direction="vertical" />
|
||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
style="color: #ff4d4f"
|
style="color: #ff4d4f"
|
||||||
@click="removeFieldOptionItem(scope, scope.$index, 'property')"
|
@click="removeFieldOptionItem(scope, scope.$index, 'property')"
|
||||||
>移除</el-button
|
>移除</el-button
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
<el-col :span="24" style="padding-left: 10px; padding-right: 10px">
|
<el-col :span="24" style="padding-left: 10px; padding-right: 10px">
|
||||||
<el-form-item prop="tenantName" v-if="loginData.tenantEnable === 'true'">
|
<el-form-item prop="tenantName" v-if="loginData.tenantEnable === 'true'">
|
||||||
<el-input
|
<el-input
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
v-model="loginData.loginForm.tenantName"
|
v-model="loginData.loginForm.tenantName"
|
||||||
:placeholder="t('login.tenantNamePlaceholder')"
|
:placeholder="t('login.tenantNamePlaceholder')"
|
||||||
:prefix-icon="iconHouse"
|
:prefix-icon="iconHouse"
|
||||||
|
@ -19,7 +19,8 @@
|
|||||||
<el-col :span="24" style="padding-left: 10px; padding-right: 10px">
|
<el-col :span="24" style="padding-left: 10px; padding-right: 10px">
|
||||||
<el-form-item prop="tenantName" v-if="loginData.tenantEnable === 'true'">
|
<el-form-item prop="tenantName" v-if="loginData.tenantEnable === 'true'">
|
||||||
<el-input
|
<el-input
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
v-model="loginData.loginForm.tenantName"
|
v-model="loginData.loginForm.tenantName"
|
||||||
:placeholder="t('login.tenantNamePlaceholder')"
|
:placeholder="t('login.tenantNamePlaceholder')"
|
||||||
:prefix-icon="iconHouse"
|
:prefix-icon="iconHouse"
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.formType === 10"
|
v-if="scope.row.formType === 10"
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
@click="handleFormDetail(scope.row)"
|
@click="handleFormDetail(scope.row)"
|
||||||
>
|
>
|
||||||
<span>{{ scope.row.formName }}</span>
|
<span>{{ scope.row.formName }}</span>
|
||||||
|
@ -79,14 +79,16 @@
|
|||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.formType === 10"
|
v-if="scope.row.formType === 10"
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
@click="handleFormDetail(scope.row)"
|
@click="handleFormDetail(scope.row)"
|
||||||
>
|
>
|
||||||
<span>{{ scope.row.formName }}</span>
|
<span>{{ scope.row.formName }}</span>
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-else-if="scope.row.formType === 20"
|
v-else-if="scope.row.formType === 20"
|
||||||
type="text"
|
type="primary"
|
||||||
|
link
|
||||||
@click="handleFormDetail(scope.row)"
|
@click="handleFormDetail(scope.row)"
|
||||||
>
|
>
|
||||||
<span>{{ scope.row.formCustomCreatePath }}</span>
|
<span>{{ scope.row.formCustomCreatePath }}</span>
|
||||||
|
@ -231,7 +231,7 @@
|
|||||||
:on-success="handleUploadSuccess"
|
:on-success="handleUploadSuccess"
|
||||||
>
|
>
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
<el-button type="text">本地上传</el-button>
|
<el-button type="primary" link>本地上传</el-button>
|
||||||
</template>
|
</template>
|
||||||
<el-button type="primary" link @click="openMaterial" style="margin-left: 5px"
|
<el-button type="primary" link @click="openMaterial" style="margin-left: 5px"
|
||||||
>素材库选择
|
>素材库选择
|
||||||
|
Loading…
Reference in New Issue
Block a user