瀏覽代碼

转促标签

chenrui 7 月之前
父節點
當前提交
b563ea920c

+ 3 - 2
src/views/purchasingManagement/purchaseOrder/list.vue

@@ -42,7 +42,7 @@
             <a-col :md="6" :sm="24" v-show="advanced">
               <a-form-item label="财务状态">
                 <v-select
-                style="width: 100%;"
+                  style="width: 100%;"
                   v-model="queryParam.financialStatus"
                   ref="financialStatus"
                   id="purchaseOrderList-financialStatus"
@@ -54,7 +54,7 @@
             <a-col :md="6" :sm="24" v-show="advanced">
               <a-form-item label="单据来源">
                 <v-select
-                style="width: 100%;"
+                  style="width: 100%;"
                   v-model="queryParam.purchaseBillSource"
                   ref="purchaseBillSource"
                   id="purchaseOrderList-purchaseBillSource"
@@ -118,6 +118,7 @@
           <span v-else>{{ record.purchaseBillNo }}</span>
           <a-badge v-if="record.promotionFlag && record.promotionFlag==1" count="促" :number-style="{ backgroundColor: '#52c41a', zoom:'80%',marginLeft:'5px' }"></a-badge>
           <a-badge count="改" v-if="record.billStatus=='HQ_CHANGE'||record.billStatus=='SUPERIOR_CHANGE'" :number-style="{ zoom:'80%',marginLeft:'5px' }"></a-badge>
+          <a-badge count="转促" v-if="record.borrowedShowFlag=='1'" :number-style="{ zoom:'80%',marginLeft:'5px',backgroundColor: '#BfBf00' }"></a-badge>
         </template>
         <!-- 审核 -->
         <template slot="audit" slot-scope="text, record">

+ 4 - 1
src/views/purchasingManagement/purchaseOrderNew/list.vue

@@ -117,6 +117,7 @@
             <span v-else>{{ record.purchaseBillNo }}</span>
             <a-badge v-if="record.promotionFlag && record.promotionFlag==1" count="促" :number-style="{ backgroundColor: '#52c41a', zoom:'80%',marginLeft:'5px' }"></a-badge>
             <a-badge count="改" v-if="record.billStatus=='HQ_CHANGE'||record.billStatus=='SUPERIOR_CHANGE'" :number-style="{ zoom:'80%',marginLeft:'5px' }"></a-badge>
+            <a-badge count="转促" v-if="record.borrowedShowFlag=='1'" :number-style="{ zoom:'80%',marginLeft:'5px',backgroundColor: '#BfBf00' }"></a-badge>
           </template>
           <!-- 审核 -->
           <template slot="audit" slot-scope="text, record">
@@ -403,5 +404,7 @@ export default {
 }
 </script>
 <style lang="less">
-
+.box{
+  background:rgba(194, 255, 172, 0.5)
+}
 </style>