Просмотр исходного кода

图片路径替换、本地图片换线上图片

hbchen 1 год назад
Родитель
Сommit
45758d1d27

+ 3 - 3
activityPages/activityDetail/activityDetail.vue

@@ -14,8 +14,8 @@
           <!-- 内容部分 -->
           <view class="content">
             <view v-if="detailData.ActivityName" class="dialog-title brackets-title">
-              <image style="width:83rpx;height:33rpx"  v-if="detailData.IsResearchPoints" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-              <image v-if="!detailData.IsResearchPoints && detailData.IsExternalLabel" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
+              <image style="width:83rpx;height:33rpx"  v-if="detailData.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
+              <image v-if="!detailData.IsResearchPoints && detailData.IsExternalLabel" src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"></image>
               {{ detailData.ActivityName }}
             </view>
             <block v-if="detailData.FileType == 1">
@@ -124,7 +124,7 @@
               <view class="network-right dustrial-content">
                 <view class="item" v-for="item in detailData.Listndustrial" :key="item.IndustrialManagementId">
                   <view :class="['dustrial-li', item.IsJump && 'dustrial-item']" @click="goDustrialHandler(item)">{{ item.IndustryName }} </view>
-                  <image v-if="item.IndustryNewLabel" class="new_icon" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png" mode=""></image>
+                  <image v-if="item.IndustryNewLabel" class="new_icon" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png" mode=""></image>
                 </view>
               </view>
             </view>

+ 4 - 4
activityPages/themeActivity/themeActivity.vue

@@ -7,7 +7,7 @@
           <view :class="['content-title', !contentDetail.IsJump && 'jump-title']" @click="jumpHandler">
             <text class="jump-label">{{ contentDetail.Label }}</text>
             <text v-if="contentDetail.IsJump" class="jump-text"> 查看资源包>></text>
-            <image v-if="contentDetail.IndustryNewLabel" class="new_icon" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png" mode=""></image>
+            <image v-if="contentDetail.IndustryNewLabel" class="new_icon" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png" mode=""></image>
           </view>
         </view>
         <view :class="['screen-item', (isEndActivity || !type) && 'end-select-item']">
@@ -87,9 +87,9 @@
               <view class="item">
                 <view class="item-text" @click="goDetail(item)">
                   <view class="activity-title text_twoLine">
-                    <image v-if="item.IsResearchPoints" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-										<image v-else-if="item.IsResearch" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-                    <image v-if="item.IsExternalLabel" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
+                    <image v-if="item.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
+										<image v-else-if="item.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
+                    <image v-if="item.IsExternalLabel" src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"></image>
                     {{ item.ActivityName }}
                   </view>
                   <text class="text_twoLine" v-if="item.Expert && item.SourceType == 1">专家背景:{{ item.Expert }} </text>

+ 3 - 3
components/ItemComponent/activityItem.vue

@@ -11,9 +11,9 @@
     </view>
     <view class="content-type"> {{ list.ActivityTypeName || "专项产业调研" }}</view>
     <view :class="['content-title', 'text-Line', list.ResearchTheme && 'content-min-hight']" v-if="list.ActivityName || list.ResearchTheme">
-      <image v-if="list.IsResearchPoints" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-			<image v-else-if="list.IsResearch" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
-      <image v-else-if="list.IsExternalLabel" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
+      <image v-if="list.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
+			<image v-else-if="list.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
+      <image v-else-if="list.IsExternalLabel" src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"></image>
       {{ list.ActivityName || list.ResearchTheme }}
     </view>
     <view style="display: flex" class="content-text content-min-hight text_twoLine" v-if="list.ActivityTimeText && list.SourceType !== 1">

+ 1 - 1
components/ItemComponent/reportItem.vue

@@ -95,7 +95,7 @@ export default {
 		  content: "";
 		  position: absolute;
 		  top: 6rpx;
-			background-image: url(https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png);
+			background-image: url(https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png);
 			background-size: 100% 100%;
 			background-repeat: no-repeat;
 		  left: 0;

+ 5 - 6
components/activity/purchaserActivityList.vue

@@ -14,15 +14,15 @@
 					</text>
 				</view>
 				<view class="activity-title text_twoLine" @click="goDetail(item)">
-					<image v-if="item.IsResearchPoints" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-					<image v-else-if="item.IsResearch" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-					<image v-if="item.IsExternalLabel" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
+					<image v-if="item.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
+					<image v-else-if="item.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
+					<image v-if="item.IsExternalLabel" src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"></image>
 					{{ item.ActivityName }}
 				</view>
 				<view class="activity-time-city-row" @click="goDetail(item)">
 					<text class="activity-time">{{ item.SourceType == 2 ? "" : item.ActivityTimeText }}</text>
 					<view class="activity-city" v-if="item.City">
-						<image src="../../static/location-new.png"></image>
+						<image src="https://hzstatic.hzinsights.com/cygx/icon/location-new.png"></image>
 						{{ item.City }}
 					</view>
 				</view>
@@ -118,14 +118,13 @@
 		methods:{
 			// 获取列表数据
 			async getActivityList() {
-				console.log(this.whichDay,this.typeName);
 			  const res = await activity.getActivityListNew({
 			    PageSize: this.pageSize,
 			    CurrentIndex: this.page_no,
 					IsResearch:true,
 					ActiveState:this.activityType==1? '':3,
 					WhichDay:this.whichDay,
-					TypeName:this.typeName
+					ActivityTypeId:this.typeName
 			  })
 			  if (res.Ret === 200) {
 			    if (this.page_no === 1) {

+ 1 - 1
pageMy/myCollection/myCollection.vue

@@ -329,7 +329,7 @@ export default {
 				  content: "";
 				  position: absolute;
 				  top: 5rpx;
-					background-image: url(https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png);
+					background-image: url(https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png);
 					background-size: 100% 100%;
 					background-repeat: no-repeat;
 				  left: 0;

+ 2 - 2
pageMy/mySchedulepage/mySchedulepage.vue

@@ -36,8 +36,8 @@
           <view class="item">
             <view class="item-text" @click="goDetail(item)">
               <view class="activity-title text_twoLine">
-								<image v-if="item.IsResearchPoints" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-								<image v-else-if="item.IsResearch" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
+								<image v-if="item.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
+								<image v-else-if="item.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
 								{{ item.ActivityName }}
 							</view>
               <text class="text_twoLine" v-if="item.Expert && item.SourceType == 1">专家背景:{{ item.Expert }} </text>

+ 1 - 1
pages-purchaser/finishedActivity/finishedActivity.vue

@@ -3,7 +3,7 @@
 		<purchaserActivityList style="width: 682rpx;" ref="purchaserActivityListRef" :activityType="0">
 			<view class="no-data-box">
 				<view class="no-data">
-					<image src="../../static/no-data-activity.png" ></image>
+					<image src="https://hzstatic.hzinsights.com/cygx/icon/activity-no-data.png" ></image>
 					<text>暂无对应活动</text>
 				</view>
 			</view>

+ 2 - 2
pages-purchaser/purchaserActivity/purchaserActivity.vue

@@ -11,7 +11,7 @@
 			:typeName="typeName">
 				<view class="no-data-box">
 					<view class="no-data">
-						<image src="../../static/no-data-activity.png" ></image>
+						<image src="https://hzstatic.hzinsights.com/cygx/icon/activity-no-data.png" ></image>
 						<text>暂无对应活动</text>
 					</view>
 				</view>
@@ -35,7 +35,7 @@
 				  { Id: 2, IsChoose: false, StatusName: "明日活动" },
 				],
 				activityTypeList: [
-				  { Id: 1, IsChoose: false, StatusName: "公司调研电话会" }
+				  { Id: 3, IsChoose: false, StatusName: "公司调研电话会" }
 				],
 				whichDay:'',
 				typeName:''

+ 1 - 1
pages-purchaser/researchList/researchList.vue

@@ -76,7 +76,7 @@
 		            {{ index + 1 }}
 		          </text>
 		          <text class="text_oneLine title" style="display: inline"> # {{ item.IndustryName }} </text>
-		          <image class="new-img" v-if="item.IsNew" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png"></image>
+		          <image class="new-img" v-if="item.IsNew" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png"></image>
 		        </view>
 		        <text :class="item.IsFollw ? 'cancel-attention' : 'attention'" @click="isAttention(item, '主题')">{{
 		          item.IsFollw ? "取消关注" : "+ 关注"

+ 1 - 1
pages-purchaser/researchTheme/researchTheme.vue

@@ -10,7 +10,7 @@
         <view class="li-item hot-item">
           <view style="display: flex" class="text_oneLine hot-new" @click="themeDetails(item, '主题热度榜')">
             <text class="text_oneLine title" style="display: inline"> # {{ item.IndustryName }} </text>
-            <!-- <image class="new-img" v-if="item.IsNew" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png"></image> -->
+            <!-- <image class="new-img" v-if="item.IsNew" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png"></image> -->
             <image class="hot-icon" v-if="item.IsHot" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/hot_report.png" mode=""></image>
           </view>
           <text :class="item.IsFollw ? 'cancel-attention' : 'attention'" @click="isAttention(item, '主题')">{{ item.IsFollw ? "取消关注" : "+ 关注" }}</text>

+ 2 - 2
pages-search/components/activityBack.vue

@@ -36,8 +36,8 @@
             <view class="item">
               <view class="item-text" @click="goDetail(item)">
 								<view class="activity-title text_twoLine">
-								  <image v-if="item.IsResearchPoints" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
-								  <image v-else-if="item.IsResearch" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"></image>
+								  <image v-if="item.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
+								  <image v-else-if="item.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
 								  {{ item.ActivityName }}
 								</view>
                 <text class="text_twoLine" v-if="item.Expert && item.SourceType == 1">专家背景:{{ item.Expert }} </text>

+ 3 - 3
pages-search/components/report.vue

@@ -16,7 +16,7 @@
               </view>
               {{ item.IndustryName }}
               <image class="hot-icon" v-if="item.IsHot" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/hot_report.png" mode=""></image>
-              <image v-if="item.IsNew" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png" mode=""></image>
+              <image v-if="item.IsNew" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png" mode=""></image>
             </view>
             <view class="publish">
               <text class="reg-hint" v-if="item.IsRed"></text>
@@ -73,7 +73,7 @@
               </view>
               {{ item.IndustryName }}
               <image class="hot-icon" v-if="item.IsHot" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/hot_report.png" mode=""></image>
-              <image v-if="item.IsNew" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png" mode=""></image>
+              <image v-if="item.IsNew" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png" mode=""></image>
             </view>
             <view class="publish">
               {{ item.PublishDate }}
@@ -463,7 +463,7 @@ export default {
 				  content: "";
 				  position: absolute;
 				  top: 5rpx;
-					background-image: url(https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png);
+					background-image: url(https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png);
 					background-size: 100% 100%;
 					background-repeat: no-repeat;
 				  left: 0;

+ 8 - 8
pages/activity/components/activityTypeList.vue

@@ -8,11 +8,11 @@
 	          <view class="item-img" @click="goDetails(item)"> </view>
 	          <view :style="{ 'background-image': 'url(' + item.ImgUrlBg + ')' }" class="activity-ui">
 	            <view class="activity-li" :style="{ 'background-image': 'url(' + val.ImgUrlBg + ')' }" v-for="val in item.List" :key="val.ActivityId" @click="goDetails(val, item.Resource)">
-	              <image v-if="val.IsResearchPoints" style="width: 73rpx; right: -6rpx;height:30rpx" class="item-image" lazy-load src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
+	              <image v-if="val.IsResearchPoints" style="width: 73rpx; right: -6rpx;height:30rpx" class="item-image" lazy-load src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
 								<image v-else-if="val.IsResearch" 
 								style="width: 73rpx; right: -6rpx;height:30rpx" 
 								class="item-image" lazy-load 
-								src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
+								src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
 								<view class="item-trip" v-else-if="val.TripStatus == 2">确定行程</view>
 								<view class="item-trip item-city" v-else-if="val.City.length == 2">{{ val.City }}</view>
 								<image
@@ -20,9 +20,9 @@
 									v-else-if="val.IsExternalLabel"
 									class="item-image"
 									lazy-load
-									src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"
+									src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"
 								></image>
-								<image v-else-if="val.IsNew" class="item-image" lazy-load src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png"></image>
+								<image v-else-if="val.IsNew" class="item-image" lazy-load src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png"></image>
 	              <text class="text_oneLine"> {{ val.KeyWord }}</text>
 	            </view>
 	          </view>
@@ -38,11 +38,11 @@
 	          <view class="item-img" @click="goDetails(item)"> </view>
 	          <view :style="{ 'background-image': 'url(' + item.ImgUrlBg + ')' }" class="activity-ui">
 	            <view class="activity-li" :style="{ 'background-image': 'url(' + val.ImgUrlBg + ')' }" v-for="val in item.List" :key="val.ActivityId" @click="goDetails(val, item.Resource)">
-	              <image v-if="val.IsResearchPoints" style="width: 73rpx; right: -6rpx;height:30rpx" class="item-image" lazy-load src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
+	              <image v-if="val.IsResearchPoints" style="width: 73rpx; right: -6rpx;height:30rpx" class="item-image" lazy-load src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
 								<image v-else-if="val.IsResearch" 
 								style="width: 73rpx; right: -6rpx;height:30rpx" 
 								class="item-image" lazy-load 
-								src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Research_Points.png"></image>
+								src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
 								<view class="item-trip" v-else-if="val.TripStatus == 2">确定行程</view>
 								<view class="item-trip item-city" v-else-if="val.City.length == 2">{{ val.City }}</view>
 								<image
@@ -50,9 +50,9 @@
 									v-else-if="val.IsExternalLabel"
 									class="item-image"
 									lazy-load
-									src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/activity_external.png"
+									src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"
 								></image>
-								<image v-else-if="val.IsNew" class="item-image" lazy-load src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png"></image>
+								<image v-else-if="val.IsNew" class="item-image" lazy-load src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png"></image>
 	              <text class="text_oneLine"> {{ val.KeyWord }}</text>
 	            </view>
 	          </view>

+ 5 - 5
pages/purchaser/purchaser.vue

@@ -21,12 +21,12 @@
 			<view class="purchaser-content-box">
 				<view class="purchaser-content-box-head">
 					<view class="content-box-head-title">
-						<image src="../../static/report.png"></image>
+						<image src="https://hzstatic.hzinsights.com/cygx/icon/purchaser-report.png"></image>
 						<text>近期报告更新</text>
 					</view>
 					<view class="content-box-head-more" @click="toReportTotal">
 						<text>全部更新</text>
-						<image src="../../static/right-arrow.png"></image>
+						<image src="https://hzstatic.hzinsights.com/cygx/icon/right-arrow-circle.png"></image>
 					</view>
 				</view>
 				<view class="purchaser-content-box-body">
@@ -46,19 +46,19 @@
 			<view class="purchaser-content-box">
 				<view class="purchaser-content-box-head">
 					<view class="content-box-head-title">
-						<image src="../../static/purchaser-icon.png"></image>
+						<image src="https://hzstatic.hzinsights.com/cygx/icon/purchaser.png"></image>
 						<text>研选活动</text>
 					</view>
 					<view class="content-box-head-more" @click="toActivityTotal">
 						<text>查看全部</text>
-						<image src="../../static/right-arrow.png"></image>
+						<image src="https://hzstatic.hzinsights.com/cygx/icon/right-arrow-circle.png"></image>
 					</view>
 				</view>
 				
 				<purchaserActivityList style="width: 682rpx;" ref="purchaserActivityListRef" >
 					<view class="no-data-box">
 						<view class="no-data">
-							<image src="../../static/no-data-activity.png" ></image>
+							<image src="https://hzstatic.hzinsights.com/cygx/icon/activity-no-data.png" ></image>
 							<text>暂无对应活动</text>
 						</view>
 						<view class="end-activity-text" @click="endActivity">已结束活动>></view>

+ 1 - 1
pages/reportForm/reportForm.vue

@@ -116,7 +116,7 @@
               <view class="ndustry-box-read">
                 <text>{{ item.IndustryName }}</text>
                 <image class="hot-icon" v-if="item.IsHot" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/hot_report.png" mode=""></image>
-                <image v-if="item.IsNew" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png" mode=""></image>
+                <image v-if="item.IsNew" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png" mode=""></image>
               </view>
               <view class="ndustry-box-arrow">
                 <text v-if="item.IsRed" class="read"></text>

+ 1 - 1
reportPages/keyCompany/keyCompany.vue

@@ -59,7 +59,7 @@
                   <view :id="'subject' + key.IndustrialSubjectId" class="li-subject">
                     <view class="item-name">
                       <text style="display: inline-block; vertical-align: middle; font-weight: 600">{{ key.SubjectName }}</text>
-                      <image v-if="key.IsNew" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/new_report.png"></image>
+                      <image v-if="key.IsNew" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png"></image>
                     </view>
                     <text class="itel-label" v-for="val in key.CompanyLabel" :key="val"># {{ val }}</text>
                   </view>

BIN
static/location-new.png


BIN
static/no-data-activity.png


BIN
static/purchaser-icon.png


BIN
static/report.png


BIN
static/right-arrow.png