Kaynağa Gözat

合并到骄阳

朱鑫波 4 yıl önce
ebeveyn
işleme
5352cd2b7e

+ 160 - 15
src/views/modules/kuaishouapp/account/stepForm/Step4.vue

@@ -399,7 +399,19 @@ li.chouzhen.first:before {
               :token-separators="[',',' ',',']"
             >
             </a-select>
-             <a style="margin:0 10px" @click="collection('creativeTag')" :disabled="!getData('creativeTag')">收藏</a>
+            <a-popconfirm @confirm="getInfo(record)">
+              <div slot="title">
+                <div>
+                  分类名称:
+                  <a-input placeholder="请输入" v-model="tagName" style="display: inline-block;width: 300px;" />
+                </div>
+              </div>
+              <!-- <a-button slot="okText" type="primary" :disabled="refuseReason == ''">确定</a-button> -->
+              <!-- <a @click="setData(record)">复制</a> -->
+              <a style="margin-right:10px" :disabled="!getData('creativeTag')">收藏</a>
+               <!-- @click="collection('creativeTag')" -->
+            </a-popconfirm>
+
             <a @click="showCunTitle('creativeTag')">收藏列表</a>
           </a-form-item>
 
@@ -680,6 +692,19 @@ li.chouzhen.first:before {
         </a-col>
       </a-row>
     </a-modal>
+            <!-- :load="loadOptions"
+        lazy -->
+    <a-modal title="收藏标题" v-model="creativeTagVisible"  :width="1000"  @ok="okTag">
+      <el-tree
+        :data="optionsTag"
+        show-checkbox
+        node-key="id"
+        :props="defaultProps"
+        :check-strictly="true"
+        ref="tree"
+      >
+      </el-tree>
+    </a-modal>
     <a-modal title="收藏标题" v-model="cunTitleVisible"  :width="1000"  @ok="okTitleCun">
       <a-row :gutter="10">
         <a-col :sm="24" style="margin-bottom: 20px; z-index: 10">
@@ -784,6 +809,13 @@ export default {
   },
   data() {
     return {
+      optionsTag: [],
+      defaultProps: {
+        children: 'children',
+        label: 'label',
+        id: 'id',
+      },
+      tagName: '',
       fieldNames: {
         label: 'category_name',
         value: 'category_id',
@@ -827,6 +859,7 @@ export default {
       showSite: true,
       titleVisible: false,
       cunTitleVisible: false,
+      creativeTagVisible: false,
       cunTitleList: [],
       options: [],
       data: [],
@@ -949,6 +982,57 @@ export default {
     }
   },
   methods: {
+    loadOptions(node, resolve) {
+      // Typically, do the AJAX stuff here.
+      // Once the server has responded,
+      // assign children options to the parent node & call the callback.
+      console.log(node)
+      var data = []
+      var id = node.label
+      if (node.level == 1) {
+        var params = {}
+        params.accountId = localStorage.getItem('accountId')
+        params.userId = this.userInfo().id
+        params.pageSize = 1000
+        params.pageNo = 1
+        params.id = id
+        getAction('/tag/kuaiShouCreativeTagCollection/list', params).then((res) => {
+          if (res.success) {
+            data = JSON.parse(res.result.records[0].tagArray).map((item) => {
+              return {
+                id: item,
+                label: item,
+                disabled: true,
+              }
+            })
+            resolve(data)
+          }
+        })
+      } else {
+        data = []
+        resolve(data)
+      }
+    },
+    getInfo(item) {
+      if (this.tagName == '') {
+        this.$message.error('请输入分类名称')
+        return
+      } else {
+        let params = {}
+        params.tagName = this.tagName
+        //   params.campaignBudget = this.campaignBudget
+        params.tagArray = JSON.stringify(this.getData('creativeTag'))
+        params.userId = this.userInfo().id
+        params.accountId = localStorage.getItem('accountId')
+        postAction('/tag/kuaiShouCreativeTagCollection/add', params).then((res) => {
+          if (res.success) {
+            this.$message.success('添加成功')
+          } else {
+            this.$message.error(res.message)
+          }
+        })
+      }
+    },
     addCaptions(type) {
       if (type == 'captionsList') {
         this.captionsList.push({ captions: '' })
@@ -1111,23 +1195,55 @@ export default {
       }
     },
     showCunTitle(type) {
-      this.cunTitleVisible = true
+      if (type == 'creativeTag') {
+        this.creativeTagVisible = true
+      } else {
+        this.cunTitleVisible = true
+      }
+
       this.getCunTitle(type)
     },
     getCunTitle(typeAdd) {
-      var params = {}
-      params.accountId = localStorage.getItem('accountId')
-      params.userId = this.userInfo().id
-      params.type = typeAdd == 'captionsList' ? 2 : typeAdd == 'creativeTag' ? 3 : 1
-      // params.pageNo = 1
-      // params.pageSize = 500
-      // /kuaishou/collectionSlogans/getByUserId?userId=12312312321&accountId=12&type=1
-      getAction('/kuaishou/collectionSlogans/getByUserId', params).then((res) => {
-        if (res.success) {
-          console.log(res.result)
-          this.cunTitleList = res.result.value
-        }
-      })
+      if (typeAdd == 'creativeTag') {
+        var params = {}
+        params.accountId = localStorage.getItem('accountId')
+        params.userId = this.userInfo().id
+        params.pageSize = 1000
+        params.pageNo = 1
+
+        getAction('/tag/kuaiShouCreativeTagCollection/list', params).then((res) => {
+          if (res.success) {
+            console.log(res.result)
+            this.optionsTag = res.result.records.map((item) => {
+              return {
+                id: item.id,
+                label: item.tagName,
+                children: JSON.parse(item.tagArray).map((item) => {
+                  return {
+                    id: item,
+                    label: item,
+                    disabled: true,
+                  }
+                }),
+              }
+            })
+          }
+        })
+      } else {
+        var params = {}
+        params.accountId = localStorage.getItem('accountId')
+        params.userId = this.userInfo().id
+        params.type = typeAdd == 'captionsList' ? 2 : 1
+        // params.pageNo = 1
+        // params.pageSize = 500
+        // /kuaishou/collectionSlogans/getByUserId?userId=12312312321&accountId=12&type=1
+        getAction('/kuaishou/collectionSlogans/getByUserId', params).then((res) => {
+          if (res.success) {
+            console.log(res.result)
+            this.cunTitleList = res.result.value
+          }
+        })
+      }
     },
     removeTitleCun(item) {
       console.log(item)
@@ -1187,6 +1303,35 @@ export default {
       //   }
       // })
     },
+    okTag() {
+      var data = this.$refs.tree.getCheckedKeys()
+      if (data.length > 1) {
+        this.$message.error('只能选择一个选项')
+        //  this.$refs.tree.setCheckedKeys([]);
+      } else {
+        var params = {}
+        params.accountId = localStorage.getItem('accountId')
+        params.userId = this.userInfo().id
+        params.pageSize = 1000
+        params.pageNo = 1
+        params.id = data[0]
+
+        getAction('/tag/kuaiShouCreativeTagCollection/list', params).then((res) => {
+          if (res.success) {
+            console.log(res.result)
+            this.form.setFieldsValue({
+              creativeTag: JSON.parse(res.result.records[0].tagArray).map((item) => {
+                return item
+              }),
+            })
+            this.creativeTagVisible = false
+          }else{
+            this.$message.error('选择出错,请稍后选择或自行手填')
+          }
+        })
+      }
+      console.log(data)
+    },
     okTitleCun(item) {
       if (this.guanggao.length > 0) {
         if (this.guanggao[0].captions) {

+ 178 - 0
src/views/modules/material/musicTab.vue

@@ -0,0 +1,178 @@
+<style lang='scss'>
+.only-there .ant-tabs-bar {
+  background: white;
+  padding: 0 24px;
+}
+.ant-card-head .ant-tabs-bar {
+  padding: 0;
+}
+#updateInfo .ant-modal-content,
+#updateInfo .ant-modal-body {
+  width: 500px;
+  position: relative;
+  padding-top: 10px;
+  .updateBOX {
+    height: 600px;
+    overflow: auto;
+  }
+}
+.Updatecontent {
+  padding: 0 20px 40px;
+  position: relative;
+  .Updateitem {
+    margin-bottom: 30px;
+  }
+}
+.Updatetitle {
+  text-align: center;
+  font-size: 22px;
+  font-weight: 500;
+  color: #1890ff;
+  margin-bottom: 20px;
+  /* margin-top: 20px; */
+}
+.Updatetime {
+  font-size: 16px;
+  font-weight: 700;
+  color: #000;
+  margin-bottom: 15px;
+}
+.updateicon {
+  font-size: 26px;
+  position: relative;
+  top: 4px;
+}
+.updateSpan {
+  margin-left: 10px;
+}
+.textTitle {
+  font-weight: 600;
+  font-size: 1.17em;
+
+  font-family: Helvetica, Arial, '\5b8b\4f53', sans-serif;
+}
+.okBtn {
+  position: absolute;
+  right: 3%;
+  bottom: 3%;
+}
+.updatelist {
+  .circular {
+    display: inline-block;
+    width: 3px;
+    height: 3px;
+    border-radius: 50%;
+    color: #999;
+  }
+}
+</style>
+<template>
+  <div class="music-tab" style="background:white;padding:20px">
+    <a-tabs default-active-key="1">
+      <a-tab-pane key="1" tab="网易云">
+        <wyyMusic />
+      </a-tab-pane>
+      <a-tab-pane key="2" tab="抖音">
+          
+      </a-tab-pane>
+    </a-tabs>
+  </div>
+</template>
+
+<script>
+import wyyMusic from './musicMaterial.vue'
+export default {
+  name: 'music-tab',
+  components: {
+   wyyMusic
+  },
+  data() {
+    return {
+      loading: true,
+      center: null,
+      rankList,
+      barData,
+      loginfo: {},
+      visitFields: ['ip', 'visit'],
+      visitInfo: [],
+      indicator: <a-icon type="loading" style="font-size: 24px" spin />,
+      roleCode: localStorage.getItem('roleCode'),
+      visible: false, //更新通知消息提示框
+      updateTime: ['2020-06-10', '2020-06-17', '2020-06-24', '2020-07-01'],
+      versionId: 0, //存储版本号 判断通知什么时候显示
+    }
+  },
+  created() {
+
+  },
+  methods: {
+   
+  },
+  mounted() {
+
+  },
+}
+</script>
+
+<style lang="scss" scoped>
+.circle-cust {
+  position: relative;
+  top: 28px;
+  left: -100%;
+}
+
+.extra-wrapper {
+  line-height: 55px;
+  padding-right: 24px;
+
+  .extra-item {
+    display: inline-block;
+    margin-right: 24px;
+
+    a {
+      margin-left: 24px;
+    }
+  }
+}
+
+/* 首页访问量统计 */
+.head-info {
+  position: relative;
+  text-align: left;
+  padding: 0 32px 0 0;
+  min-width: 125px;
+
+  &.center {
+    text-align: center;
+    padding: 0 32px;
+  }
+
+  span {
+    color: rgba(0, 0, 0, 0.45);
+    display: inline-block;
+    font-size: 0.95rem;
+    line-height: 42px;
+    margin-bottom: 4px;
+  }
+
+  p {
+    line-height: 42px;
+    margin: 0;
+
+    a {
+      font-weight: 600;
+      font-size: 1rem;
+    }
+  }
+}
+</style>
+<style lang="less">
+.ant-tabs-bar {
+  margin: 0 0 12px 0;
+  /* height: 55px; */
+  border-bottom: 1px solid #e8e8e8;
+  outline: none;
+  -webkit-transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
+  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
+}
+</style>

Dosya farkı çok büyük olduğundan ihmal edildi
+ 399 - 447
src/views/modules/material/videoMaterial.vue


+ 224 - 215
src/views/playerPart/playerList.vue

@@ -1,240 +1,249 @@
 <template>
-    <div class="playerList">
-        <div class="top">
-            <div class="playBody">
-                <div class="box">
-                    <div class="byted-card byted-card-inner-line byted-card-bordered css-deu8f5" v-for="(item) in playerList" :key="item.id">
-                        <div class="byted-card-body">
-                            <div class="media">
-                                <div class="main_img">
-                                    <img src="https://sf3-ttcdn-tos.pstatp.com/obj/union-fe/tmpl/file/2020082420341062812025.png" alt="图片加载失败">
-                                </div>
-                                <div class="hoverBody">
-                                    <div class="blackBG">
-                                        <a-button type="primary" @click="preview(item)" style="margin-bottom:30px">弹窗预览</a-button>
-                                        <a-button type="primary" @click="preview(item)">使用模板</a-button>
-                                    </div>
-                                </div>
-                            </div>
-                            <div >
-                                <h5 class="css-1lrzuem">
-                                    <span class="tip">{{item.product}}</span>
-                                    {{item.type}}
-                                </h5>
-                                <div class="css-vfnok7"></div>
-                            </div>
-                        </div>
-                    </div>
+  <div class="playerList">
+    <div class="top">
+      <div class="playBody">
+        <div class="box">
+          <div
+            class="byted-card byted-card-inner-line byted-card-bordered css-deu8f5"
+            v-for="item in playerList"
+            :key="item.id"
+          >
+            <div class="byted-card-body">
+              <div class="media">
+                <div class="main_img">
+                  <img
+                    src="https://sf3-ttcdn-tos.pstatp.com/obj/union-fe/tmpl/file/2020082420341062812025.png"
+                    alt="图片加载失败"
+                  />
                 </div>
-            </div>
-        </div>
-        <div class="previewBody" v-if="previewBody">
-            <div class="content">
-                <div class="content-inner">
-                    <div class="phone">
-                        <iframe :src="playerSrc" width="274" height="487" frameborder="0"></iframe>
-                    </div>
-                    <a-button type='default' @click="closePreview" size='large' class="closePreviewBtn">关闭预览</a-button>
+                <div class="hoverBody">
+                  <div class="blackBG">
+                    <a-button type="primary" @click="preview(item)" style="margin-bottom: 30px">弹窗预览</a-button>
+                    <a-button type="primary" @click="previewVisible=true">使用模板</a-button>
+                  </div>
                 </div>
+              </div>
+              <div>
+                <h5 class="css-1lrzuem">
+                  <span class="tip">{{ item.product }}</span>
+                  {{ item.type }}
+                </h5>
+                <div class="css-vfnok7"></div>
+              </div>
             </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="previewBody" v-if="previewBody">
+      <div class="content">
+        <div class="content-inner">
+          <div class="phone">
+            <iframe :src="playerSrc" width="274" height="487" frameborder="0"></iframe>
+          </div>
+          <a-button type="default" @click="closePreview" size="large" class="closePreviewBtn">关闭预览</a-button>
         </div>
+      </div>
     </div>
+    <a-modal title="素材替换" :visible="previewVisible" @cancel="handleCancel" :width="1000"> </a-modal>
+  </div>
 </template>
 
 <script>
-import playerList from './playerData'; 
+import playerList from './playerData'
 
 console.log(playerList)
 
 export default {
-    data() {
-        return {
-            playerList,
-            previewBody:false,
-            playerSrc:'',
-        }
-    },
-    methods:{
-        preview(item){
-            console.log(item);
-            this.previewBody=true;
-            this.playerSrc=item.link
-        },
-        closePreview(){
-            this.previewBody=false;
-        }
+  data() {
+    return {
+      playerList,
+      previewBody: false,
+      playerSrc: '',
+      previewVisible: false,
     }
+  },
+  methods: {
+    preview(item) {
+      console.log(item)
+      this.previewBody = true
+      this.playerSrc = item.link
+    },
+    closePreview() {
+      this.previewBody = false
+    },
+    handleCancel() {
+      this.previewVisible = false
+    },
+  },
 }
 </script>
 
 <style lang="scss" scoped>
-.playerList{
-    
-    position: relative;
-    .top{
-        width: calc(100% - 160px);
-        margin: 0px auto;
-    }
-    .playBody{
+.playerList {
+  position: relative;
+  .top {
+    width: calc(100% - 160px);
+    margin: 0px auto;
+  }
+  .playBody {
+    width: 100%;
+    padding: 20px;
+    .box {
+      width: 100%;
+      height: 100%;
+      display: flex;
+      flex-wrap: wrap;
+      -webkit-box-pack: center;
+      justify-content: flex-start;
+      .css-deu8f5 {
+        width: 224px;
+        margin: 10px !important;
+      }
+      .byted-card-inner-line {
+        padding: 0;
+      }
+      .byted-card-bordered {
+        border: 1px solid #e0e0e0;
+        box-shadow: none;
+      }
+      .byted-card {
+        font-size: 14px;
+        line-height: 22px;
+        position: relative;
+        color: #333;
+        background: #fff;
+        box-sizing: border-box;
+        border-radius: 4px;
+        box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
+        border: 1px solid transparent;
+      }
+      .byted-card > .byted-card-body {
+        box-shadow: rgb(204, 204, 204) 0px 0px 10px;
+        padding: 0px !important;
+      }
+      .byted-card > .byted-card-body .media {
+        height: 392px;
         width: 100%;
-        padding: 20px;
-        .box{
-            width: 100%;
-            height: 100%;
-            display: flex;
-            flex-wrap: wrap;
-            -webkit-box-pack: center;
-            justify-content: flex-start;
-            .css-deu8f5 {
-                width: 224px;
-                margin: 10px !important;
-            }
-            .byted-card-inner-line {
-                padding: 0;
-            }
-            .byted-card-bordered {
-                border: 1px solid #e0e0e0;
-                box-shadow: none;
-            }
-            .byted-card {
-                font-size: 14px;
-                line-height: 22px;
-                position: relative;
-                color: #333;
-                background: #fff;
-                box-sizing: border-box;
-                border-radius: 4px;
-                box-shadow: 0 1px 6px 0 rgba(0,0,0,.05);
-                border: 1px solid transparent;
-            }
-            .byted-card > .byted-card-body {
-                box-shadow: rgb(204, 204, 204) 0px 0px 10px;
-                padding: 0px !important;
-            }
-            .byted-card > .byted-card-body .media {
-                height: 392px;
-                width: 100%;
-                position: relative;
-                cursor: pointer;
-                overflow: hidden;
-                border-bottom: 1px solid rgb(204, 204, 204);
-            }
-            .byted-card > .byted-card-body .media .main_img {
-                width: 100%;
-                height: 100%;
-                display: flex;
-                -webkit-box-align: center;
-                align-items: center;
-                position: absolute;
-            }
-            .byted-card > .byted-card-body .media .main_img img:last-child {
-                width: 100%;
-                position: absolute;
-            }
-            .byted-card > .byted-card-body .media .main_img img:first-child {
-                width: 100%;
-                height: 100%;
-                // filter: blur(10px);
-                position: absolute;
-            }
-            .css-1lrzuem {
-                display: flex;
-                -webkit-box-align: center;
-                align-items: center;
-                font-size: 14px;
-                font-weight: 600;
-                color: rgb(51, 51, 51);
-                line-height: 20px;
-                text-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
-                word-break: keep-all;
-                text-overflow: ellipsis;
-                white-space: nowrap;
-                margin: 16px 16px 0px;
-                overflow: hidden;
-            }
-            .css-vfnok7 {
-                height: 40px;
-                display: flex;
-                flex-direction: row-reverse;
-                -webkit-box-align: center;
-                align-items: center;
-            }
-            .hoverBody{
-                display: none;
-                position: absolute;
-                top: 0px;
-                left: 0px;
-                width: 100%;
-                height: 100%;
-               
-            }
-            .blackBG{
-                position: absolute;
-                top: 0px;
-                left: 0px;
-                width: 100%;
-                height: 100%;
-                display: flex;
-                -webkit-box-align: center;
-                align-items: center;
-                -webkit-box-pack: center;
-                justify-content: center;
-                background-color: rgba(0, 0, 0, 0.5);
-                flex-flow: column;
-
-            }
-            .byted-card:hover {
-                box-shadow: rgb(153, 153, 153) 0px 0px 20px;
-            }
-            .byted-card:hover .hoverBody{
-                display: block;
-            }
-            .tip{
-                display: inline-block;
-                margin-right: 15px;
-                background: #FF6633;
-                width: 80px;
-                padding: 2px 10px;
-                text-align: center;
-                border-radius: 10px;
-            }
-        }
-    }
-    .previewBody{
-        background: rgba(0,0,0,.5);
+        position: relative;
+        cursor: pointer;
+        overflow: hidden;
+        border-bottom: 1px solid rgb(204, 204, 204);
+      }
+      .byted-card > .byted-card-body .media .main_img {
+        width: 100%;
+        height: 100%;
+        display: flex;
+        -webkit-box-align: center;
+        align-items: center;
         position: absolute;
-        top: 0;
-        left: 0;
-        padding: 20px 80px;
+      }
+      .byted-card > .byted-card-body .media .main_img img:last-child {
+        width: 100%;
+        position: absolute;
+      }
+      .byted-card > .byted-card-body .media .main_img img:first-child {
         width: 100%;
         height: 100%;
-        .content{
-            display: flex;
-            justify-content: center;
-            align-items: center;
-            height: 100%;
-        }
-        .content-inner{
-            font-size: 14px;
-            line-height: 22px;
-            padding: 0 24px 8px;
-            color: #666;
-            text-align: center;
-            position: fixed;
-            top: 200px;
-        }
-        .phone {
-            background-color: rgb(255, 255, 255);
-            position: relative;
-            padding: 9px 8px 7px;
-            border-radius: 24px;
-        }
-        .phone iframe {
-            border-radius: 18px;
-        }
-        .closePreviewBtn{
-            margin-top: 30px;
-        }
+        // filter: blur(10px);
+        position: absolute;
+      }
+      .css-1lrzuem {
+        display: flex;
+        -webkit-box-align: center;
+        align-items: center;
+        font-size: 14px;
+        font-weight: 600;
+        color: rgb(51, 51, 51);
+        line-height: 20px;
+        text-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
+        word-break: keep-all;
+        text-overflow: ellipsis;
+        white-space: nowrap;
+        margin: 16px 16px 0px;
+        overflow: hidden;
+      }
+      .css-vfnok7 {
+        height: 40px;
+        display: flex;
+        flex-direction: row-reverse;
+        -webkit-box-align: center;
+        align-items: center;
+      }
+      .hoverBody {
+        display: none;
+        position: absolute;
+        top: 0px;
+        left: 0px;
+        width: 100%;
+        height: 100%;
+      }
+      .blackBG {
+        position: absolute;
+        top: 0px;
+        left: 0px;
+        width: 100%;
+        height: 100%;
+        display: flex;
+        -webkit-box-align: center;
+        align-items: center;
+        -webkit-box-pack: center;
+        justify-content: center;
+        background-color: rgba(0, 0, 0, 0.5);
+        flex-flow: column;
+      }
+      .byted-card:hover {
+        box-shadow: rgb(153, 153, 153) 0px 0px 20px;
+      }
+      .byted-card:hover .hoverBody {
+        display: block;
+      }
+      .tip {
+        display: inline-block;
+        margin-right: 15px;
+        background: #ff6633;
+        width: 80px;
+        padding: 2px 10px;
+        text-align: center;
+        border-radius: 10px;
+      }
+    }
+  }
+  .previewBody {
+    background: rgba(0, 0, 0, 0.5);
+    position: absolute;
+    top: 0;
+    left: 0;
+    padding: 20px 80px;
+    width: 100%;
+    height: 100%;
+    .content {
+      display: flex;
+      justify-content: center;
+      align-items: center;
+      height: 100%;
+    }
+    .content-inner {
+      font-size: 14px;
+      line-height: 22px;
+      padding: 0 24px 8px;
+      color: #666;
+      text-align: center;
+      position: fixed;
+      top: 200px;
+    }
+    .phone {
+      background-color: rgb(255, 255, 255);
+      position: relative;
+      padding: 9px 8px 7px;
+      border-radius: 24px;
+    }
+    .phone iframe {
+      border-radius: 18px;
+    }
+    .closePreviewBtn {
+      margin-top: 30px;
     }
+  }
 }
 </style>

+ 2 - 2
vue.config.js

@@ -68,7 +68,7 @@ module.exports = {
     open : true,
     proxy: {
       '/jeecg-boot': {
-        //  target: 'http://192.168.1.8:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
+         target: 'http://192.168.1.8:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
         // target: 'http://192.168.0.59:8088', //请求本地 需要jeecg-boot后台项目  英豪
         // target: 'http://192.168.1.72:8088', //请求本地 需要jeecg-boot后台项目  英豪
         // target: 'http://192.168.2.115:8080', //请求本地 需要jeecg-boot后台项目  祚云
@@ -81,7 +81,7 @@ module.exports = {
         // target: 'http://192.168.1.94:8080', //请求本地 需要jeecg-boot后台项目  赵西安
 
 
-         target: 'http://api.tjyourong.com.cn', //请求本地 需要jeecg-boot后台项目
+        //  target: 'http://api.tjyourong.com.cn', //请求本地 需要jeecg-boot后台项目
         // target: 'https://trac.tjyourong.com.cn', //请求本地 需要jeecg-boot后台项目
         // target: 'http://39.106.184.70:8088/', //请求本地 需要jeecg-boot后台项目
          // target: 'http://adsp.tjyourong.com.cn/', //请求本地 需要jeecg-boot后台项目