lilei il y a 3 ans
Parent
commit
c87995300b

+ 3 - 2
src/components/index.less

@@ -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 @@
   color: #39f;
   cursor: pointer;
   &:hover, &:focus {
-    color: #52a6fb;
+    color: #4bc3fb;
+    text-decoration: underline;
   }
   &:active, &.active {
     color: #3d80bf;

+ 1 - 0
src/views/allocationManagement/transferReturn/detail.vue

@@ -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>

+ 1 - 0
src/views/allocationManagement/transferReturn/edit.vue

@@ -16,6 +16,7 @@
         <a-collapse :activeKey="['0']">
           <a-collapse-panel key="0" 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="调拨退货类型">

+ 1 - 0
src/views/allocationManagement/transferReturn/editGrp.vue

@@ -16,6 +16,7 @@
         <a-collapse :activeKey="['0']">
           <a-collapse-panel key="0" 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="调拨退货类型">

+ 7 - 1
src/views/salesManagement/backorder/list.vue

@@ -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>