发布商品,运费模板设置
This commit is contained in:
		
							parent
							
								
									030adb7ae6
								
							
						
					
					
						commit
						cca4245316
					
				@ -57,7 +57,7 @@ Vue.prototype.getStore = getStore;
 | 
			
		||||
Vue.prototype.removeStore = removeStore;
 | 
			
		||||
Vue.prototype.md5 = md5;
 | 
			
		||||
Vue.prototype.linkTo = function (goodsId, skuId, link='https://pc-b2b2c.pickmall.cn') {  // 跳转买家端商品
 | 
			
		||||
  window.open(`${link}/goodsDetail?goodsId=${goodsId}&skuId=${skuId}`, '_blank')
 | 
			
		||||
  window.open(`${link}/goodsDetail?skuId=${skuId}&goodsId=${goodsId}`, '_blank')
 | 
			
		||||
};
 | 
			
		||||
Vue.prototype.wapLinkTo = function (goodsId, skuId) { // app端二维码
 | 
			
		||||
  return `https://m-b2b2c.pickmall.cn/pages/product/goods?id=${skuId}&goodsId=${goodsId}`
 | 
			
		||||
 | 
			
		||||
@ -33,7 +33,7 @@
 | 
			
		||||
                    <div class="div-zoom">
 | 
			
		||||
                      <a @click="linkTo(row.id,row.skuId)">{{row.goodsName}}</a>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <Poptip trigger="hover" title="扫码APP查看" transfer>
 | 
			
		||||
                    <Poptip trigger="hover" title="扫码在手机中查看" transfer>
 | 
			
		||||
                      <div slot="content">
 | 
			
		||||
                        <vue-qr :text="wapLinkTo(row.id,row.skuId)"  :margin="0" colorDark="#000" colorLight="#fff" :size="150"></vue-qr>
 | 
			
		||||
                      </div>
 | 
			
		||||
 | 
			
		||||
@ -1176,8 +1176,8 @@ export default {
 | 
			
		||||
    },
 | 
			
		||||
    //选择运费模板则展示运费规则
 | 
			
		||||
    logisticsTemplateChange(v) {
 | 
			
		||||
      if (v == "STORE") {
 | 
			
		||||
        //如果卖家承担运费 则需要查询运费规则
 | 
			
		||||
      if (v == "BUYER") {
 | 
			
		||||
        // 如果买家承担运费 则需要查询运费规则
 | 
			
		||||
        API_Shop.getShipTemplate().then((res) => {
 | 
			
		||||
          if (res.success) {
 | 
			
		||||
            this.logisticsTemplate = res.result;
 | 
			
		||||
@ -1244,7 +1244,7 @@ export default {
 | 
			
		||||
        ...response.result,
 | 
			
		||||
      };
 | 
			
		||||
      console.warn(this.baseInfoForm);
 | 
			
		||||
      if (this.baseInfoForm.freightPayer != "BUYER") {
 | 
			
		||||
      if (this.baseInfoForm.freightPayer === "BUYER") {
 | 
			
		||||
        API_Shop.getShipTemplate().then((res) => {
 | 
			
		||||
          if (res.success) {
 | 
			
		||||
            this.logisticsTemplate = res.result;
 | 
			
		||||
@ -1847,8 +1847,8 @@ export default {
 | 
			
		||||
          //   this.$Message.error("请选择店内分类");
 | 
			
		||||
          //   return;
 | 
			
		||||
          // }
 | 
			
		||||
          //如果选择的是买家承担运费 则运费模板重置为0
 | 
			
		||||
          if (this.baseInfoForm.freightPayer == "BUYER") {
 | 
			
		||||
          //如果选择的是卖家承担运费 则运费模板重置为0
 | 
			
		||||
          if (this.baseInfoForm.freightPayer !== "BUYER") {
 | 
			
		||||
            this.baseInfoForm.templateId = 0;
 | 
			
		||||
          }
 | 
			
		||||
          
 | 
			
		||||
 | 
			
		||||
@ -61,16 +61,22 @@
 | 
			
		||||
            >
 | 
			
		||||
 | 
			
		||||
              <!-- 商品栏目格式化 -->
 | 
			
		||||
              <template slot="goodsSlot" slot-scope="scope">
 | 
			
		||||
              <template slot="goodsSlot" slot-scope="{row}">
 | 
			
		||||
                <div style="margin-top: 5px;height: 90px; display: flex;">
 | 
			
		||||
                  <div style="">
 | 
			
		||||
                    <img :src="scope.row.goodsImage" style="height: 80px;margin-top: 3px">
 | 
			
		||||
                    <img :src="row.goodsImage" style="height: 80px;margin-top: 3px">
 | 
			
		||||
                  </div>
 | 
			
		||||
 | 
			
		||||
                  <div style="margin-left: 13px;margin-top: 3px;">
 | 
			
		||||
                    <div class="div-zoom" >
 | 
			
		||||
                      <a>{{scope.row.goodsName}}</a>
 | 
			
		||||
                  <div style="margin-left: 13px;">
 | 
			
		||||
                    <div class="div-zoom">
 | 
			
		||||
                      <a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <Poptip trigger="hover" title="扫码在手机中查看" transfer>
 | 
			
		||||
                      <div slot="content">
 | 
			
		||||
                        <vue-qr :text="wapLinkTo(row.goodsId,row.skuId)"  :margin="0" colorDark="#000" colorLight="#fff" :size="150"></vue-qr>
 | 
			
		||||
                      </div>
 | 
			
		||||
                      <img src="../../../assets/qrcode.svg" class="hover-pointer" width="20" height="20" alt="">
 | 
			
		||||
                    </Poptip>
 | 
			
		||||
                  </div>
 | 
			
		||||
                </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -61,16 +61,22 @@
 | 
			
		||||
            >
 | 
			
		||||
 | 
			
		||||
              <!-- 商品栏目格式化 -->
 | 
			
		||||
              <template slot="goodsSlot" slot-scope="scope">
 | 
			
		||||
              <template slot="goodsSlot" slot-scope="{row}">
 | 
			
		||||
                <div style="margin-top: 5px;height: 90px; display: flex;">
 | 
			
		||||
                  <div style="">
 | 
			
		||||
                    <img :src="scope.row.goodsImage" style="height: 80px;margin-top: 3px">
 | 
			
		||||
                    <img :src="row.goodsImage" style="height: 80px;margin-top: 3px">
 | 
			
		||||
                  </div>
 | 
			
		||||
 | 
			
		||||
                  <div style="margin-left: 13px;margin-top: 3px;">
 | 
			
		||||
                    <div class="div-zoom" >
 | 
			
		||||
                      <a>{{scope.row.goodsName}}</a>
 | 
			
		||||
                  <div style="margin-left: 13px;">
 | 
			
		||||
                    <div class="div-zoom">
 | 
			
		||||
                      <a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <Poptip trigger="hover" title="扫码在手机中查看" transfer>
 | 
			
		||||
                      <div slot="content">
 | 
			
		||||
                        <vue-qr :text="wapLinkTo(row.goodsId,row.skuId)"  :margin="0" colorDark="#000" colorLight="#fff" :size="150"></vue-qr>
 | 
			
		||||
                      </div>
 | 
			
		||||
                      <img src="../../../assets/qrcode.svg" class="hover-pointer" width="20" height="20" alt="">
 | 
			
		||||
                    </Poptip>
 | 
			
		||||
                  </div>
 | 
			
		||||
                </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -115,23 +115,27 @@
 | 
			
		||||
      <Card>
 | 
			
		||||
        <Table :loading="loading" border :columns="columns" :data="data" ref="table" sortable="custom">
 | 
			
		||||
          <!-- 商品栏目格式化 -->
 | 
			
		||||
          <template slot="goodsSlot" slot-scope="scope">
 | 
			
		||||
          <template slot="goodsSlot" slot-scope="{row}">
 | 
			
		||||
            <div style="margin-top: 5px; height: 80px; display: flex">
 | 
			
		||||
              <div style="">
 | 
			
		||||
                <img :src="scope.row.image" style="height: 60px; margin-top: 1px; width: 60px" />
 | 
			
		||||
                <img :src="row.image" style="height: 60px; margin-top: 1px; width: 60px" />
 | 
			
		||||
              </div>
 | 
			
		||||
 | 
			
		||||
              <div style="margin-left: 13px">
 | 
			
		||||
                <div class="div-zoom">
 | 
			
		||||
                  <a>{{ scope.row.goodsName }}</a>
 | 
			
		||||
                  <a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div>
 | 
			
		||||
                  <span v-for="(item, key) in JSON.parse(scope.row.specs)">
 | 
			
		||||
                <span v-for="(item, key) in JSON.parse(row.specs)">
 | 
			
		||||
                  <span v-show="key!='images'" style="font-size: 12px;color: #999999;">
 | 
			
		||||
                    {{key}} : {{item}}
 | 
			
		||||
                  </span>
 | 
			
		||||
                </span>
 | 
			
		||||
                <Poptip trigger="hover" style="display: block;" title="扫码在手机中查看" transfer>
 | 
			
		||||
                  <div slot="content">
 | 
			
		||||
                    <vue-qr :text="wapLinkTo(row.goodsId,row.skuId)"  :margin="0" colorDark="#000" colorLight="#fff" :size="150"></vue-qr>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <img src="../../../assets/qrcode.svg" class="hover-pointer" width="20" height="20" alt="">
 | 
			
		||||
                </Poptip>
 | 
			
		||||
              </div>
 | 
			
		||||
            </div>
 | 
			
		||||
          </template>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user