@@ -86,7 +86,7 @@
.ant-btn-link.button-primary,.ant-btn-link.button-info,.ant-btn-link.button-warning,.ant-btn-link.button-purple,.ant-btn-link.button-geekblue {
color: #39f;
&:hover, &:focus {
- color: #52a6fb;
+ color: #48b7fb;
}
&:active, &.active {
color: #3d80bf;
@@ -136,7 +136,8 @@
cursor: pointer;
+ color: #4bc3fb;
+ text-decoration: underline;
@@ -22,6 +22,7 @@
<a-collapse :activeKey="['1']">
<a-collapse-panel key="1" header="基础信息">
<a-descriptions :column="3">
+ <a-descriptions-item label="调拨退货单号">{{ (basicInfoData&&basicInfoData.allocateReturnNo) || '--' }}</a-descriptions-item>
<a-descriptions-item label="调拨退货对象">{{ (basicInfoData&&basicInfoData.targetTypeDictValue) || '--' }}</a-descriptions-item>
<a-descriptions-item label="调拨退货对象名称">{{ (basicInfoData&&basicInfoData.targetName) || '--' }}</a-descriptions-item>
<a-descriptions-item label="调拨退货类型">{{ (basicInfoData&&basicInfoData.allocateReturnTypeName) || '--' }}</a-descriptions-item>
@@ -16,6 +16,7 @@
<a-collapse :activeKey="['0']">
<a-collapse-panel key="0" header="基础信息">
<a-descriptions-item label="调拨退货类型">
@@ -36,7 +36,13 @@
bordered>
<!-- 操作 -->
<template slot="action" slot-scope="text, record">
- <a-button size="small" type="link" @click="handleDetail(record)" v-if="$hasPermissions('B_oosDetail')" id="backorderList-detail-btn">详情</a-button>
+ <a-button
+ size="small"
+ type="link"
+ class="button-success"
+ @click="handleDetail(record)"
+ v-if="$hasPermissions('B_oosDetail')"
+ id="backorderList-detail-btn">详情</a-button>
<span v-else>--</span>
</template>
</s-table>