diff --git a/src/views/system/order/index.vue b/src/views/system/order/index.vue
index 73a5c1f3327cd88551985e894b5fccfe4c1f4c3f..fff3e6f143e33e96e9881109d0730ac81abc927c 100644
--- a/src/views/system/order/index.vue
+++ b/src/views/system/order/index.vue
@@ -162,9 +162,9 @@
               </el-table-column>
               <el-table-column label="规格/数量/金额" align="center">
                 <template slot-scope="scope">
-                  {{ scope.row.goods_option_title }}<br/>
-                  {{ scope.row.goods_price / 100 }} å…ƒ<br/>
-                  x {{ scope.row.total }}<br/>
+                  {{ scope.row.goods_option_title ? scope.row.goods_option_title : '--' }}<br/>
+                  x {{ scope.row.total ? scope.row.total : '--' }}<br/>
+                  {{ scope.row.goods_price / 100 ? scope.row.goods_price / 100 : '--' }} å…ƒ<br/>
                 </template>
               </el-table-column>
               <el-table-column prop="created_time" label="下单时间" width="180" align="center">