chenrui 3 éve
szülő
commit
bac67b9963
1 módosított fájl, 3 hozzáadás és 3 törlés
  1. 3 3
      src/views/purchasingManagement/purchaseOrder/edit.vue

+ 3 - 3
src/views/purchasingManagement/purchaseOrder/edit.vue

@@ -23,14 +23,14 @@
           <a-collapse-panel key="1">
             <template slot="header">
               基础信息
-              <a-button
+              <!-- <a-button
                 type="primary"
                 shape="circle"
                 size="small"
                 icon="edit"
                 class="edit-circle-btn"
                 id="purchaseOrderEdit-edit-circle-btn"
-                @click.stop="handleEditInfo" />
+                @click.stop="handleEditInfo" /> -->
             </template>
             <a-descriptions :column="2">
               <a-descriptions-item label="供应商">{{ detail&&detail.purchaseTargetName }}</a-descriptions-item>
@@ -268,7 +268,7 @@ export default {
       chooseColumns: [
         { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
         { title: '产品编码', dataIndex: 'dealerProductEntity.code', width: 220, align: 'center', sorter: true },
-        { title: '产品名称', dataIndex: 'dealerProductEntity.name', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '产品名称', dataIndex: 'dealerProductEntity.name', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '采购单价', dataIndex: 'discountedPrice', width: 100, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
         { title: '采购数量', scopedSlots: { customRender: 'storageQuantity' }, width: 150, align: 'center' },
         { title: '单位', dataIndex: 'dealerProductEntity.unit', width: 100, align: 'center', customRender: function (text) { return text || '--' } },