Bläddra i källkod

盲票列表新增预付票售价字段,经销商盲票订单添加订单类型及订单类型筛选及预付票售价

DELL 3 år sedan
förälder
incheckning
65b0db1810

+ 1 - 1
src/views/business/ticket/create.vue

@@ -56,7 +56,7 @@
               size="small"
               placeholder="请输入预付售票价"
             >
-              <template slot="append">元</template>
+              <template slot="append">元 / 张</template>
             </el-input>
           </el-form-item>
           <el-form-item

+ 1 - 1
src/views/business/ticket/detail.vue

@@ -28,7 +28,7 @@
         </el-form-item>
         <el-form-item label="预付售票价:">
           <span :class="loading ? 'el-icon-loading' : ''"></span>
-          {{ info && info.prePrice && $numberFormat(info.prePrice) }}元
+          {{ info && info.prePrice && $numberFormat(info.prePrice) }}元/张
         </el-form-item>
         <el-form-item label="划线价:" v-if="info && info.type && info.type.value == 'online'">
           <span :class="loading ? 'el-icon-loading' : ''"></span>

+ 2 - 2
src/views/business/ticket/index.vue

@@ -166,9 +166,9 @@
           <div>¥{{ $numberFormat(scope.row.pkgSalePrice) }}/包</div>
         </template>
       </el-table-column>
-      <el-table-column label="预付售票价" prop="prePrice" min-width="100" sortable="custom">
+      <el-table-column label="预付售票价" prop="pkgPrePrice" min-width="100" sortable="custom">
         <template slot-scope="scope">
-          <div>¥{{ $numberFormat(scope.row.prePrice) }}/包</div>
+          <div>¥{{ $numberFormat(scope.row.pkgPrePrice) }}/包</div>
         </template>
       </el-table-column>
       <el-table-column label="已采购数量" prop="salePkgQty" min-width="110" sortable="custom">

+ 1 - 1
src/views/order/channel/index.vue

@@ -150,7 +150,7 @@
             </el-table-column>
             <el-table-column v-else label="预付票售价(元/包)" min-width="100">
               <template slot-scope="{ row }">
-                <div>{{ $numberFormat(row.pkgSalePrice) }}</div>
+                <div>{{ $numberFormat(row.pkgPrePrice) }}</div>
               </template>
             </el-table-column>
             <el-table-column label="数量" prop="orderNum" min-width="85">