소스 검색

修改后台前端展示问题

oyq28 2 년 전
부모
커밋
b2aba054b6

+ 1 - 0
imcs-bt-fe/imcs-bt-fe/imcs-ui/src/lang/zh/btMenu.js

@@ -42,6 +42,7 @@ export default {
       goodsRelView: '真实浏览量',
       goodsRelSales: '真实销量',
       goodsSpec: '规格',
+      isStarving: '是否缺料',
       goodsWeight: '权重',
       goodsStatus: '启用状态',
       goodsSaleType: '销售类型',

+ 1 - 1
imcs-bt-fe/imcs-bt-fe/imcs-ui/src/lang/zh/btOrder.js

@@ -31,7 +31,7 @@ export default {
       wzf: '未支付',
       yzf: '已支付',
       yqx: '已取消',
-      ywc: '已完成',
+      scwc: '生产完成',
       yc: '异常',
       zrtk: '转入退款',
     }

+ 8 - 0
imcs-bt-fe/imcs-bt-fe/imcs-ui/src/views/zuihou/productionresource/components/ProductMgr.vue

@@ -92,6 +92,14 @@
           </template>
         </el-table-column>
 
+        <el-table-column :label="$t('bt.table.isStarving')" :show-overflow-tooltip="true" align="center"
+                         prop="isStarving" width="">
+
+          <template slot-scope="scope">
+            {{ scope.row.isStarving === '0' ? '是' : '否' }}           
+          </template>
+        </el-table-column>
+
         <el-table-column :label="$t('bt.table.goodsStatus')" :show-overflow-tooltip="true" align="center"
                          prop="udStatus" width="">
 

+ 1 - 1
imcs-bt-fe/imcs-bt-fe/imcs-ui/src/views/zuihou/productionresource/components/allOrders.vue

@@ -82,7 +82,7 @@
                        prop="orderGoodsId"
                        width="">
         <template slot-scope="scope">
-          <span>{{ scope.row.equCom }}</span>
+          <span>{{ scope.row.deviceName }}</span>
         </template>
       </el-table-column>
       <el-table-column :label="$t('btOrder.orderMemberName')" :show-overflow-tooltip="true" align="center"