See999 4 years ago
parent
commit
d2267db6e8
1 changed files with 1 additions and 5 deletions
  1. 1 5
      src/xt_pages/stock/stockQuery.vue

+ 1 - 5
src/xt_pages/stock/stockQuery.vue View File

52
           <template slot-scope="scope">
52
           <template slot-scope="scope">
53
             <span
53
             <span
54
               @click="showStockInDetailDialog(scope.row.good_id)"
54
               @click="showStockInDetailDialog(scope.row.good_id)"
55
-              style="color: #579ef8"
56
               >{{ stockInCount(scope.row) }}</span
55
               >{{ stockInCount(scope.row) }}</span
57
             >
56
             >
58
           </template>
57
           </template>
61
           <template slot-scope="scope">
60
           <template slot-scope="scope">
62
             <span
61
             <span
63
               @click="showSaleReturnDetailDialog(scope.row)"
62
               @click="showSaleReturnDetailDialog(scope.row)"
64
-              style="color: #F56C6C"
65
               >{{ salesReturnCount(scope.row) }}</span
63
               >{{ salesReturnCount(scope.row) }}</span
66
             >
64
             >
67
           </template>
65
           </template>
75
           <template slot-scope="scope">
73
           <template slot-scope="scope">
76
             <span
74
             <span
77
               @click="showStockOutDetailDialog(scope.row.good_id)"
75
               @click="showStockOutDetailDialog(scope.row.good_id)"
78
-              style="color: #579ef8"
79
               >{{ stockOutCount(scope.row) }}</span
76
               >{{ stockOutCount(scope.row) }}</span
80
             >
77
             >
81
           </template>
78
           </template>
84
           <template slot-scope="scope">
81
           <template slot-scope="scope">
85
             <span
82
             <span
86
               @click="showCancelStockDetailDialog(scope.row)"
83
               @click="showCancelStockDetailDialog(scope.row)"
87
-              style="color: #F56C6C"
88
               >{{ cancelStockCount(scope.row) }}</span
84
               >{{ cancelStockCount(scope.row) }}</span
89
             >
85
             >
90
           </template>
86
           </template>
97
 
93
 
98
         <el-table-column label="剩余库存" align="center">
94
         <el-table-column label="剩余库存" align="center">
99
           <template slot-scope="scope">
95
           <template slot-scope="scope">
100
-            <span style="color: red">{{
96
+            <span>{{
101
               stockInCount(scope.row) -
97
               stockInCount(scope.row) -
102
                 salesReturnCount(scope.row) -
98
                 salesReturnCount(scope.row) -
103
                 stockOutCount(scope.row) +
99
                 stockOutCount(scope.row) +