Browse Source

修复兑换专区部分 bug

wzy 9 months ago
parent
commit
795ca69939

+ 1 - 1
src/views/shop/exchange/index.vue

@@ -92,7 +92,7 @@ export default {
             let shopId = Cookies.get('shopID');
             // let urlCode = `https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
             // let urlCode = `http://192.168.0.151:8988/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
-            let urlCode = `http://test.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
+            let urlCode = `https://test.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${this.codeInfo.shopName}`
             //  根据 qcode 生成二维码链接
             // let imgCode = await QRCode.toDataURL(`https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/shop/shop-detail?shopId=${shopId}`)
             // console.log(imgCode);

+ 3 - 3
src/views/threeSelection/platformSelect/index.vue

@@ -10,13 +10,13 @@
           <el-form-item label="商品型号">
             <el-input v-model="formInline.productMarque" placeholder="请输入商品型号" />
           </el-form-item>
-          <el-form-item label="上架状态">
+          <!-- <el-form-item label="上架状态">
             <el-select v-model="formInline.shelveState" placeholder="请选择上架状态">
               <el-option label="全部" :value="null" />
               <el-option label="上架" value="1" />
               <el-option label="下架" value="0" />
             </el-select>
-          </el-form-item>
+          </el-form-item> -->
           <el-form-item label="官方分类">
             <el-cascader v-model="formInline.classifyId" :options="categoryList" clearable :props="{
           checkStrictly: true,
@@ -117,7 +117,7 @@ export default {
       formInline: {
         productMarque: '', // 商品型号
         search: '', // 搜索字段
-        shelveState: '', // 上架状态 1-上架 0-不上架 null-全部
+        shelveState: 1, // 上架状态 1-上架 0-不上架 null-全部
         stock: '', // 库存状态 1-有库存 0-无库存 null-全部
         classifyId: '', // 最下级分类id
         page: 1, // 当前页

+ 1 - 1
src/views/threeSelection/selfOrder/index.vue

@@ -51,7 +51,7 @@
               <span v-if="scope.row.scanType == 2">收款码订单</span>
             </template>
           </el-table-column>
-          <el-table-column prop="price" label="支付金额(元)" width="220" />
+          <el-table-column prop="price" label="支付代金券" width="220" />
           <el-table-column prop="number" label="商品数量(件)" show-overflow-tooltip />
           <el-table-column label="订单状态" show-overflow-tooltip>
             <template slot-scope="scope">

+ 1 - 1
src/views/threeSelection/selfOrder/pendDetails.vue

@@ -210,7 +210,7 @@ export default {
     async getProductList() {
       try {
         this.loading = true
-        const res = await orderGetById({ orderId: this.orderId })
+        const res = await orderGetById({ orderId: this.orderId,shopId:186 })
         this.order = res.data
       } finally {
         this.loading = false

+ 2 - 2
src/views/threeSelection/shoppingCart/index.vue

@@ -114,7 +114,7 @@
           <div class="settlement">
               <div class="txt-price">
                 <p>总价:¥{{ allPrice }}</p>
-                <p>剩余代金券金额:{{ voucherNum.toFixed(2) }}</p>
+                <p>商家代金券余额:{{ voucherNum.toFixed(2) }}</p>
               </div>
 
               <el-button type="danger" @click="settleShop">结算商品</el-button>
@@ -181,7 +181,7 @@ export default {
   computed: {
     allPrice() {
       let price = this.multipleSelection.reduce((prev, item) => {
-        prev = item.price * item.number;
+        prev += item.price * item.number;
         return prev;
       }, 0);
       return price.toFixed(2);