소스 검색

修改bug

chenrui 1 년 전
부모
커밋
a947482ba7
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/salesManagement/salesList/list.vue

+ 2 - 2
src/views/salesManagement/salesList/list.vue

@@ -112,7 +112,7 @@
               </template>
               <div>
                 <a-icon type="exclamation-circle" :style="{color:'#ed1c24',fontSize:'20px',marginRight:'8px',display:'inlineBlock'}"/>
-                <span>{{ record.dispatchOverDay*1>0?'未备货':record.dispatchOverDay*1>0 &&record.sendOverDay*1>0?'未备货/未付款' :record.sendOverDay*1>0?'未付款':record.settleOverDay*1>0?'未结算':'--' }}</span>
+                <span>{{ record.dispatchOverDay*1>0?'未备货':record.dispatchOverDay*1>0 &&record.settleOverDay*1>0?'未备货/未收款' :record.sendOverDay*1>0?'未发货':record.settleOverDay*1>0?'未收款':'--' }}</span>
               </div>
             </a-tooltip>
             <span v-else>--</span>
@@ -256,7 +256,7 @@ export default {
         { title: '物流电话', dataIndex: 'sendTransportTele', width: '100px', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '物流单号', dataIndex: 'sendTransportNo', width: '100px', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '总件数', dataIndex: 'sendTotalQty', width: '80px', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
-        { title: '运费合计', dataIndex: 'totalAmount', width: '80px', align: 'right', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
+        { title: '运费合计', dataIndex: 'sendTotalAmount', width: '80px', align: 'right', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
         { title: '收货状态', dataIndex: 'sendReceiveFlagDictValue', width: '100px', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '收货时间', dataIndex: 'sendReceiveDate', width: '100px', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '物流情况', dataIndex: 'sendTransportStateDictValue', width: '100px', align: 'center', customRender: function (text) { return text || '--' } },