chenrui 4 lat temu
rodzic
commit
49d8258eeb
1 zmienionych plików z 8 dodań i 2 usunięć
  1. 8 2
      src/views/shop/goodsList.vue

+ 8 - 2
src/views/shop/goodsList.vue

@@ -41,7 +41,13 @@
       </a-form>
     </div>
     <div class="table-operator">
-      <a-button v-if="$hasPermissions('B_goodsManage_add')" id="goodsList-btn-add" type="primary" icon="plus" @click="handleGoods('add')" style="margin-top: 18px;">新增</a-button>
+      <a-button
+        v-if="$hasPermissions('B_goodsManage_add')"
+        id="goodsList-btn-add"
+        type="primary"
+        icon="plus"
+        @click="handleGoods('add')"
+        style="margin-top: 18px;">新增</a-button>
     </div>
     <s-table
       ref="table"
@@ -92,7 +98,7 @@ export default {
         { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
         { title: '商品名称', dataIndex: 'name', width: 200, align: 'center' },
         { title: '商品分类', dataIndex: 'goodsTypeName', width: 200, align: 'center' },
-        { title: '商品价格(乐豆)', dataIndex: 'originalGold', width: 150, align: 'center' },
+        { title: '商品价格(乐豆)', dataIndex: 'sellGold', width: 150, align: 'center' },
         { title: '供货商简称', dataIndex: 'officialPartnerSimpleName', width: 100, align: 'center' },
         { title: '商品状态', scopedSlots: { customRender: 'state' }, width: 100, align: 'center' },
         { title: '库存数量', dataIndex: 'inventoryQty', width: 100, align: 'center' },