Commit d8ca223f authored by godwithdh's avatar godwithdh

boss

parent 565ff580
...@@ -54,13 +54,13 @@ ...@@ -54,13 +54,13 @@
<div @click="routerToOperateDetail(v)" style="text-decoration:underline;">{{v.sType}}</div> <div @click="routerToOperateDetail(v)" style="text-decoration:underline;">{{v.sType}}</div>
</td> </td>
<td> <td>
<div>{{v.nQty||0}}</div> <div>{{Number(v.nQty||0).toLocaleString()}}</div>
</td> </td>
<td> <td>
<div>{{v.nPieces||0}}</div> <div>{{Number(v.nPieces||0).toLocaleString()}}</div>
</td> </td>
<td> <td>
<div>{{v.nAmount||0}}</div> <div>{{Number(v.nAmount||0).toLocaleString()}}</div>
</td> </td>
</tr> </tr>
</table> </table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment