fixbug
This commit is contained in:
parent
5a70898f2d
commit
b54975a23f
@ -26,7 +26,7 @@
|
|||||||
></n-button
|
></n-button
|
||||||
>
|
>
|
||||||
<n-button v-else text :loading="state.btnLoading" @click="handleEdit"
|
<n-button v-else text :loading="state.btnLoading" @click="handleEdit"
|
||||||
><text class="font-bold" style="color: #46299d; font-size: 16px"
|
><text class="font-bold theme-color" style=" font-size: 16px"
|
||||||
>修改</text
|
>修改</text
|
||||||
></n-button
|
></n-button
|
||||||
>
|
>
|
||||||
|
@ -76,8 +76,8 @@
|
|||||||
<div class="col-12 row justify-center">
|
<div class="col-12 row justify-center">
|
||||||
<n-button
|
<n-button
|
||||||
tertiary
|
tertiary
|
||||||
class="fl-mr-md"
|
class="fl-mr-md theme-color"
|
||||||
style="width: 161px; background: #c7c7c9; color: #ffffff"
|
style="width: 161px;"
|
||||||
@click="state.dialogAddOne = false"
|
@click="state.dialogAddOne = false"
|
||||||
>取消</n-button
|
>取消</n-button
|
||||||
>
|
>
|
||||||
|
@ -21,12 +21,12 @@
|
|||||||
text
|
text
|
||||||
:loading="state.btnLoading"
|
:loading="state.btnLoading"
|
||||||
@click="handleConfirm"
|
@click="handleConfirm"
|
||||||
><text class="font-bold" style="color: #46299d; font-size: 16px"
|
><text class="font-bold theme-color" style="font-size: 16px"
|
||||||
>确认</text
|
>确认</text
|
||||||
></n-button
|
></n-button
|
||||||
>
|
>
|
||||||
<n-button v-else text :loading="state.btnLoading" @click="handleEdit"
|
<n-button v-else text :loading="state.btnLoading" @click="handleEdit"
|
||||||
><text class="font-bold" style="color: #46299d; font-size: 16px"
|
><text class="font-bold theme-color" style="font-size: 16px"
|
||||||
>修改</text
|
>修改</text
|
||||||
></n-button
|
></n-button
|
||||||
>
|
>
|
||||||
|
@ -72,8 +72,8 @@
|
|||||||
<div class="col-12 row justify-center">
|
<div class="col-12 row justify-center">
|
||||||
<n-button
|
<n-button
|
||||||
tertiary
|
tertiary
|
||||||
class="fl-mr-md"
|
class="fl-mr-md theme-color"
|
||||||
:style="`width: 161px; background: ${themeDarker}; color: #ffffff`"
|
:style="`width: 161px;`"
|
||||||
@click="state.dialogAddOne = false"
|
@click="state.dialogAddOne = false"
|
||||||
>
|
>
|
||||||
取消
|
取消
|
||||||
@ -230,8 +230,7 @@
|
|||||||
<div class="col-2 row">单号</div>
|
<div class="col-2 row">单号</div>
|
||||||
<div class="col-3 row">{{ idx }}</div>
|
<div class="col-3 row">{{ idx }}</div>
|
||||||
<div
|
<div
|
||||||
class="col-4 row items-center cursor"
|
class="col-4 row items-center cursor theme-color"
|
||||||
style="color: #46299d"
|
|
||||||
@click="handleDialogIntakeArtworkShow(item)"
|
@click="handleDialogIntakeArtworkShow(item)"
|
||||||
>
|
>
|
||||||
查看已关联的 {{ item.artworkData.length }} 幅画作
|
查看已关联的 {{ item.artworkData.length }} 幅画作
|
||||||
@ -485,8 +484,8 @@
|
|||||||
<div class="col-12 row justify-center fl-mt-md">
|
<div class="col-12 row justify-center fl-mt-md">
|
||||||
<n-button
|
<n-button
|
||||||
tertiary
|
tertiary
|
||||||
class="fl-mr-md"
|
class="fl-mr-md theme-color"
|
||||||
:style="`width: 161px; background: ${themeDarker}; color: #fff`"
|
:style="`width: 161px;`"
|
||||||
@click="handleDialogAuditRemark"
|
@click="handleDialogAuditRemark"
|
||||||
>
|
>
|
||||||
不通过
|
不通过
|
||||||
@ -615,8 +614,8 @@
|
|||||||
/>
|
/>
|
||||||
<div class="col-12 row justify-center fl-mt-md">
|
<div class="col-12 row justify-center fl-mt-md">
|
||||||
<n-button
|
<n-button
|
||||||
tertiary
|
type="primary"
|
||||||
style="width: 161px; background: #46299d; color: #fff"
|
style="width: 161px; color: #fff"
|
||||||
@click="handleDialogAuditRemarkConfirm"
|
@click="handleDialogAuditRemarkConfirm"
|
||||||
:loading="state.btnLoading"
|
:loading="state.btnLoading"
|
||||||
>
|
>
|
||||||
@ -991,7 +990,7 @@ const state = reactive({
|
|||||||
"span",
|
"span",
|
||||||
{
|
{
|
||||||
style: {
|
style: {
|
||||||
color: "#46299D",
|
color: themeColor.value,
|
||||||
cursor: "pointer",
|
cursor: "pointer",
|
||||||
padding: "10px 15px",
|
padding: "10px 15px",
|
||||||
},
|
},
|
||||||
@ -1133,7 +1132,7 @@ const state = reactive({
|
|||||||
"span",
|
"span",
|
||||||
{
|
{
|
||||||
style: {
|
style: {
|
||||||
color: "#46299D",
|
color: themeColor.value,
|
||||||
cursor: "pointer",
|
cursor: "pointer",
|
||||||
padding: "10px 15px",
|
padding: "10px 15px",
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user