Browse Source

bug 修复

lilei 2 years ago
parent
commit
43f34cb8b6

+ 3 - 0
src/views/salesManagement/outboundOrder/sendGoodModal.vue

@@ -113,6 +113,9 @@
             <!-- 物品名称 -->
             <template slot="goodName" slot-scope="text, record">
               <a-select v-model="record.goodsName" placeholder="请选择物品" style="width: 100%">
+                <a-select-option value="电池机油">
+                  电池机油
+                </a-select-option>
                 <a-select-option value="易损件">
                   易损件
                 </a-select-option>

+ 1 - 1
src/views/salesManagement/sendOutOrder/chooseImportModal.vue

@@ -8,7 +8,7 @@
     v-model="isShow"
     @cancel="isShow=false"
     width="80%">
-    <div class="chooseImport-con">
+    <div class="chooseImport-con" v-if="paramsData">
       <!-- 可导入数据 -->
       <p class="">可导入数据{{ paramsData.rightList?paramsData.rightList.length:0 }}条</p>
       <a-table

+ 1 - 1
src/views/salesManagement/sendOutOrder/detailModal.vue

@@ -117,7 +117,7 @@ export default {
       tableData: [],
       columns: [
         { title: '序号', dataIndex: 'no', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '货物名称', dataIndex: 'goodsName', scopedSlots: { customRender: 'goodName' }, width: '15%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
+        { title: '货物名称', dataIndex: 'goodsName', width: '15%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '件数', dataIndex: 'goodsQty', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '体积(m³)', dataIndex: 'goodsVolume', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '重量(kg)', dataIndex: 'goodsWeight', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },