浏览代码

no message

FengChaoYu 3 年之前
父节点
当前提交
3092355117
共有 2 个文件被更改,包括 27 次插入0 次删除
  1. 21 0
      src/views/deposit_home/deposit_list.vue
  2. 6 0
      src/views/deposit_home/refund_list.vue

+ 21 - 0
src/views/deposit_home/deposit_list.vue

@@ -298,6 +298,16 @@
               min-width="160"
               show-overflow-tooltip
             />
+            <el-table-column v-if="!isCustomer" align="right" label="厂编号" prop="factoryNo" min-width="160" show-overflow-tooltip>
+            </el-table-column>
+            <el-table-column v-if="!isCustomer" align="right" label="特价编号" prop="specialNo" min-width="160" show-overflow-tooltip>
+            </el-table-column>
+            <el-table-column align="left" label="行业类别" prop="refTradeCategory" min-width="160" show-overflow-tooltip>
+              <template slot-scope="scope">
+                <CopyButton :copyText="scope.row.refTradeCategory" />
+                <span>{{scope.row.refTradeCategory}}</span>
+              </template>
+            </el-table-column>
             <el-table-column
               align="left"
               label="使用单位"
@@ -305,6 +315,12 @@
               min-width="160"
               show-overflow-tooltip
             />
+            <el-table-column align="left" label="区域" prop="refRegionWork" min-width="160" show-overflow-tooltip>
+              <template slot-scope="scope">
+                <CopyButton :copyText="scope.row.refRegionWork" />
+                <span>{{scope.row.refRegionWork}}</span>
+              </template>
+            </el-table-column>
             <el-table-column
               align="left"
               label="申请日期"
@@ -343,6 +359,11 @@
                 <span>{{ scope.row.customerName }}</span>
               </template>
             </el-table-column>
+            <el-table-column v-if="!isCustomer" align="left" label="格力内部备注" prop="geLiInerNote" min-width="160" show-overflow-tooltip>
+              <template slot-scope="scope">
+                <span>{{scope.row.geLiInerNote}}</span>
+              </template>
+            </el-table-column>
             <el-table-column
               align="left"
               label="规格型号"

+ 6 - 0
src/views/deposit_home/refund_list.vue

@@ -306,6 +306,12 @@
                 <span>{{scope.row.specification}}</span>
               </template>
             </el-table-column>
+            <el-table-column align="left" label="是否退押" prop="isRefundDeposit" min-width="160" show-overflow-tooltip>
+              <template slot-scope="scope">
+                <el-tag v-if="scope.row.isRefundDeposit" type="success" size="small">是</el-tag>
+                <el-tag v-else type="warning" size="small">否</el-tag>
+              </template>
+            </el-table-column>
             <el-table-column align="right" label="押金金额" prop="depositAmount" min-width="160" show-overflow-tooltip>
               <template slot-scope="scope">
                 {{ scope.row.depositAmount | numToFixed }}