瀏覽代碼

样式调整

chenrui 3 年之前
父節點
當前提交
4480a14a6d

+ 1 - 1
src/components/custom.less

@@ -45,7 +45,7 @@ body{
     }
   }
   .table-page-search-submitButtons {
-    margin-bottom: 10px;
+    margin-bottom: 9px;
   }
 }
 // 菜单样式

+ 1 - 0
src/components/tools/UserMenu.vue

@@ -132,6 +132,7 @@ export default {
 	transition: all 0.3s;
 	padding: 0 5px;
   margin: 0;
+  vertical-align: bottom;
 }
 .help-cont:hover {
 	background-color: rgba(0, 0, 0, 0.04);;

+ 1 - 8
src/views/purchasingManagement/purchaseOrder/list.vue

@@ -177,7 +177,7 @@ export default {
         { title: '产品款数', dataIndex: 'totalCategory', width: 80, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '采购数量', dataIndex: 'totalQty', width: 80, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '缺货数量', dataIndex: 'totalCancelQty', width: 80, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
-        { title: '采购金额(¥)', dataIndex: 'discountedAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? ('¥' + text) : '--') } },
+        { title: '采购金额(¥)', dataIndex: 'discountedAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '业务状态', dataIndex: 'billStatusDictValue', width: 80, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '财务状态', dataIndex: 'financialStatusDictValue', width: 80, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
@@ -321,10 +321,3 @@ export default {
   }
 }
 </script>
-<style lang="less">
-  .purchaseOrderList-wrap{
-    .sTable{
-      margin-top: 15px;
-    }
-  }
-</style>