Commit 726bc80b118ccc771499ab380a807f6b62589484

Authored by 杨鑫
1 parent ce02dc9f

最新

Showing 114 changed files with 590 additions and 567 deletions
admin-web-master/src/api/commodityLease.js
@@ -56,4 +56,18 @@ export function cereTerminateNotice(data) { @@ -56,4 +56,18 @@ export function cereTerminateNotice(data) {
56 method: 'post', 56 method: 'post',
57 data 57 data
58 }) 58 })
  59 +}
  60 +
  61 +// 上传minio
  62 +
  63 +export function uploadQuestion(data) {
  64 + return request({
  65 + url: '/miniio/uploadQuestion',
  66 + method: 'post',
  67 + data,
  68 + headers: {
  69 + 'Content-Type': 'multipart/form-data'
  70 + }
  71 +
  72 + })
59 } 73 }
60 \ No newline at end of file 74 \ No newline at end of file
admin-web-master/src/components/add/addmap.vue
@@ -18,14 +18,14 @@ @@ -18,14 +18,14 @@
18 :key="index" :label="item.label" :value="item.value"></el-option> 18 :key="index" :label="item.label" :value="item.value"></el-option>
19 </el-select> 19 </el-select>
20 </el-form-item> 20 </el-form-item>
21 - <el-form-item label="轮播顺序" prop="rotationOrder" > 21 + <!-- <el-form-item label="轮播顺序" prop="rotationOrder" >
22 <el-select v-model="formInline.rotationOrder" placeholder="请选择" style="width: 100%;"> 22 <el-select v-model="formInline.rotationOrder" placeholder="请选择" style="width: 100%;">
23 <el-option v-for="(item,index) in rotationSequenceList" 23 <el-option v-for="(item,index) in rotationSequenceList"
24 :key="index" :label="item.label" :value="item.value"></el-option> 24 :key="index" :label="item.label" :value="item.value"></el-option>
25 </el-select> 25 </el-select>
26 - </el-form-item>  
27 - <el-form-item label="轮播图" prop="carouselId" >  
28 - <el-select v-model="formInline.carouselId" placeholder="请选择" style="width: 100%;"> 26 + </el-form-item> -->
  27 + <el-form-item label="轮播顺序" prop="carouselId" >
  28 + <el-select v-model="formInline.carouselId" placeholder="请选择" style="width: 100%;" @change="handleSelectChange">
29 <el-option v-for="(item,index) in tableData" :key="index" :label="'第'+(index+1)+'张'+`${item.type==1?'商城端':'商家端'}`" :value="item.id"></el-option> 29 <el-option v-for="(item,index) in tableData" :key="index" :label="'第'+(index+1)+'张'+`${item.type==1?'商城端':'商家端'}`" :value="item.id"></el-option>
30 </el-select> 30 </el-select>
31 </el-form-item> 31 </el-form-item>
@@ -149,7 +149,7 @@ @@ -149,7 +149,7 @@
149 import { 149 import {
150 miniioupload 150 miniioupload
151 } from '../../api/commodityLease.js' 151 } from '../../api/commodityLease.js'
152 - import { addList } from '@/api/map1.js'; 152 + import { addList ,editList} from '@/api/map1.js';
153 import wangEditor from "@/components/editor/index" 153 import wangEditor from "@/components/editor/index"
154 import { 154 import {
155 lvdaoduan, 155 lvdaoduan,
@@ -232,11 +232,11 @@ @@ -232,11 +232,11 @@
232 message: '请选择所属端', 232 message: '请选择所属端',
233 trigger: ['change'] 233 trigger: ['change']
234 }], 234 }],
235 - rotationOrder: [{  
236 - required: true,  
237 - message: '请选择轮播顺序',  
238 - trigger: ['change']  
239 - }], 235 + // rotationOrder: [{
  236 + // required: true,
  237 + // message: '请选择轮播顺序',
  238 + // trigger: ['change']
  239 + // }],
240 carouselId: [{ 240 carouselId: [{
241 required: true, 241 required: true,
242 message: '请选择轮播图', 242 message: '请选择轮播图',
@@ -364,6 +364,13 @@ @@ -364,6 +364,13 @@
364 364
365 }, 365 },
366 methods: { 366 methods: {
  367 + handleSelectChange(value){
  368 + console.log(value)
  369 + const selectedIndex = this.tableData.findIndex(item => item.id === value);
  370 + if (selectedIndex!== -1) {
  371 + this.formInline.rotationOrder = '第' + (selectedIndex + 1) + '张';
  372 + }
  373 + },
367 validateNumber(field, value) { 374 validateNumber(field, value) {
368 // 使用正则表达式确保输入的是数字,并且可以包含最多两位小数 375 // 使用正则表达式确保输入的是数字,并且可以包含最多两位小数
369 const regex = /^\d+(\.\d{1,2})?$/; 376 const regex = /^\d+(\.\d{1,2})?$/;
admin-web-master/src/components/chakan/cd.vue
@@ -287,6 +287,7 @@ @@ -287,6 +287,7 @@
287 changedit 287 changedit
288 } from '@/api/information' 288 } from '@/api/information'
289 import allimg from '@/components/chakan/allimg.vue'; 289 import allimg from '@/components/chakan/allimg.vue';
  290 +  import oneht from "@/components/chakan/oneht";
290 import { 291 import {
291 gongyuan, 292 gongyuan,
292 parkTrails, 293 parkTrails,
@@ -297,7 +298,8 @@ @@ -297,7 +298,8 @@
297 TitleWithCircle, 298 TitleWithCircle,
298 newmap, 299 newmap,
299 MapXian, 300 MapXian,
300 - allimg 301 + allimg,
  302 + oneht
301 }, 303 },
302 props: { 304 props: {
303 leixing: { 305 leixing: {
admin-web-master/src/components/chakan/map.vue
@@ -422,14 +422,14 @@ @@ -422,14 +422,14 @@
422 pageSize: 10, 422 pageSize: 10,
423 resourcesId: 'gg' + this.editbgid.id 423 resourcesId: 'gg' + this.editbgid.id
424 } 424 }
425 - // cereResourceStrategylist(c1).then(res => {  
426 - // console.error(res)  
427 - // if (!Array.isArray(res.data)) {  
428 - // this.datalist = [];  
429 - // return;  
430 - // }  
431 - // this.datalist = res.data  
432 - // }) 425 + cereResourceStrategylist(c1).then(res => {
  426 + console.error(res)
  427 + if (!Array.isArray(res.data)) {
  428 + this.datalist = [];
  429 + return;
  430 + }
  431 + this.datalist = res.data
  432 + })
433 selectByAdPlacementId(this.editbgid.id).then(res => { 433 selectByAdPlacementId(this.editbgid.id).then(res => {
434 this.msg.dianji = res.data 434 this.msg.dianji = res.data
435 435
admin-web-master/src/components/chakan/zl.vue
@@ -218,7 +218,8 @@ @@ -218,7 +218,8 @@
218 </el-col> 218 </el-col>
219 <el-col :span="8"> 219 <el-col :span="8">
220 <el-form-item label="所属绿道段" prop="belongingGreenwaySection"> 220 <el-form-item label="所属绿道段" prop="belongingGreenwaySection">
221 - <div class="duiqi">{{getLvdaoNameByCode(info.cereBasicInformationShop.belongingGreenwaySection) || '无'}}</div> 221 + <div class="duiqi">{{getLvdaoNameByCode(info.cereBasicInformationShop.belongingGreenwaySection)|| '无'}}</div>
  222 +
222 </el-form-item> 223 </el-form-item>
223 </el-col> 224 </el-col>
224 <el-col :span="8"> 225 <el-col :span="8">
@@ -233,7 +234,7 @@ @@ -233,7 +234,7 @@
233 </el-col> 234 </el-col>
234 <el-col :span="8"> 235 <el-col :span="8">
235 <el-form-item label="负责人" prop="head"> 236 <el-form-item label="负责人" prop="head">
236 - <div class="duiqi">{{info.cereBasicInformationShop.head || '无'}}</div> 237 + <div class="duiqi">{{info.cereBasicInformationShop.head || info.cereBasicInformationVenue.responsiblePerson|| '无'}}</div>
237 </el-form-item> 238 </el-form-item>
238 </el-col> 239 </el-col>
239 <el-col :span="8"> 240 <el-col :span="8">
@@ -319,7 +320,7 @@ @@ -319,7 +320,7 @@
319 </el-col> 320 </el-col>
320 <el-col :span="8"> 321 <el-col :span="8">
321 <el-form-item label="负责人" prop="responsiblePerson"> 322 <el-form-item label="负责人" prop="responsiblePerson">
322 - <div class="duiqi">{{info.cereBasicInformationVenue.belongingParkTrail || '无'}}</div> 323 + <div class="duiqi">{{info.cereBasicInformationVenue.responsiblePerson || '无'}}</div>
323 </el-form-item> 324 </el-form-item>
324 </el-col> 325 </el-col>
325 </el-row> 326 </el-row>
@@ -330,8 +331,13 @@ @@ -330,8 +331,13 @@
330 </el-form-item> 331 </el-form-item>
331 </el-col> 332 </el-col>
332 <el-col :span="8"> 333 <el-col :span="8">
  334 + <el-form-item label="所属绿道段" prop="belongingGreenwaySection">
  335 + <div class="duiqi">{{getLvdaoNameByCode(info.cereBasicInformationVenue.belongingGreenwaySection)|| '无'}}</div>
  336 + </el-form-item>
  337 + </el-col>
  338 + <el-col :span="8">
333 <el-form-item label="联系电话" prop="phoneNumber"> 339 <el-form-item label="联系电话" prop="phoneNumber">
334 - <div class="duiqi">{{info.cereBasicInformationVenue.belongingParkTrail || '无'}}</div> 340 + <div class="duiqi">{{info.cereBasicInformationVenue.phoneNumber || '无'}}</div>
335 </el-form-item> 341 </el-form-item>
336 </el-col> 342 </el-col>
337 </el-row> 343 </el-row>
@@ -368,8 +374,8 @@ @@ -368,8 +374,8 @@
368 <allimg v-if="item" :src="item" fit="contain" v-for="item in info.cereBasicInformationVenue.displayImage.split(',')" style="width: 112px;height: 112px;border: 1px dotted #dcdfe6;border-radius: 2px;overflow: hidden;margin: 0 10px 10px 0;"/> 374 <allimg v-if="item" :src="item" fit="contain" v-for="item in info.cereBasicInformationVenue.displayImage.split(',')" style="width: 112px;height: 112px;border: 1px dotted #dcdfe6;border-radius: 2px;overflow: hidden;margin: 0 10px 10px 0;"/>
369 </div> 375 </div>
370 </el-form-item> 376 </el-form-item>
371 - <el-form-item label="其他视频" prop="otherImageVideos" >  
372 - <div class="duiqi" :class="info.cereBasicInformationVenue.otherImageVideos?'greens':''" @click ="info.cereBasicInformationVenue.otherImageVideos?openfile(info.cereBasicInformationVenue.otherImageVideos):''">{{info.cereBasicInformationVenue.otherImageVideos?'查看详情':'无'}}</div> 377 + <el-form-item label="其他视频" prop="otherMedia" >
  378 + <div class="duiqi" :class="info.cereBasicInformationVenue.otherMedia?'greens':''" @click ="info.cereBasicInformationVenue.otherMedia?openfile(info.cereBasicInformationVenue.otherMedia):''">{{info.cereBasicInformationVenue.otherMedia?'查看详情':'无'}}</div>
373 </el-form-item> 379 </el-form-item>
374 </el-form> 380 </el-form>
375 </div> 381 </div>
admin-web-master/src/utils/request.js
@@ -22,7 +22,7 @@ if(host === &#39;localhost:8080&#39; || host === &#39;localhost:8081&#39; || host === &#39;localhost @@ -22,7 +22,7 @@ if(host === &#39;localhost:8080&#39; || host === &#39;localhost:8081&#39; || host === &#39;localhost
22 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1; 22 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1;
23 23
24 24
25 - baseURL = 'http://128.10.249.31:9003'; 25 + baseURL = 'http://128.10.249.32:9003';
26 26
27 27
28 } else { 28 } else {
admin-web-master/src/utils/request2.js
@@ -17,10 +17,10 @@ let baseURL = &#39;&#39; @@ -17,10 +17,10 @@ let baseURL = &#39;&#39;
17 // || host === 'localhost:9528' 17 // || host === 'localhost:9528'
18 if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) { 18 if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) {
19 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1; 19 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1;
20 - baseURL = 'https://zhgw-uat.028wlkj.com/cdwlMall/business-server'; 20 + // baseURL = 'https://zhgw-uat.028wlkj.com/cdwlMall/business-server';
21 // baseURL = 'http://172.16.61.125:9004'; 21 // baseURL = 'http://172.16.61.125:9004';
22 // baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/business-server'; 22 // baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/business-server';
23 - // baseURL = 'http://128.10.249.37:9004'; 23 + baseURL = 'http://128.10.249.32:9004';
24 } else { 24 } else {
25 console.error('---------------------') 25 console.error('---------------------')
26 console.error(hostall) 26 console.error(hostall)
admin-web-master/src/views/comment/commentSys/index.vue
@@ -56,11 +56,11 @@ @@ -56,11 +56,11 @@
56 </div> 56 </div>
57 <div v-else> 57 <div v-else>
58 <div @click="details(scope.row)" class="tableBtn greens">查看</div> 58 <div @click="details(scope.row)" class="tableBtn greens">查看</div>
59 - <div 59 + <!-- <div
60 class="tableBtn greens" 60 class="tableBtn greens"
61 @click="handle(scope.row)" 61 @click="handle(scope.row)"
62 >{{ scope.row.state ? "显示" : "隐藏" }}</div> 62 >{{ scope.row.state ? "显示" : "隐藏" }}</div>
63 - <div @click="deletes(scope.row.commentId)" class="tableBtn greens">删除</div> 63 + <div @click="deletes(scope.row.commentId)" class="tableBtn greens">删除</div> -->
64 </div> 64 </div>
65 </template> 65 </template>
66 </el-table-column> 66 </el-table-column>
@@ -126,12 +126,12 @@ @@ -126,12 +126,12 @@
126 </div> 126 </div>
127 </div> --> 127 </div> -->
128 </div> 128 </div>
129 - <span slot="footer" class="dialog-footer"> 129 + <!-- <span slot="footer" class="dialog-footer">
130 <el-button v-if="Number(formParams.ifSensitive)" @click="toShow" style="background-color: #3F9B6A;color: #fff">允许展示</el-button> 130 <el-button v-if="Number(formParams.ifSensitive)" @click="toShow" style="background-color: #3F9B6A;color: #fff">允许展示</el-button>
131 <el-button v-else @click="noneShow(state)" style="background-color: #3F9B6A;color: #fff">{{ state ? "显示" : "隐藏" }}</el-button> 131 <el-button v-else @click="noneShow(state)" style="background-color: #3F9B6A;color: #fff">{{ state ? "显示" : "隐藏" }}</el-button>
132 <el-button class="buttonHover" 132 <el-button class="buttonHover"
133 style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" @click="del">删除</el-button> 133 style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" @click="del">删除</el-button>
134 - </span> 134 + </span> -->
135 </el-dialog> 135 </el-dialog>
136 </div> 136 </div>
137 </div> 137 </div>
admin-web-master/src/views/online/QRCode/index.vue
@@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
24 </template> 24 </template>
25 </el-table-column> 25 </el-table-column>
26 <el-table-column prop="createTime" label="创建时间" min-width="200" /> 26 <el-table-column prop="createTime" label="创建时间" min-width="200" />
27 - <el-table-column label="操作" show-overflow-tooltip min-width="250"> 27 + <el-table-column label="操作" fixed="right" min-width="150">
28 <template slot-scope="scope"> 28 <template slot-scope="scope">
29 <div class="tableBtn greens" @click="seeMore(scope.row)"> 29 <div class="tableBtn greens" @click="seeMore(scope.row)">
30 商户静态二维码 30 商户静态二维码
@@ -34,8 +34,9 @@ @@ -34,8 +34,9 @@
34 </el-table-column> 34 </el-table-column>
35 </el-table> 35 </el-table>
36 <div class="fenye"> 36 <div class="fenye">
  37 + <div>共{{total}}条</div>
37 <el-pagination :current-page="currentPage" background small :page-sizes="[10, 20, 50, 100]" :page-size="10" 38 <el-pagination :current-page="currentPage" background small :page-sizes="[10, 20, 50, 100]" :page-size="10"
38 - layout="total, prev, pager, next" :total="total" @size-change="handleSizeChange" 39 + layout=" prev, pager, next" :total="total" @size-change="handleSizeChange"
39 @current-change="handleCurrentChange" /> 40 @current-change="handleCurrentChange" />
40 </div> 41 </div>
41 </div> 42 </div>
@@ -47,7 +48,7 @@ @@ -47,7 +48,7 @@
47 <div style="font-size: 14px;padding-bottom: 20px;color: #000;">商户静态二维码</div> 48 <div style="font-size: 14px;padding-bottom: 20px;color: #000;">商户静态二维码</div>
48 <div style="padding:20px;"> 49 <div style="padding:20px;">
49 <!-- <img :src="qfUrl" alt="" style="height:330px;width:50%"> --> 50 <!-- <img :src="qfUrl" alt="" style="height:330px;width:50%"> -->
50 - <img src="../../../assets/images/Code.png" alt="" style="height:330px;width:50%"> 51 + <img src="../../../assets/images/Code.png" alt="" style="height:330px;">
51 </div> 52 </div>
52 <!-- <div> 53 <!-- <div>
53 <el-tabs v-model="xiangTabs"> 54 <el-tabs v-model="xiangTabs">
@@ -82,8 +83,8 @@ @@ -82,8 +83,8 @@
82 <div style="padding-top:20px;display:flex;justify-content: flex-end;"> 83 <div style="padding-top:20px;display:flex;justify-content: flex-end;">
83 <el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" 84 <el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
84 @click="showQF =false">返回</el-button> 85 @click="showQF =false">返回</el-button>
85 - <!-- <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">下载</el-button>  
86 - <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">导出</el-button> 86 + <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">下载</el-button>
  87 + <!-- <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">导出</el-button>
87 <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">保存</el-button> --> 88 <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">保存</el-button> -->
88 </div> 89 </div>
89 </div> 90 </div>
@@ -256,7 +257,7 @@ @@ -256,7 +257,7 @@
256 .fenye { 257 .fenye {
257 margin-top: 20px; 258 margin-top: 20px;
258 display: flex; 259 display: flex;
259 - justify-content: flex-start; 260 + justify-content: space-between;
260 position: relative; 261 position: relative;
261 } 262 }
262 263
@@ -317,27 +318,6 @@ @@ -317,27 +318,6 @@
317 line-height: 20px; 318 line-height: 20px;
318 } 319 }
319 320
320 - /deep/ .el-pagination__total {  
321 - margin-top: 4px;  
322 - }  
323 -  
324 - /deep/ .btn-prev {  
325 - position: absolute;  
326 - top: 4px;  
327 - right: 266px;  
328 - }  
329 -  
330 - /deep/ .el-pager {  
331 - position: absolute;  
332 - top: 4px;  
333 - right: 40px;  
334 - }  
335 -  
336 - /deep/ .btn-next {  
337 - position: absolute;  
338 - top: 4px;  
339 - right: 10px;  
340 - }  
341 321
342 ::v-deep .buttonHover:hover { 322 ::v-deep .buttonHover:hover {
343 color: #3f9b6a !important; 323 color: #3f9b6a !important;
admin-web-master/src/views/online/QRFunds/index.vue
@@ -48,10 +48,9 @@ @@ -48,10 +48,9 @@
48 /> 48 />
49 <el-table-column 49 <el-table-column
50 label="操作" 50 label="操作"
51 - show-overflow-tooltip  
52 - min-width="250" 51 + fixed="right" min-width="150"
53 > 52 >
54 - <template slot-scope="scope"> 53 + <template slot-scope="scope" >
55 <div class="tableBtn greens" @click="seeMore(scope.row)"> 54 <div class="tableBtn greens" @click="seeMore(scope.row)">
56 静态二维码收款 55 静态二维码收款
57 </div> 56 </div>
@@ -60,13 +59,13 @@ @@ -60,13 +59,13 @@
60 </el-table-column> 59 </el-table-column>
61 </el-table> 60 </el-table>
62 <div class="fenye"> 61 <div class="fenye">
  62 + <div>共{{total}}条</div>
63 <el-pagination 63 <el-pagination
64 :current-page="currentPage" 64 :current-page="currentPage"
65 background 65 background
66 - small  
67 :page-sizes="[10, 20, 50, 100]" 66 :page-sizes="[10, 20, 50, 100]"
68 :page-size="10" 67 :page-size="10"
69 - layout="total, prev, pager, next" 68 + layout="prev, pager, next"
70 :total="total" 69 :total="total"
71 @size-change="handleSizeChange" 70 @size-change="handleSizeChange"
72 @current-change="handleCurrentChange" 71 @current-change="handleCurrentChange"
@@ -81,7 +80,7 @@ @@ -81,7 +80,7 @@
81 <div style="font-size: 14px;padding-bottom: 20px;color: #000;">静态二维码收款</div> 80 <div style="font-size: 14px;padding-bottom: 20px;color: #000;">静态二维码收款</div>
82 <div style="padding:20px;"> 81 <div style="padding:20px;">
83 <!-- <img :src="qfUrl" alt="" style="height:330px;width:50%"> --> 82 <!-- <img :src="qfUrl" alt="" style="height:330px;width:50%"> -->
84 - <img src="../../../assets/images/Code.png" alt="" style="height:330px;width:50%"> 83 + <img src="../../../assets/images/Code.png" alt="" style="height:330px">
85 </div> 84 </div>
86 <!-- <div> 85 <!-- <div>
87 <el-tabs v-model="xiangTabs"> 86 <el-tabs v-model="xiangTabs">
@@ -116,9 +115,9 @@ @@ -116,9 +115,9 @@
116 <div style="padding-top:20px;display:flex;justify-content: flex-end;"> 115 <div style="padding-top:20px;display:flex;justify-content: flex-end;">
117 <el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" 116 <el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
118 @click="showQF =false">返回</el-button> 117 @click="showQF =false">返回</el-button>
119 - <!-- <el-button style="background-color: #3F9B6A;color: #fff;" 118 + <el-button style="background-color: #3F9B6A;color: #fff;"
120 @click="down">下载</el-button> 119 @click="down">下载</el-button>
121 - <el-button style="background-color: #3F9B6A;color: #fff;" 120 + <!-- <el-button style="background-color: #3F9B6A;color: #fff;"
122 @click="down">导出</el-button> 121 @click="down">导出</el-button>
123 <el-button style="background-color: #3F9B6A;color: #fff;" 122 <el-button style="background-color: #3F9B6A;color: #fff;"
124 @click="down">保存</el-button> --> 123 @click="down">保存</el-button> -->
@@ -288,7 +287,7 @@ this.getAll(this.formInline) @@ -288,7 +287,7 @@ this.getAll(this.formInline)
288 .fenye { 287 .fenye {
289 margin-top: 20px; 288 margin-top: 20px;
290 display: flex; 289 display: flex;
291 - justify-content: flex-start; 290 + justify-content: space-between;
292 position: relative; 291 position: relative;
293 } 292 }
294 293
@@ -345,24 +344,7 @@ this.getAll(this.formInline) @@ -345,24 +344,7 @@ this.getAll(this.formInline)
345 text-align:right; 344 text-align:right;
346 line-height: 20px; 345 line-height: 20px;
347 } 346 }
348 -/deep/ .el-pagination__total{  
349 - margin-top:4px;  
350 -}  
351 -/deep/ .btn-prev{  
352 - position:absolute ;  
353 - top: 4px;  
354 - right: 266px;  
355 -}  
356 -/deep/ .el-pager{  
357 - position:absolute ;  
358 - top: 4px;  
359 - right: 40px;  
360 -}  
361 -/deep/ .btn-next{  
362 - position:absolute;  
363 - top: 4px;  
364 - right: 10px;  
365 -} 347 +
366 ::v-deep .buttonHover:hover { 348 ::v-deep .buttonHover:hover {
367 color: #3f9b6a !important; 349 color: #3f9b6a !important;
368 border-color: #c5e1d2 !important; 350 border-color: #c5e1d2 !important;
admin-web-master/src/views/online/reconciliationProcessing/index.vue
@@ -35,7 +35,7 @@ @@ -35,7 +35,7 @@
35 range-separator="至" 35 range-separator="至"
36 start-placeholder="开始日期" 36 start-placeholder="开始日期"
37 end-placeholder="结束日期" 37 end-placeholder="结束日期"
38 - style="width:168px" 38 + style="width:200px"
39 /> 39 />
40 </el-form-item> 40 </el-form-item>
41 <el-form-item label="支付金额"> 41 <el-form-item label="支付金额">
@@ -59,7 +59,7 @@ @@ -59,7 +59,7 @@
59 <el-form-item label="商户名称"> 59 <el-form-item label="商户名称">
60 <el-input 60 <el-input
61 placeholder="请输入" 61 placeholder="请输入"
62 - 62 +style="width: 120px;"
63 v-model="formInline.shopName"> 63 v-model="formInline.shopName">
64 </el-input> 64 </el-input>
65 </el-form-item> 65 </el-form-item>
admin-web-master/src/views/shopRental/rentTermination/add.vue
@@ -4,10 +4,10 @@ @@ -4,10 +4,10 @@
4 <el-form-item label="退租日期" prop="exitDate"> 4 <el-form-item label="退租日期" prop="exitDate">
5 <el-input v-model="info.applicationTime" disabled></el-input> 5 <el-input v-model="info.applicationTime" disabled></el-input>
6 </el-form-item> 6 </el-form-item>
7 - <el-form-item label="退租原因" prop="reasonForExit"> 7 + <!-- <el-form-item label="退租原因" prop="reasonForExit">
8 <el-input maxlength="200" show-word-limit rows="4" v-model="formInline.reasonForExit" placeholder="请输入退租原因" 8 <el-input maxlength="200" show-word-limit rows="4" v-model="formInline.reasonForExit" placeholder="请输入退租原因"
9 type="textarea" /> 9 type="textarea" />
10 - </el-form-item> 10 + </el-form-item> -->
11 <el-form-item label="待缴租金" prop="outstandingRent"> 11 <el-form-item label="待缴租金" prop="outstandingRent">
12 <el-input v-model="formInline.outstandingRent" placeholder="请输入"></el-input> 12 <el-input v-model="formInline.outstandingRent" placeholder="请输入"></el-input>
13 </el-form-item> 13 </el-form-item>
@@ -35,10 +35,10 @@ @@ -35,10 +35,10 @@
35 <label for="remarks">退租日期:</label> 35 <label for="remarks">退租日期:</label>
36 <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="info.applicationTime"></div> 36 <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="info.applicationTime"></div>
37 </div> 37 </div>
38 - <div class="form-group"> 38 + <!-- <div class="form-group">
39 <label for="remarks">退租原因:</label> 39 <label for="remarks">退租原因:</label>
40 <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="formInline.reasonForExit"></div> 40 <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="formInline.reasonForExit"></div>
41 - </div> 41 + </div> -->
42 <div class="form-group"> 42 <div class="form-group">
43 <label for="remarks">待缴租金:</label> 43 <label for="remarks">待缴租金:</label>
44 <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="formInline.outstandingRent"></div> 44 <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="formInline.outstandingRent"></div>
@@ -60,7 +60,8 @@ @@ -60,7 +60,8 @@
60 </template> 60 </template>
61 <script> 61 <script>
62 import { 62 import {
63 - cereTerminateNotice 63 + cereTerminateNotice,
  64 + uploadQuestion
64 } from '../../../api/commodityLease.js' 65 } from '../../../api/commodityLease.js'
65 import jsPDF from 'jspdf' 66 import jsPDF from 'jspdf'
66 import wangEditor from "@/components/editor/index" 67 import wangEditor from "@/components/editor/index"
@@ -98,11 +99,11 @@ import { title } from &#39;@/settings.js&#39;; @@ -98,11 +99,11 @@ import { title } from &#39;@/settings.js&#39;;
98 message: '请输入退租日期', 99 message: '请输入退租日期',
99 trigger: 'blur' 100 trigger: 'blur'
100 }], 101 }],
101 - reasonForExit: [{  
102 - required: true,  
103 - message: '请选择退租原因',  
104 - trigger: 'change'  
105 - }], 102 + // reasonForExit: [{
  103 + // required: true,
  104 + // message: '请选择退租原因',
  105 + // trigger: 'change'
  106 + // }],
106 outstandingRent: [{ 107 outstandingRent: [{
107 required: true, 108 required: true,
108 message: '请输入待缴租金', 109 message: '请输入待缴租金',
@@ -178,9 +179,22 @@ import { title } from &#39;@/settings.js&#39;; @@ -178,9 +179,22 @@ import { title } from &#39;@/settings.js&#39;;
178 }) 179 })
179 180
180 }, 181 },
  182 + URLtoFile(dataurl, filename) {
  183 + let arr = dataurl.split(','),
  184 + mime = arr[0].match(/:(.*?);/)[1],
  185 + bstr = atob(arr[1]),
  186 + n = bstr.length,
  187 + u8arr = new Uint8Array(n);
  188 +
  189 + while(n--){
  190 + u8arr[n] = bstr.charCodeAt(n);
  191 + }
  192 + return new File([u8arr], filename, {type:mime});
  193 + },
181 async add() { 194 async add() {
182 let that = this 195 let that = this
183 console.log({...this.info}) 196 console.log({...this.info})
  197 +
184 const content = this.$refs.contentToConvert; 198 const content = this.$refs.contentToConvert;
185 199
186 // 使用 html2canvas 将 div 渲染为画布 200 // 使用 html2canvas 将 div 渲染为画布
@@ -190,7 +204,14 @@ import { title } from &#39;@/settings.js&#39;; @@ -190,7 +204,14 @@ import { title } from &#39;@/settings.js&#39;;
190 this.formInline.tenantId = this.info.relatedMerchants 204 this.formInline.tenantId = this.info.relatedMerchants
191 this.formInline.tenantPhone = this.info.tenantTelephone 205 this.formInline.tenantPhone = this.info.tenantTelephone
192 this.formInline.exitDate = this.info.applicationTime 206 this.formInline.exitDate = this.info.applicationTime
193 - this.formInline.pdfUrl = canvas.toDataURL('image/png') 207 + const formData = new FormData()
  208 + const file = this.URLtoFile(canvas.toDataURL('image/png'), 'filename.png');
  209 + formData.append('file',file)
  210 +
  211 + let sasd = await uploadQuestion(formData)
  212 + console.log(sasd.data,'12312412412')
  213 + // return
  214 + this.formInline.pdfUrl = sasd.data
194 console.log({...this.formInline}) 215 console.log({...this.formInline})
195 // return 216 // return
196 let info = { 217 let info = {
ceres-uniapp-master/components/AliHbPay/index.vue
@@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
24 <view class="pay-type-img"> 24 <view class="pay-type-img">
25 <img 25 <img
26 class="pay-type-img-inner" 26 class="pay-type-img-inner"
27 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/alipay.png" 27 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/alipay.png"
28 /> 28 />
29 </view> 29 </view>
30 <label class="pay-type-label">支付宝支付</label> 30 <label class="pay-type-label">支付宝支付</label>
@@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
39 <view class="pay-type-img"> 39 <view class="pay-type-img">
40 <img 40 <img
41 class="pay-type-img-inner" 41 class="pay-type-img-inner"
42 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/huabei.png" 42 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/huabei.png"
43 /> 43 />
44 </view> 44 </view>
45 <label class="pay-type-label">花呗分期</label> 45 <label class="pay-type-label">花呗分期</label>
ceres-uniapp-master/components/CashierList/index.vue
@@ -96,21 +96,21 @@ export default { @@ -96,21 +96,21 @@ export default {
96 id: 1, 96 id: 1,
97 label: '微信支付', 97 label: '微信支付',
98 paymentMode: 1, 98 paymentMode: 1,
99 - icon: 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/wechat_pay.png', 99 + icon: 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/wechat_pay.png',
100 disabled:true 100 disabled:true
101 }, 101 },
102 // { 102 // {
103 // id: 2, 103 // id: 2,
104 // label: '支付宝支付', 104 // label: '支付宝支付',
105 // paymentMode: 2, 105 // paymentMode: 2,
106 - // icon: 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/alipay.png', 106 + // icon: 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/alipay.png',
107 // disabled:false 107 // disabled:false
108 // }, 108 // },
109 // { 109 // {
110 // id: 3, 110 // id: 3,
111 // label: '花呗分期', 111 // label: '花呗分期',
112 // paymentMode: 3, 112 // paymentMode: 3,
113 - // icon: 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/huabei.png', 113 + // icon: 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/huabei.png',
114 // disabled:false 114 // disabled:false
115 // } 115 // }
116 116
ceres-uniapp-master/components/Empty/index.vue
@@ -40,7 +40,7 @@ export default { @@ -40,7 +40,7 @@ export default {
40 }, 40 },
41 iconUrl:{ 41 iconUrl:{
42 type:String, 42 type:String,
43 - default:()=>'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchEmpty.png' 43 + default:()=>'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchEmpty.png'
44 } 44 }
45 }, 45 },
46 computed:{ 46 computed:{
ceres-uniapp-master/components/activities/combinedSales.vue
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 <view class="group-warp"> 3 <view class="group-warp">
4 <view class="title"> 4 <view class="title">
5 <label> 5 <label>
6 - <image class="title-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/combinationIcon.png" alt="组合销售" mode="widthFix"></image> 6 + <image class="title-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/combinationIcon.png" alt="组合销售" mode="widthFix"></image>
7 </label> 7 </label>
8 <view class="price-text"> 8 <view class="price-text">
9 组合价:¥{{composePrice}} 9 组合价:¥{{composePrice}}
@@ -434,7 +434,7 @@ export default { @@ -434,7 +434,7 @@ export default {
434 margin: 0 auto; 434 margin: 0 auto;
435 line-height: 50upx; 435 line-height: 50upx;
436 border: 2upx solid #E4E5E6; 436 border: 2upx solid #E4E5E6;
437 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrow-suk-select.png") no-repeat right center / 60upx 60upx; 437 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrow-suk-select.png") no-repeat right center / 60upx 60upx;
438 .text{ 438 .text{
439 font-size: 24upx; 439 font-size: 24upx;
440 color: #999; 440 color: #999;
ceres-uniapp-master/components/basics/categoryShow.vue
@@ -59,7 +59,7 @@ @@ -59,7 +59,7 @@
59 </view> 59 </view>
60 </view> 60 </view>
61 <view v-if="ifShow" class="emptyCart-box flex-items-plus flex-column"> 61 <view v-if="ifShow" class="emptyCart-box flex-items-plus flex-column">
62 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png" mode="widthFix" /> 62 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png" mode="widthFix" />
63 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 63 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
64 </view> 64 </view>
65 </view> 65 </view>
ceres-uniapp-master/components/canvasShow/basics/header/app/index.vue
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 <view v-else class="h3" :style="{fontSize:componentContent.fontSizeNum+'px',fontWeight:componentContent.textFontW,color:componentContent.titColor}">{{componentContent.title}}</view> 7 <view v-else class="h3" :style="{fontSize:componentContent.fontSizeNum+'px',fontWeight:componentContent.textFontW,color:componentContent.titColor}">{{componentContent.title}}</view>
8 <view class="search-btn" @click="searchPro"> 8 <view class="search-btn" @click="searchPro">
9 <image class="search-icon" 9 <image class="search-icon"
10 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//search.png" 10 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//search.png"
11 mode="widthFix"></image> 11 mode="widthFix"></image>
12 </view> 12 </view>
13 </view> 13 </view>
ceres-uniapp-master/components/canvasShow/basics/newProduct/app/index.vue
@@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
17 <img class="iconImg" v-if="item.activityType == 3" src="../../../static/images/discountListIcon.png"> 17 <img class="iconImg" v-if="item.activityType == 3" src="../../../static/images/discountListIcon.png">
18 <img class="iconImg" v-if="item.activityType == 5" src="../../../static/images/discountListIcon.png"> 18 <img class="iconImg" v-if="item.activityType == 5" src="../../../static/images/discountListIcon.png">
19 <img class="iconImg" v-if="item.activityType == 9" src="../../../static/images/memberCenterIcon.png"> 19 <img class="iconImg" v-if="item.activityType == 9" src="../../../static/images/memberCenterIcon.png">
20 - <img class="iconImg" v-if="item.activityType == 8" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png"> 20 + <img class="iconImg" v-if="item.activityType == 8" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png">
21 <!-- #endif --> 21 <!-- #endif -->
22 <!-- #ifdef H5 || APP-PLUS --> 22 <!-- #ifdef H5 || APP-PLUS -->
23 <image class="iconImg" v-if="item.activityType == 1" src="../../../static/images/groupBuyIcon.png"></image> 23 <image class="iconImg" v-if="item.activityType == 1" src="../../../static/images/groupBuyIcon.png"></image>
@@ -26,7 +26,7 @@ @@ -26,7 +26,7 @@
26 <image class="iconImg" v-if="item.activityType == 3" src="../../../static/images/discountListIcon.png"></image> 26 <image class="iconImg" v-if="item.activityType == 3" src="../../../static/images/discountListIcon.png"></image>
27 <image class="iconImg" v-if="item.activityType == 5" src="../../../static/images/discountListIcon.png"></image> 27 <image class="iconImg" v-if="item.activityType == 5" src="../../../static/images/discountListIcon.png"></image>
28 <image class="iconImg" v-if="item.activityType == 9" src="../../../static/images/memberCenterIcon.png"></image> 28 <image class="iconImg" v-if="item.activityType == 9" src="../../../static/images/memberCenterIcon.png"></image>
29 - <image class="iconImg" v-if="item.activityType == 8" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png"></image> 29 + <image class="iconImg" v-if="item.activityType == 8" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png"></image>
30 <!-- #endif --> 30 <!-- #endif -->
31 <div class="price"> 31 <div class="price">
32 ¥ {{item.price}} 32 ¥ {{item.price}}
ceres-uniapp-master/components/canvasShow/basics/product/app/index.vue
@@ -112,7 +112,7 @@ @@ -112,7 +112,7 @@
112 <img class="iconImg" v-if="item.activityType == 9" 112 <img class="iconImg" v-if="item.activityType == 9"
113 src="../../../static/images/memberCenterIcon.png"> 113 src="../../../static/images/memberCenterIcon.png">
114 <img class="iconImg" v-if="item.activityType == 8" 114 <img class="iconImg" v-if="item.activityType == 8"
115 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png"> 115 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png">
116 <!-- #endif --> 116 <!-- #endif -->
117 <!-- #ifdef H5 || APP-PLUS --> 117 <!-- #ifdef H5 || APP-PLUS -->
118 <image class="iconImg" v-if="item.activityType == 1" 118 <image class="iconImg" v-if="item.activityType == 1"
@@ -128,7 +128,7 @@ @@ -128,7 +128,7 @@
128 <image class="iconImg" v-if="item.activityType == 9" 128 <image class="iconImg" v-if="item.activityType == 9"
129 src="../../../static/images/memberCenterIcon.png"> 129 src="../../../static/images/memberCenterIcon.png">
130 <image class="iconImg" v-if="item.activityType == 8" 130 <image class="iconImg" v-if="item.activityType == 8"
131 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png"> 131 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png">
132 <!-- #endif --> 132 <!-- #endif -->
133 <div class="price"> 133 <div class="price">
134 ¥ {{ item.price }} 134 ¥ {{ item.price }}
@@ -193,7 +193,7 @@ @@ -193,7 +193,7 @@
193 <img class="iconImg" v-if="item.activityType == 9" 193 <img class="iconImg" v-if="item.activityType == 9"
194 src="../../../static/images/memberCenterIcon.png" /> 194 src="../../../static/images/memberCenterIcon.png" />
195 <img class="iconImg" v-if="item.activityType == 8" 195 <img class="iconImg" v-if="item.activityType == 8"
196 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png" /> 196 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png" />
197 <!-- #endif --> 197 <!-- #endif -->
198 <!-- #ifdef H5 || APP-PLUS --> 198 <!-- #ifdef H5 || APP-PLUS -->
199 199
@@ -210,7 +210,7 @@ @@ -210,7 +210,7 @@
210 <image class="iconImg" v-if="item.activityType == 9" 210 <image class="iconImg" v-if="item.activityType == 9"
211 src="../../../static/images/memberCenterIcon.png" /> 211 src="../../../static/images/memberCenterIcon.png" />
212 <image class="iconImg" v-if="item.activityType == 8" 212 <image class="iconImg" v-if="item.activityType == 8"
213 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png" /> 213 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png" />
214 <!-- #endif --> 214 <!-- #endif -->
215 <div class="price"> 215 <div class="price">
216 ¥ {{ item.price }} 216 ¥ {{ item.price }}
ceres-uniapp-master/components/canvasShow/config/api.js
@@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
6 // const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' : 'http://192.168.2.230:9007' 6 // const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' : 'http://192.168.2.230:9007'
7 const host = `${window.location.protocol}//${window.location.host}` 7 const host = `${window.location.protocol}//${window.location.host}`
8 const DOMAIN_PREFIX =`${host}/cdwlMall/meserver/api` 8 const DOMAIN_PREFIX =`${host}/cdwlMall/meserver/api`
9 -const BASEURL = (process.env.NODE_ENV === 'production') ? DOMAIN_PREFIX : 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' 9 +const BASEURL = (process.env.NODE_ENV === 'production') ? DOMAIN_PREFIX :'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api'
10 10
11 11
12 12
ceres-uniapp-master/components/goodsDetalils/coupon-popup.vue
@@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
19 <view v-show="activeTypeFlag === 1"> 19 <view v-show="activeTypeFlag === 1">
20 <view class="couponShow"> 20 <view class="couponShow">
21 <view class="title-box"> 21 <view class="title-box">
22 - <image class="close-btn" @click="onActivityClose" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"></image> 22 + <image class="close-btn" @click="onActivityClose" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png"></image>
23 </view> 23 </view>
24 <view class="shopCouponBox" :class="markTools.length === 0 && 'flex'"> 24 <view class="shopCouponBox" :class="markTools.length === 0 && 'flex'">
25 <view class="list" v-if="markTools.length > 0"> 25 <view class="list" v-if="markTools.length > 0">
@@ -46,7 +46,7 @@ @@ -46,7 +46,7 @@
46 </view> 46 </view>
47 </view> 47 </view>
48 <view v-else class="emptyOrder-box flex-items-plus flex-column"> 48 <view v-else class="emptyOrder-box flex-items-plus flex-column">
49 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 49 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
50 <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label> 50 <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label>
51 </view> 51 </view>
52 </view> 52 </view>
@@ -55,7 +55,7 @@ @@ -55,7 +55,7 @@
55 <view v-show="activeTypeFlag === 0"> 55 <view v-show="activeTypeFlag === 0">
56 <view class="couponShow"> 56 <view class="couponShow">
57 <view class="title-box"> 57 <view class="title-box">
58 - <image class="close-btn" @click="onActivityClose" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"></image> 58 + <image class="close-btn" @click="onActivityClose" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png"></image>
59 </view> 59 </view>
60 <view class="shopCouponBox" :class="shopMarkTools.length === 0 && 'flex'"> 60 <view class="shopCouponBox" :class="shopMarkTools.length === 0 && 'flex'">
61 <view class="list" v-if="shopMarkTools.length > 0"> 61 <view class="list" v-if="shopMarkTools.length > 0">
@@ -81,7 +81,7 @@ @@ -81,7 +81,7 @@
81 </view> 81 </view>
82 </view> 82 </view>
83 <view v-else class="emptyOrder-box flex-items-plus flex-column"> 83 <view v-else class="emptyOrder-box flex-items-plus flex-column">
84 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 84 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
85 <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label> 85 <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label>
86 </view> 86 </view>
87 </view> 87 </view>
@@ -89,7 +89,7 @@ @@ -89,7 +89,7 @@
89 </view> 89 </view>
90 <view class="receive-success" v-if="isShowSuccess"> 90 <view class="receive-success" v-if="isShowSuccess">
91 <view class="success-box"> 91 <view class="success-box">
92 - <image class="success-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/success_tu.png"></image> 92 + <image class="success-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/success_tu.png"></image>
93 <view class="text">领取成功</view> 93 <view class="text">领取成功</view>
94 </view> 94 </view>
95 </view> 95 </view>
@@ -309,7 +309,7 @@ export default { @@ -309,7 +309,7 @@ export default {
309 .item { 309 .item {
310 width: 50%; 310 width: 50%;
311 height: 291rpx; 311 height: 291rpx;
312 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon.png") no-repeat center top; 312 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/couponsIcon.png") no-repeat center top;
313 border-radius: 10rpx; 313 border-radius: 10rpx;
314 margin-top: 20rpx; 314 margin-top: 20rpx;
315 display: flex; 315 display: flex;
@@ -320,7 +320,7 @@ export default { @@ -320,7 +320,7 @@ export default {
320 margin-bottom: 30rpx; 320 margin-bottom: 30rpx;
321 } 321 }
322 .received { 322 .received {
323 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon1.png") no-repeat center top; 323 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/couponsIcon1.png") no-repeat center top;
324 background-size: contain; 324 background-size: contain;
325 .discoun { 325 .discoun {
326 color: #999999; 326 color: #999999;
ceres-uniapp-master/components/hoteRecommed/index.vue
1 <template> 1 <template>
2 <view class="hotTemplate" v-if="productList.length"> 2 <view class="hotTemplate" v-if="productList.length">
3 <view class="evaluateIcon flex-items"> 3 <view class="evaluateIcon flex-items">
4 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/evaluateIcon.png"></image> 4 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/evaluateIcon.png"></image>
5 <text>热门推荐</text> 5 <text>热门推荐</text>
6 </view> 6 </view>
7 <view class="recommendList"> 7 <view class="recommendList">
ceres-uniapp-master/config/api.js
@@ -2,17 +2,17 @@ @@ -2,17 +2,17 @@
2 // const DOMAIN_PREFIXPING = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' 2 // const DOMAIN_PREFIXPING = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server'
3 // const DOMAIN_PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' 3 // const DOMAIN_PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api'
4 // const TIAOZHUAN = 'https://jy.scjysm.asia:18086/cdwlMall/' 4 // const TIAOZHUAN = 'https://jy.scjysm.asia:18086/cdwlMall/'
5 -// const DOMAIN_PREFIXPING = 'http://128.10.249.39:9003'  
6 -// const DOMAIN_PREFIX = 'http://128.10.249.41:9007' 5 +const DOMAIN_PREFIXPING = 'http://128.10.249.32:9003'
  6 +const DOMAIN_PREFIX = 'http://128.10.249.32:9007'
7 // const DOMAIN_PREFIXPING = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server' 7 // const DOMAIN_PREFIXPING = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server'
8 // const DOMAIN_PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api' 8 // const DOMAIN_PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api'
9 -// const TIAOZHUAN = 'https://zhgw-uat.028wlkj.com/cdwlMall/' 9 +const TIAOZHUAN = 'https://zhgw-uat.028wlkj.com/cdwlMall/'
10 10
11 11
12 -const host = `${window.location.protocol}//${window.location.host}`  
13 -const DOMAIN_PREFIXPING = `${host}/cdwlMall/meserver/admin-server`  
14 -const DOMAIN_PREFIX =`${host}/cdwlMall/meserver/api`  
15 -const TIAOZHUAN = `${host}/cdwlMall/` 12 +// const host = `${window.location.protocol}//${window.location.host}`
  13 +// const DOMAIN_PREFIXPING = `${host}/cdwlMall/meserver/admin-server`
  14 +// const DOMAIN_PREFIX =`${host}/cdwlMall/meserver/api`
  15 +// const TIAOZHUAN = `${host}/cdwlMall/`
16 16
17 17
18 18
ceres-uniapp-master/main.js
@@ -36,13 +36,15 @@ const host = window.location.host; @@ -36,13 +36,15 @@ const host = window.location.host;
36 if (host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528' || host === 36 if (host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528' || host ===
37 '192.168.31.45:9528') { 37 '192.168.31.45:9528') {
38 Vue.prototype.$imgUrl = (url) => { 38 Vue.prototype.$imgUrl = (url) => {
39 - return ("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static" + url); 39 + return ("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static" + url);
40 } 40 }
41 - Vue.prototype.$baseURL = 'https://jy.scjysm.asia:18086/cdwlMall'  
42 - Vue.prototype.$hostUrl = `https://jy.scjysm.asia:18086/cdwlMall` 41 + // Vue.prototype.$baseURL = 'https://jy.scjysm.asia:18086/cdwlMall'
  42 + // Vue.prototype.$hostUrl = `https://jy.scjysm.asia:18086/cdwlMall`
  43 + Vue.prototype.$baseURL = 'https://zhgw-uat.028wlkj.com/cdwlMall'
  44 + Vue.prototype.$hostUrl = `https://zhgw-uat.028wlkj.com/cdwlMall`
43 } else { 45 } else {
44 Vue.prototype.$imgUrl = (url) => { 46 Vue.prototype.$imgUrl = (url) => {
45 - return ("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static" + url); 47 + return ("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static" + url);
46 } 48 }
47 Vue.prototype.$baseURL = `${window.location.protocol}//${window.location.host}/cdwlMall` 49 Vue.prototype.$baseURL = `${window.location.protocol}//${window.location.host}/cdwlMall`
48 Vue.prototype.$hostUrl = `${window.location.protocol}//${window.location.host}/cdwlMall` 50 Vue.prototype.$hostUrl = `${window.location.protocol}//${window.location.host}/cdwlMall`
ceres-uniapp-master/pages/tabbar/cart/index.vue
@@ -54,14 +54,14 @@ @@ -54,14 +54,14 @@
54 <image 54 <image
55 mode="aspectFill u-skeleton-fillet" 55 mode="aspectFill u-skeleton-fillet"
56 v-if="item.selected === 1" 56 v-if="item.selected === 1"
57 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/selectActive.png" 57 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/selectActive.png"
58 class="cart-select-img" 58 class="cart-select-img"
59 @click.stop="handleSelectShop(index,0)" 59 @click.stop="handleSelectShop(index,0)"
60 ></image> 60 ></image>
61 <image 61 <image
62 mode="aspectFill u-skeleton-fillet" 62 mode="aspectFill u-skeleton-fillet"
63 v-else 63 v-else
64 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/selectEmpty.png" 64 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/selectEmpty.png"
65 class="cart-select-img" 65 class="cart-select-img"
66 @click.stop="handleSelectShop(index,1)" 66 @click.stop="handleSelectShop(index,1)"
67 ></image> 67 ></image>
@@ -70,12 +70,12 @@ @@ -70,12 +70,12 @@
70 @click="$jump(`${jumpObj.store}?storeId=${item.shopId}`)" 70 @click="$jump(`${jumpObj.store}?storeId=${item.shopId}`)"
71 > 71 >
72 <image 72 <image
73 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/orderStoreIcon.png" 73 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/orderStoreIcon.png"
74 class="shop-img" 74 class="shop-img"
75 ></image> 75 ></image>
76 <text class="shop-name">{{ item.shopName }}</text> 76 <text class="shop-name">{{ item.shopName }}</text>
77 <image 77 <image
78 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/arrowRight.png" 78 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/arrowRight.png"
79 class="arrow-right-img" 79 class="arrow-right-img"
80 ></image> 80 ></image>
81 </view> 81 </view>
@@ -86,7 +86,7 @@ @@ -86,7 +86,7 @@
86 > 86 >
87 <image 87 <image
88 class="mar-right-20" 88 class="mar-right-20"
89 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/zuheIcon.png" 89 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/zuheIcon.png"
90 ></image> 90 ></image>
91 <view class="fs24 font-color-C83732"> 91 <view class="fs24 font-color-C83732">
92 已满足【{{ item.currentRules.price }}元任选{{ item.currentRules.number }}件】! 92 已满足【{{ item.currentRules.price }}元任选{{ item.currentRules.number }}件】!
@@ -103,14 +103,14 @@ @@ -103,14 +103,14 @@
103 <image 103 <image
104 mode="aspectFill u-skeleton-fillet" 104 mode="aspectFill u-skeleton-fillet"
105 v-if="skuItem.selected == 1" 105 v-if="skuItem.selected == 1"
106 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/selectActive.png" 106 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/selectActive.png"
107 @click.stop="handleSelectSku(index,cIndex,0)" 107 @click.stop="handleSelectSku(index,cIndex,0)"
108 class="cart-select-img" 108 class="cart-select-img"
109 ></image> 109 ></image>
110 <image 110 <image
111 mode="aspectFill u-skeleton-fillet" 111 mode="aspectFill u-skeleton-fillet"
112 v-else 112 v-else
113 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/selectEmpty.png" 113 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/selectEmpty.png"
114 @click.stop="handleSelectSku(index,cIndex,1)" 114 @click.stop="handleSelectSku(index,cIndex,1)"
115 class="cart-select-img" 115 class="cart-select-img"
116 ></image> 116 ></image>
@@ -164,14 +164,14 @@ @@ -164,14 +164,14 @@
164 <image 164 <image
165 mode="aspectFill" 165 mode="aspectFill"
166 v-if="settleAccountsObj.isAllCheck" 166 v-if="settleAccountsObj.isAllCheck"
167 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/selectActive.png" 167 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/selectActive.png"
168 class="cart-select-img" 168 class="cart-select-img"
169 @click="handleSelectAll(0)" 169 @click="handleSelectAll(0)"
170 ></image> 170 ></image>
171 <image 171 <image
172 mode="aspectFill" 172 mode="aspectFill"
173 v-else 173 v-else
174 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/selectEmpty.png" 174 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/selectEmpty.png"
175 class="cart-select-img" 175 class="cart-select-img"
176 @click="handleSelectAll(1)" 176 @click="handleSelectAll(1)"
177 ></image> 177 ></image>
@@ -212,7 +212,7 @@ @@ -212,7 +212,7 @@
212 > 212 >
213 <image 213 <image
214 class="emptyCart-img" 214 class="emptyCart-img"
215 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/shouyetu/cartEmpty.png" 215 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/shouyetu/cartEmpty.png"
216 ></image> 216 ></image>
217 <label class="font-color-999 fs26 mar-top-30">你的购物车还没有宝贝哦</label> 217 <label class="font-color-999 fs26 mar-top-30">你的购物车还没有宝贝哦</label>
218 <label class="font-color-999 fs26 mar-top-10">快去首页选一个吧~</label> 218 <label class="font-color-999 fs26 mar-top-10">快去首页选一个吧~</label>
ceres-uniapp-master/pages/tabbar/category/index.vue
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 <view style="background-color: #fff;"> 5 <view style="background-color: #fff;">
6 <view class="flex-items-plus flex-row mar-top-20"> 6 <view class="flex-items-plus flex-row mar-top-20">
7 <view class="searchImg-box flex-items-plus"> 7 <view class="searchImg-box flex-items-plus">
8 - <image class="searchImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//searchImg.png"></image> 8 + <image class="searchImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//searchImg.png"></image>
9 <input class="search-box" v-model="keyWord" placeholder-class="searchboxPlace" 9 <input class="search-box" v-model="keyWord" placeholder-class="searchboxPlace"
10 placeholder="请输入您想要的宝贝" /> 10 placeholder="请输入您想要的宝贝" />
11 11
@@ -44,10 +44,10 @@ @@ -44,10 +44,10 @@
44 <view v-for="(item,val) in slist" :key="item.classifyId" class="s-list" > 44 <view v-for="(item,val) in slist" :key="item.classifyId" class="s-list" >
45 <view class="classBox flex-items-plus" > 45 <view class="classBox flex-items-plus" >
46 <!-- v-if="item.childs.length>0" --> 46 <!-- v-if="item.childs.length>0" -->
47 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/classRight.png"> 47 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/classRight.png">
48 </image> 48 </image>
49 <text class="s-item">{{item.classifyName}}</text> 49 <text class="s-item">{{item.classifyName}}</text>
50 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/classLeft.png"> 50 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/classLeft.png">
51 </image> 51 </image>
52 </view> 52 </view>
53 <view style="display: flex; width: 100%;flex-wrap: wrap;"> 53 <view style="display: flex; width: 100%;flex-wrap: wrap;">
@@ -77,7 +77,7 @@ @@ -77,7 +77,7 @@
77 </view> 77 </view>
78 </scroll-view> 78 </scroll-view>
79 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column"> 79 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column">
80 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 80 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
81 <label class="font-color-999 fs26 mar-top-30">该分类没有商品~</label> 81 <label class="font-color-999 fs26 mar-top-30">该分类没有商品~</label>
82 </view> 82 </view>
83 </view> 83 </view>
ceres-uniapp-master/pages/tabbar/index/index.vue
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 > 30 >
31 <image 31 <image
32 class="search-icon" 32 class="search-icon"
33 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchImg.png" 33 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchImg.png"
34 mode="widthFix" 34 mode="widthFix"
35 > 35 >
36 </image> 36 </image>
@@ -52,7 +52,7 @@ @@ -52,7 +52,7 @@
52 > 52 >
53 <image 53 <image
54 class="search-icon" 54 class="search-icon"
55 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img/search.png" 55 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img/search.png"
56 mode="widthFix" 56 mode="widthFix"
57 > 57 >
58 </image> 58 </image>
@@ -77,7 +77,7 @@ @@ -77,7 +77,7 @@
77 <view class="reachBottom" 77 <view class="reachBottom"
78 v-if="topLeft > 400"> 78 v-if="topLeft > 400">
79 <image class="reach-icon" 79 <image class="reach-icon"
80 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img/reachBottom.png" 80 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img/reachBottom.png"
81 mode="widthFix"> 81 mode="widthFix">
82 </image> 82 </image>
83 <text class="reach-text">这里到底了哦~~</text> 83 <text class="reach-text">这里到底了哦~~</text>
ceres-uniapp-master/pages/tabbar/user/index.data.js
@@ -99,61 +99,61 @@ export const fastCardTwoList = [ @@ -99,61 +99,61 @@ export const fastCardTwoList = [
99 { 99 {
100 id:2, 100 id:2,
101 label:'我的问答', 101 label:'我的问答',
102 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/myQuestionIcon.png', 102 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/myQuestionIcon.png',
103 jumpUrl:'../../../pages_category_page2/userModule/questionList' 103 jumpUrl:'../../../pages_category_page2/userModule/questionList'
104 }, 104 },
105 105
106 { 106 {
107 id:2, 107 id:2,
108 label:'我的售后', 108 label:'我的售后',
109 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/shouhou.png', 109 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/shouhou.png',
110 jumpUrl:'../../../pages_category_page2/orderModule/afterSale' 110 jumpUrl:'../../../pages_category_page2/orderModule/afterSale'
111 }, 111 },
112 { 112 {
113 id:3, 113 id:3,
114 label:'会员中心', 114 label:'会员中心',
115 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/VIP.png', 115 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/VIP.png',
116 jumpUrl:'../../../pages_category_page1/memberCenter/index' 116 jumpUrl:'../../../pages_category_page1/memberCenter/index'
117 }, 117 },
118 { 118 {
119 id:4, 119 id:4,
120 label:'银行卡', 120 label:'银行卡',
121 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/kaquan.png', 121 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/kaquan.png',
122 jumpUrl:'../../../pages_category_page2/userModule/bankcard' 122 jumpUrl:'../../../pages_category_page2/userModule/bankcard'
123 }, 123 },
124 { 124 {
125 id:5, 125 id:5,
126 label:'我的积分', 126 label:'我的积分',
127 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/myIntegral.png', 127 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/myIntegral.png',
128 jumpUrl:'../../../pages_category_page1/integral/index' 128 jumpUrl:'../../../pages_category_page1/integral/index'
129 }, 129 },
130 { 130 {
131 id:6, 131 id:6,
132 label:'签到', 132 label:'签到',
133 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/signIcon.png', 133 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/signIcon.png',
134 jumpUrl:'../../../pages_category_page1/integral/sign' 134 jumpUrl:'../../../pages_category_page1/integral/sign'
135 }, 135 },
136 { 136 {
137 id:8, 137 id:8,
138 label:'平台客服', 138 label:'平台客服',
139 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/service.png', 139 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/service.png',
140 jumpUrl:'function:flyToService' 140 jumpUrl:'function:flyToService'
141 }, 141 },
142 { 142 {
143 id:5, 143 id:5,
144 label:'我的账户', 144 label:'我的账户',
145 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/account.png', 145 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/account.png',
146 jumpUrl:'../../../pages_category_page2/userModule/memberAccount' 146 jumpUrl:'../../../pages_category_page2/userModule/memberAccount'
147 }, 147 },
148 { 148 {
149 id:6, 149 id:6,
150 label:'我的卡券', 150 label:'我的卡券',
151 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/kaquan.png', 151 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/kaquan.png',
152 jumpUrl:'../../../pages_category_page2/userModule/coupon' 152 jumpUrl:'../../../pages_category_page2/userModule/coupon'
153 }, { 153 }, {
154 id:7, 154 id:7,
155 label:'分销中心', 155 label:'分销中心',
156 - icon:'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/fenxiao.png', 156 + icon:'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/fenxiao.png',
157 jumpUrl:'../../../pages_category_page1/distributionModule/index' 157 jumpUrl:'../../../pages_category_page1/distributionModule/index'
158 } 158 }
159 ] 159 ]
ceres-uniapp-master/pages/tabbar/user/index.vue
@@ -13,12 +13,12 @@ @@ -13,12 +13,12 @@
13 <view class="user-info-box" @click="$jump('../../../pages_category_page2/userModule/login')" 13 <view class="user-info-box" @click="$jump('../../../pages_category_page2/userModule/login')"
14 v-if="userItem.name===undefined "> 14 v-if="userItem.name===undefined ">
15 <image class="user-image u-skeleton-circle" 15 <image class="user-image u-skeleton-circle"
16 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/morentouxiang.png" mode="widthFix"></image> 16 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/morentouxiang.png" mode="widthFix"></image>
17 <view class="user-info"> 17 <view class="user-info">
18 <view class="user-logoin-title u-skeleton-fillet">点击登录</view> 18 <view class="user-logoin-title u-skeleton-fillet">点击登录</view>
19 <view class="user-logoin-lable u-skeleton-fillet">登录后享受更多权益~</view> 19 <view class="user-logoin-lable u-skeleton-fillet">登录后享受更多权益~</view>
20 </view> 20 </view>
21 - <image class="user-info-right" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/back.png"></image> 21 + <image class="user-info-right" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/back.png"></image>
22 <view class="notice"> 22 <view class="notice">
23 <view class="messNum" v-if="userItem.notRead>0">{{ userItem.notRead }} 23 <view class="messNum" v-if="userItem.notRead>0">{{ userItem.notRead }}
24 </view> 24 </view>
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 @click="handleJump('../../../pages_category_page2/userModule/personalDetails')" 30 @click="handleJump('../../../pages_category_page2/userModule/personalDetails')"
31 v-if="userItem.headImage" :src="$baseURL+userItem.headImage" 31 v-if="userItem.headImage" :src="$baseURL+userItem.headImage"
32 style="border-radius: 25%; border: 2px solid #fff;"></image> 32 style="border-radius: 25%; border: 2px solid #fff;"></image>
33 - <image class="user-image" v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/morentouxiang.png" 33 + <image class="user-image" v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/morentouxiang.png"
34 mode="widthFix"> 34 mode="widthFix">
35 </image> 35 </image>
36 <view class="user-info"> 36 <view class="user-info">
ceres-uniapp-master/pages_category_page1/coupon/22.vue
@@ -36,7 +36,7 @@ @@ -36,7 +36,7 @@
36 </view> 36 </view>
37 <!-- 触底 --> 37 <!-- 触底 -->
38 <view class="reachBottom" v-if="topLeft > 400 && couponList.length>0"> 38 <view class="reachBottom" v-if="topLeft > 400 && couponList.length>0">
39 - <image class="reach-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//reachBottom.png" 39 + <image class="reach-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//reachBottom.png"
40 mode="widthFix"></image> 40 mode="widthFix"></image>
41 <text class="reach-text">这里到底了哦~~</text> 41 <text class="reach-text">这里到底了哦~~</text>
42 </view> 42 </view>
@@ -156,7 +156,7 @@ @@ -156,7 +156,7 @@
156 margin-top: 40rpx; 156 margin-top: 40rpx;
157 padding: 25rpx 35rpx; 157 padding: 25rpx 35rpx;
158 overflow: hidden; 158 overflow: hidden;
159 - background-image: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/borderIcon.png"); 159 + background-image: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/borderIcon.png");
160 background-repeat: no-repeat; 160 background-repeat: no-repeat;
161 background-size: contain; 161 background-size: contain;
162 background-position: right top; 162 background-position: right top;
ceres-uniapp-master/pages_category_page1/coupon/list.vue
@@ -70,7 +70,7 @@ @@ -70,7 +70,7 @@
70 70
71 <!-- 触底 --> 71 <!-- 触底 -->
72 <view class="reachBottom" v-if="topLeft > 400 && couponList.length>0"> 72 <view class="reachBottom" v-if="topLeft > 400 && couponList.length>0">
73 - <image class="reach-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//reachBottom.png" 73 + <image class="reach-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//reachBottom.png"
74 mode="widthFix"></image> 74 mode="widthFix"></image>
75 <text class="reach-text">这里到底了哦~~</text> 75 <text class="reach-text">这里到底了哦~~</text>
76 </view> 76 </view>
@@ -253,7 +253,7 @@ @@ -253,7 +253,7 @@
253 margin-top: 40rpx; 253 margin-top: 40rpx;
254 padding: 25rpx 35rpx; 254 padding: 25rpx 35rpx;
255 overflow: hidden; 255 overflow: hidden;
256 - background-image: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/borderIcon.png"); 256 + background-image: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/borderIcon.png");
257 background-repeat: no-repeat; 257 background-repeat: no-repeat;
258 background-size: contain; 258 background-size: contain;
259 background-position: right top; 259 background-position: right top;
ceres-uniapp-master/pages_category_page1/coupon/product.vue
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 4
5 <view class="productList"> 5 <view class="productList">
6 <view class="couponTit flex-items"> 6 <view class="couponTit flex-items">
7 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/counponTitIcon.png"></image> 7 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/counponTitIcon.png"></image>
8 <text class="fs24 font-color-C83732" v-if="currentCoupon.discountMode === 1">以下商品使用满{{currentCoupon.fullMoney}}元减{{currentCoupon.reduceMoney}}元的优惠券</text> 8 <text class="fs24 font-color-C83732" v-if="currentCoupon.discountMode === 1">以下商品使用满{{currentCoupon.fullMoney}}元减{{currentCoupon.reduceMoney}}元的优惠券</text>
9 <text class="fs24 font-color-C83732" v-else>以下商品使用满{{currentCoupon.fullMoney}}打{{currentCoupon.reduceMoney}}折</text> 9 <text class="fs24 font-color-C83732" v-else>以下商品使用满{{currentCoupon.fullMoney}}打{{currentCoupon.reduceMoney}}折</text>
10 </view> 10 </view>
@@ -23,7 +23,7 @@ @@ -23,7 +23,7 @@
23 </view> 23 </view>
24 </view> 24 </view>
25 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column"> 25 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column">
26 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 26 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
27 <label class="font-color-999 fs26 mar-top-30">暂无可用商品~</label> 27 <label class="font-color-999 fs26 mar-top-30">暂无可用商品~</label>
28 </view> 28 </view>
29 </view> 29 </view>
ceres-uniapp-master/pages_category_page1/discount/discount.vue
@@ -52,7 +52,7 @@ @@ -52,7 +52,7 @@
52 <view class="price"> 52 <view class="price">
53 <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800"> 53 <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800">
54 <view class="iconBox"> 54 <view class="iconBox">
55 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png"></image> 55 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"></image>
56 </view> 56 </view>
57 <view class="flex-row-plus flex-items priceInfo"> 57 <view class="flex-row-plus flex-items priceInfo">
58 <label class="fs24">¥</label> 58 <label class="fs24">¥</label>
@@ -309,7 +309,7 @@ page { @@ -309,7 +309,7 @@ page {
309 .discountBg { 309 .discountBg {
310 width: 100%; 310 width: 100%;
311 height: 480rpx; 311 height: 480rpx;
312 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discount.png") no-repeat left top; 312 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discount.png") no-repeat left top;
313 background-size: contain; 313 background-size: contain;
314 position: relative; 314 position: relative;
315 .discountInfoBox { 315 .discountInfoBox {
@@ -321,7 +321,7 @@ page { @@ -321,7 +321,7 @@ page {
321 height: 99rpx; 321 height: 99rpx;
322 line-height: 99rpx; 322 line-height: 99rpx;
323 text-align: center; 323 text-align: center;
324 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountText.png") no-repeat center center; 324 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountText.png") no-repeat center center;
325 font-size: 28rpx; 325 font-size: 28rpx;
326 color: #FFFFFF; 326 color: #FFFFFF;
327 background-size: contain; 327 background-size: contain;
ceres-uniapp-master/pages_category_page1/discount/groupBuy.vue
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 <global-loading /> 3 <global-loading />
4 4
5 <view class="groupBuyBg"> 5 <view class="groupBuyBg">
6 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyLogo.png"></image> 6 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyLogo.png"></image>
7 </view> 7 </view>
8 <view 8 <view
9 class="countdown" 9 class="countdown"
@@ -100,7 +100,7 @@ @@ -100,7 +100,7 @@
100 <view class="price"> 100 <view class="price">
101 <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800"> 101 <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800">
102 <view class="iconBox"> 102 <view class="iconBox">
103 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png"></image> 103 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png"></image>
104 </view> 104 </view>
105 <view class="flex-row-plus flex-items priceInfo"> 105 <view class="flex-row-plus flex-items priceInfo">
106 <label class="fs24">¥</label> 106 <label class="fs24">¥</label>
@@ -145,7 +145,7 @@ @@ -145,7 +145,7 @@
145 > 145 >
146 <image 146 <image
147 class="emptyOrder-img" 147 class="emptyOrder-img"
148 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png" 148 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"
149 ></image> 149 ></image>
150 <label class="font-color-999 fs26 mar-top-30">暂无活动商品~</label> 150 <label class="font-color-999 fs26 mar-top-30">暂无活动商品~</label>
151 </view> 151 </view>
ceres-uniapp-master/pages_category_page1/discount/platformDiscount.vue
@@ -50,7 +50,7 @@ @@ -50,7 +50,7 @@
50 <view class="price"> 50 <view class="price">
51 <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800"> 51 <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800">
52 <view class="iconBox"> 52 <view class="iconBox">
53 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png"></image> 53 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"></image>
54 </view> 54 </view>
55 <view class="flex-row-plus flex-items priceInfo"> 55 <view class="flex-row-plus flex-items priceInfo">
56 <label class="fs24">¥</label> 56 <label class="fs24">¥</label>
@@ -67,7 +67,7 @@ @@ -67,7 +67,7 @@
67 </view> 67 </view>
68 </view> 68 </view>
69 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column"> 69 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column">
70 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 70 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
71 <label class="font-color-999 fs26 mar-top-30">暂无活动商品~</label> 71 <label class="font-color-999 fs26 mar-top-30">暂无活动商品~</label>
72 </view> 72 </view>
73 </view> 73 </view>
@@ -315,7 +315,7 @@ page { @@ -315,7 +315,7 @@ page {
315 .discountBg { 315 .discountBg {
316 width: 100%; 316 width: 100%;
317 height: 480rpx; 317 height: 480rpx;
318 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discount.png") no-repeat left top; 318 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discount.png") no-repeat left top;
319 background-size: contain; 319 background-size: contain;
320 position: relative; 320 position: relative;
321 .discountInfoBox { 321 .discountInfoBox {
@@ -327,7 +327,7 @@ page { @@ -327,7 +327,7 @@ page {
327 height: 99rpx; 327 height: 99rpx;
328 line-height: 91rpx; 328 line-height: 91rpx;
329 text-align: center; 329 text-align: center;
330 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountText.png") no-repeat center center; 330 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountText.png") no-repeat center center;
331 font-size: 28rpx; 331 font-size: 28rpx;
332 color: #FFFFFF; 332 color: #FFFFFF;
333 background-size: contain; 333 background-size: contain;
ceres-uniapp-master/pages_category_page1/discount/spikeList.vue
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 4
5 <view v-if="!shopSeckillId"> 5 <view v-if="!shopSeckillId">
6 <view class="spikeBg"> 6 <view class="spikeBg">
7 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikelLogo.png"></image> 7 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikelLogo.png"></image>
8 </view> 8 </view>
9 <view class="tabs-nav-warp spikeNav"> 9 <view class="tabs-nav-warp spikeNav">
10 <scroll-view class="tabs-nav" scroll-x="true"> 10 <scroll-view class="tabs-nav" scroll-x="true">
@@ -61,7 +61,7 @@ @@ -61,7 +61,7 @@
61 <view class="price"> 61 <view class="price">
62 <view class="currentPrice flex-items font-color-FF7800"> 62 <view class="currentPrice flex-items font-color-FF7800">
63 <view class="iconBox flex-items"> 63 <view class="iconBox flex-items">
64 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png"></image> 64 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png"></image>
65 </view> 65 </view>
66 <view class="flex-row-plus flex-items priceInfo"> 66 <view class="flex-row-plus flex-items priceInfo">
67 <label class="fs24">¥</label> 67 <label class="fs24">¥</label>
ceres-uniapp-master/pages_category_page1/distributionModule/distributionOrder.vue
@@ -13,8 +13,8 @@ @@ -13,8 +13,8 @@
13 </view> 13 </view>
14 </view> 14 </view>
15 <view> 15 <view>
16 - <image v-if="item.ifOpen == false" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/5533f3baf2184f86b5ef88ed6c400713_arrowDownIcon.png"></image>  
17 - <image v-if="item.ifOpen == true" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/22f5f56f53ec4f558a6268e4fef7e1f5_arrowUpIcon.png"></image> 16 + <image v-if="item.ifOpen == false" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/5533f3baf2184f86b5ef88ed6c400713_arrowDownIcon.png"></image>
  17 + <image v-if="item.ifOpen == true" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/22f5f56f53ec4f558a6268e4fef7e1f5_arrowUpIcon.png"></image>
18 </view> 18 </view>
19 </view> 19 </view>
20 <view class="upBox" v-if="item.ifOpen == true"> 20 <view class="upBox" v-if="item.ifOpen == true">
@@ -31,7 +31,7 @@ @@ -31,7 +31,7 @@
31 </view> 31 </view>
32 </view> 32 </view>
33 <view v-else class="emptyCart-box flex-items-plus flex-column"> 33 <view v-else class="emptyCart-box flex-items-plus flex-column">
34 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectEmpty.png"></image> 34 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectEmpty.png"></image>
35 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 35 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
36 </view> 36 </view>
37 </view> 37 </view>
ceres-uniapp-master/pages_category_page1/distributionModule/index.vue
@@ -42,7 +42,7 @@ @@ -42,7 +42,7 @@
42 > 42 >
43 <image 43 <image
44 class="emptyCart-img" 44 class="emptyCart-img"
45 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png" 45 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"
46 ></image> 46 ></image>
47 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 47 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
48 </view> 48 </view>
ceres-uniapp-master/pages_category_page1/distributionModule/invite.vue
@@ -5,11 +5,11 @@ @@ -5,11 +5,11 @@
5 <view class="rect" @tap.stop> 5 <view class="rect" @tap.stop>
6 <!-- 关闭按钮 --> 6 <!-- 关闭按钮 -->
7 <view class="guanbiBox"> 7 <view class="guanbiBox">
8 - <image @click="showcos" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//guanbi.png" class="guanbi" mode=""></image> 8 + <image @click="showcos" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//guanbi.png" class="guanbi" mode=""></image>
9 </view> 9 </view>
10 <!-- 内容 --> 10 <!-- 内容 -->
11 <view> 11 <view>
12 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//banyuan.png" style="width: 100%;height: 44rpx;" mode=""></image> 12 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//banyuan.png" style="width: 100%;height: 44rpx;" mode=""></image>
13 </view> 13 </view>
14 <view style="padding: 30rpx;"> 14 <view style="padding: 30rpx;">
15 <!-- 个人信息 --> 15 <!-- 个人信息 -->
@@ -49,7 +49,7 @@ @@ -49,7 +49,7 @@
49 <button open-type="share" > 49 <button open-type="share" >
50 <view @click="WXfenx" style="flex: 1;text-align: center;display: flex;"> 50 <view @click="WXfenx" style="flex: 1;text-align: center;display: flex;">
51 <view style="margin-left: 120rpx;"> 51 <view style="margin-left: 120rpx;">
52 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//weixin2x.png" mode=""></image> 52 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//weixin2x.png" mode=""></image>
53 </view> 53 </view>
54 <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view> 54 <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view>
55 </view> 55 </view>
@@ -63,7 +63,7 @@ @@ -63,7 +63,7 @@
63 <!-- </view>--> 63 <!-- </view>-->
64 <view class="linkBtnBox" @click="FZlianj"> 64 <view class="linkBtnBox" @click="FZlianj">
65 <view class="linkBox"> 65 <view class="linkBox">
66 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//lianjie.png" mode=""></image> 66 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//lianjie.png" mode=""></image>
67 </view> 67 </view>
68 <view style="margin-left: 10rpx;"> 68 <view style="margin-left: 10rpx;">
69 复制链接 69 复制链接
ceres-uniapp-master/pages_category_page1/distributionModule/promotion.vue
@@ -4,10 +4,10 @@ @@ -4,10 +4,10 @@
4 <view class="warp"> 4 <view class="warp">
5 <view class="rect" @tap.stop> 5 <view class="rect" @tap.stop>
6 <!-- 关闭按钮 --> 6 <!-- 关闭按钮 -->
7 - <image @click="showcos" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//guanbi.png" class="guanbi" mode=""></image> 7 + <image @click="showcos" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//guanbi.png" class="guanbi" mode=""></image>
8 <!-- 内容 --> 8 <!-- 内容 -->
9 <view> 9 <view>
10 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//banyuan.png" style="width: 100%;height: 44rpx;" mode=""></image> 10 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//banyuan.png" style="width: 100%;height: 44rpx;" mode=""></image>
11 </view> 11 </view>
12 <view style="padding: 30rpx;"> 12 <view style="padding: 30rpx;">
13 <!-- 个人信息 --> 13 <!-- 个人信息 -->
@@ -52,7 +52,7 @@ @@ -52,7 +52,7 @@
52 <button open-type="share"> 52 <button open-type="share">
53 <view @click="WXfenx" style="flex: 1;text-align: center;display: flex;"> 53 <view @click="WXfenx" style="flex: 1;text-align: center;display: flex;">
54 <view style="margin-left: 120rpx;"> 54 <view style="margin-left: 120rpx;">
55 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//weixin2x.png" mode=""></image> 55 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//weixin2x.png" mode=""></image>
56 </view> 56 </view>
57 <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view> 57 <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view>
58 </view> 58 </view>
@@ -66,7 +66,7 @@ @@ -66,7 +66,7 @@
66 <!-- </view>--> 66 <!-- </view>-->
67 <view class="linkBtnBox" @click="FZlianj"> 67 <view class="linkBtnBox" @click="FZlianj">
68 <view class="linkBox"> 68 <view class="linkBox">
69 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//lianjie.png" mode=""></image> 69 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//lianjie.png" mode=""></image>
70 </view> 70 </view>
71 <view style="margin-left: 10rpx;"> 71 <view style="margin-left: 10rpx;">
72 复制链接 72 复制链接
ceres-uniapp-master/pages_category_page1/distributionModule/recruit.vue
@@ -191,7 +191,7 @@ @@ -191,7 +191,7 @@
191 .topBackImg { 191 .topBackImg {
192 width: 100%; 192 width: 100%;
193 height: 260upx; 193 height: 260upx;
194 - background: url(https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeTop_Img.png) no-repeat; 194 + background: url(https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/storeTop_Img.png) no-repeat;
195 background-size: 100% 260upx; 195 background-size: 100% 260upx;
196 196
197 .content { 197 .content {
ceres-uniapp-master/pages_category_page1/distributionModule/salesIndex.vue
@@ -43,19 +43,19 @@ @@ -43,19 +43,19 @@
43 <view class="btnList"> 43 <view class="btnList">
44 <view class="btnListBox flex-row-plus flex-items flex-sp-around"> 44 <view class="btnListBox flex-row-plus flex-items flex-sp-around">
45 <view class="flex-column-plus flex-items" @click="gopromotion(1)"> 45 <view class="flex-column-plus flex-items" @click="gopromotion(1)">
46 - <image class="salesIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/salesStoreIcon.png"></image> 46 + <image class="salesIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/salesStoreIcon.png"></image>
47 <label class="fs26 font-color-333">推广店铺</label> 47 <label class="fs26 font-color-333">推广店铺</label>
48 </view> 48 </view>
49 <view class="flex-column-plus flex-items" @click="storeindex"> 49 <view class="flex-column-plus flex-items" @click="storeindex">
50 - <image class="salesIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/extendGoodsIcon.png"></image> 50 + <image class="salesIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/extendGoodsIcon.png"></image>
51 <label class="fs26 font-color-333">推广商品</label> 51 <label class="fs26 font-color-333">推广商品</label>
52 </view> 52 </view>
53 <view class="flex-column-plus flex-items" @click="godistributionOrder"> 53 <view class="flex-column-plus flex-items" @click="godistributionOrder">
54 - <image class="salesIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/salesOrderIcon.png"></image> 54 + <image class="salesIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/salesOrderIcon.png"></image>
55 <label class="fs26 font-color-333">分销订单</label> 55 <label class="fs26 font-color-333">分销订单</label>
56 </view> 56 </view>
57 <view class="flex-column-plus flex-items" @click="gopromotion(2)"> 57 <view class="flex-column-plus flex-items" @click="gopromotion(2)">
58 - <image class="salesIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/inviteLowerIcon.png"></image> 58 + <image class="salesIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/inviteLowerIcon.png"></image>
59 <label class="fs26 font-color-333">邀请下级</label> 59 <label class="fs26 font-color-333">邀请下级</label>
60 </view> 60 </view>
61 </view> 61 </view>
ceres-uniapp-master/pages_category_page1/distributionModule/shareProduct.vue
@@ -8,11 +8,11 @@ @@ -8,11 +8,11 @@
8 <!-- 关闭按钮 --> 8 <!-- 关闭按钮 -->
9 <view class="guanbiView"> 9 <view class="guanbiView">
10 <!-- #ifdef MP-WEIXIN --> 10 <!-- #ifdef MP-WEIXIN -->
11 - <img @click="showcos" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//guanbi.png" class="guanbi" 11 + <img @click="showcos" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//guanbi.png" class="guanbi"
12 style="width:30px;height:30px;" mode="widthFix"></img> 12 style="width:30px;height:30px;" mode="widthFix"></img>
13 <!-- #endif --> 13 <!-- #endif -->
14 <!-- #ifdef H5 || APP-PLUS --> 14 <!-- #ifdef H5 || APP-PLUS -->
15 - <image @click="showcos" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//guanbi.png" class="guanbi" 15 + <image @click="showcos" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//guanbi.png" class="guanbi"
16 style="width:30px;height:30px;" mode="widthFix"></image> 16 style="width:30px;height:30px;" mode="widthFix"></image>
17 <!-- #endif --> 17 <!-- #endif -->
18 </view> 18 </view>
@@ -30,10 +30,10 @@ @@ -30,10 +30,10 @@
30 <view class="shareBox" :class="{'width100':noMp}" hover-class="btn-click" @click="WXfenx"> 30 <view class="shareBox" :class="{'width100':noMp}" hover-class="btn-click" @click="WXfenx">
31 <view style="flex: 1;text-align: center;display: flex;"> 31 <view style="flex: 1;text-align: center;display: flex;">
32 <view style="margin-left: 120rpx;" v-if="noMp"> 32 <view style="margin-left: 120rpx;" v-if="noMp">
33 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//album.png" mode="widthFix"></image> 33 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//album.png" mode="widthFix"></image>
34 </view> 34 </view>
35 <view style="margin-left: 35%;" v-else> 35 <view style="margin-left: 35%;" v-else>
36 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//album.png" mode="widthFix"></image> 36 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//album.png" mode="widthFix"></image>
37 </view> 37 </view>
38 <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">保存到本地</view> 38 <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">保存到本地</view>
39 </view> 39 </view>
@@ -41,7 +41,7 @@ @@ -41,7 +41,7 @@
41 <view class="linkBtnBox" hover-class="btn-click" @click="FZlianj" v-if="noMp"> 41 <view class="linkBtnBox" hover-class="btn-click" @click="FZlianj" v-if="noMp">
42 <view style="flex: 1;text-align: center;display: flex;"> 42 <view style="flex: 1;text-align: center;display: flex;">
43 <view class="linkBox"> 43 <view class="linkBox">
44 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//lianjie.png" mode="widthFix"></image> 44 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//lianjie.png" mode="widthFix"></image>
45 </view> 45 </view>
46 <view style="margin-left: 10rpx;"> 46 <view style="margin-left: 10rpx;">
47 复制链接 47 复制链接
ceres-uniapp-master/pages_category_page1/distributionModule/totalAward.vue
@@ -39,9 +39,9 @@ @@ -39,9 +39,9 @@
39 </view> 39 </view>
40 <view> 40 <view>
41 <image v-if="item.ifOpen == false" class="arrow-down" 41 <image v-if="item.ifOpen == false" class="arrow-down"
42 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image> 42 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
43 <image v-if="item.ifOpen == true" class="arrow-down" 43 <image v-if="item.ifOpen == true" class="arrow-down"
44 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image> 44 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>
45 </view> 45 </view>
46 </view> 46 </view>
47 <view v-if="item.ifOpen == true"> 47 <view v-if="item.ifOpen == true">
@@ -61,7 +61,7 @@ @@ -61,7 +61,7 @@
61 </view> 61 </view>
62 </view> 62 </view>
63 <view v-else class="emptyCart-box flex-items-plus flex-column"> 63 <view v-else class="emptyCart-box flex-items-plus flex-column">
64 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 64 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
65 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 65 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
66 </view> 66 </view>
67 </view> 67 </view>
@@ -78,9 +78,9 @@ @@ -78,9 +78,9 @@
78 </view> 78 </view>
79 <view> 79 <view>
80 <image v-if="item.ifOpen == false" class="arrow-down" 80 <image v-if="item.ifOpen == false" class="arrow-down"
81 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image> 81 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
82 <image v-if="item.ifOpen == true" class="arrow-down" 82 <image v-if="item.ifOpen == true" class="arrow-down"
83 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image> 83 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>
84 </view> 84 </view>
85 </view> 85 </view>
86 <view v-if="item.ifOpen == true"> 86 <view v-if="item.ifOpen == true">
@@ -103,7 +103,7 @@ @@ -103,7 +103,7 @@
103 </view> 103 </view>
104 </view> 104 </view>
105 <view v-else class="emptyCart-box flex-items-plus flex-column"> 105 <view v-else class="emptyCart-box flex-items-plus flex-column">
106 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 106 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
107 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 107 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
108 </view> 108 </view>
109 </view> 109 </view>
@@ -262,7 +262,7 @@ page { @@ -262,7 +262,7 @@ page {
262 .totalAward-topBackImg { 262 .totalAward-topBackImg {
263 width: 100%; 263 width: 100%;
264 height: 360 rpx; 264 height: 360 rpx;
265 - background: url(https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/unliquidatedBg.png) no-repeat; 265 + background: url(https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/unliquidatedBg.png) no-repeat;
266 background-size: 100%; 266 background-size: 100%;
267 margin-top: 30 rpx; 267 margin-top: 30 rpx;
268 268
ceres-uniapp-master/pages_category_page1/distributionModule/totalClient.vue
@@ -19,8 +19,8 @@ @@ -19,8 +19,8 @@
19 <label class="orderId-box font-color-999">客户昵称:{{item.customerName}}</label> 19 <label class="orderId-box font-color-999">客户昵称:{{item.customerName}}</label>
20 </view> 20 </view>
21 </view> 21 </view>
22 - <image v-if="item.ifOpen == false" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image>  
23 - <image v-if="item.ifOpen == true" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image>topColor 22 + <image v-if="item.ifOpen == false" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
  23 + <image v-if="item.ifOpen == true" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>topColor
24 </view> 24 </view>
25 <view v-if="item.ifOpen == true"> 25 <view v-if="item.ifOpen == true">
26 <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between"> 26 <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between">
@@ -35,7 +35,7 @@ @@ -35,7 +35,7 @@
35 </view> 35 </view>
36 </view> 36 </view>
37 <view v-else class="emptyCart-box flex-items-plus flex-column"> 37 <view v-else class="emptyCart-box flex-items-plus flex-column">
38 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 38 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
39 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 39 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
40 </view> 40 </view>
41 </view> 41 </view>
@@ -125,7 +125,7 @@ page { @@ -125,7 +125,7 @@ page {
125 .topBg { 125 .topBg {
126 width: 100%; 126 width: 100%;
127 height: 196upx; 127 height: 196upx;
128 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/totalPersonnelTopBackImg.png") no-repeat; 128 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/totalPersonnelTopBackImg.png") no-repeat;
129 margin-top: 50rpx; 129 margin-top: 50rpx;
130 text-align: center; 130 text-align: center;
131 } 131 }
ceres-uniapp-master/pages_category_page1/distributionModule/totalPersonnel.vue
@@ -20,8 +20,8 @@ @@ -20,8 +20,8 @@
20 <label class="orderId-box font-color-999">手机号:{{item.distributorPhone}}</label> 20 <label class="orderId-box font-color-999">手机号:{{item.distributorPhone}}</label>
21 </view> 21 </view>
22 </view> 22 </view>
23 - <image v-if="item.ifOpen == false" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image>  
24 - <image v-if="item.ifOpen == true" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image> 23 + <image v-if="item.ifOpen == false" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
  24 + <image v-if="item.ifOpen == true" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>
25 </view> 25 </view>
26 <view v-if="item.ifOpen == true"> 26 <view v-if="item.ifOpen == true">
27 <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between"> 27 <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between">
@@ -33,7 +33,7 @@ @@ -33,7 +33,7 @@
33 </view> 33 </view>
34 </view> 34 </view>
35 <view v-else class="emptyCart-box flex-items-plus flex-column"> 35 <view v-else class="emptyCart-box flex-items-plus flex-column">
36 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 36 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
37 <label class="font-color-999 fs26 mar-top-30 font-color-999">这里空空如也~</label> 37 <label class="font-color-999 fs26 mar-top-30 font-color-999">这里空空如也~</label>
38 </view> 38 </view>
39 </view> 39 </view>
@@ -121,7 +121,7 @@ page { @@ -121,7 +121,7 @@ page {
121 .topBg { 121 .topBg {
122 width: 100%; 122 width: 100%;
123 height: 196upx; 123 height: 196upx;
124 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/totalPersonnelTopBackImg.png") no-repeat; 124 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/totalPersonnelTopBackImg.png") no-repeat;
125 margin-top: 50rpx; 125 margin-top: 50rpx;
126 text-align: center; 126 text-align: center;
127 } 127 }
ceres-uniapp-master/pages_category_page1/distributionModule/unliquidated.vue
@@ -40,9 +40,9 @@ @@ -40,9 +40,9 @@
40 </view> 40 </view>
41 <view> 41 <view>
42 <image v-if="item.ifOpen == false" class="arrow-down" 42 <image v-if="item.ifOpen == false" class="arrow-down"
43 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image> 43 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
44 <image v-if="item.ifOpen == true" class="arrow-down" 44 <image v-if="item.ifOpen == true" class="arrow-down"
45 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image> 45 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>
46 </view> 46 </view>
47 </view> 47 </view>
48 <view v-if="item.ifOpen == true"> 48 <view v-if="item.ifOpen == true">
@@ -58,7 +58,7 @@ @@ -58,7 +58,7 @@
58 </view> 58 </view>
59 </view> 59 </view>
60 <view v-else class="emptyCart-box flex-items-plus flex-column"> 60 <view v-else class="emptyCart-box flex-items-plus flex-column">
61 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 61 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
62 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 62 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
63 </view> 63 </view>
64 </view> 64 </view>
@@ -75,9 +75,9 @@ @@ -75,9 +75,9 @@
75 </view> 75 </view>
76 <view> 76 <view>
77 <image v-if="item.ifOpen == false" class="arrow-down" 77 <image v-if="item.ifOpen == false" class="arrow-down"
78 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image> 78 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
79 <image v-if="item.ifOpen == true" class="arrow-down" 79 <image v-if="item.ifOpen == true" class="arrow-down"
80 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image> 80 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>
81 </view> 81 </view>
82 </view> 82 </view>
83 <view v-if="item.ifOpen == true"> 83 <view v-if="item.ifOpen == true">
@@ -96,7 +96,7 @@ @@ -96,7 +96,7 @@
96 </view> 96 </view>
97 </view> 97 </view>
98 <view v-else class="emptyCart-box flex-items-plus flex-column"> 98 <view v-else class="emptyCart-box flex-items-plus flex-column">
99 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 99 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
100 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 100 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
101 </view> 101 </view>
102 </view> 102 </view>
@@ -253,7 +253,7 @@ page { @@ -253,7 +253,7 @@ page {
253 .unliquidated-topBackImg { 253 .unliquidated-topBackImg {
254 width: 100%; 254 width: 100%;
255 height: 360 rpx; 255 height: 360 rpx;
256 - background: url(https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/unliquidatedBg.png) no-repeat; 256 + background: url(https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/unliquidatedBg.png) no-repeat;
257 background-size: 100%; 257 background-size: 100%;
258 margin-top: 30 rpx; 258 margin-top: 30 rpx;
259 259
ceres-uniapp-master/pages_category_page1/goodsModule/addEvaluate.vue
@@ -229,7 +229,7 @@ @@ -229,7 +229,7 @@
229 content: ''; 229 content: '';
230 height: 71rpx; 230 height: 71rpx;
231 width: 71rpx; 231 width: 71rpx;
232 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addImg.png") no-repeat center center; 232 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addImg.png") no-repeat center center;
233 display: block; 233 display: block;
234 background-size: contain; 234 background-size: contain;
235 } 235 }
ceres-uniapp-master/pages_category_page1/goodsModule/canvasGoods.vue
@@ -43,13 +43,13 @@ @@ -43,13 +43,13 @@
43 <!-- <view class="numText" v-if="item.total !=0">限量{{item.total}}件</view>--> 43 <!-- <view class="numText" v-if="item.total !=0">限量{{item.total}}件</view>-->
44 </view> 44 </view>
45 <view class="flex-row-plus flex-item mar-top-30"> 45 <view class="flex-row-plus flex-item mar-top-30">
46 - <image class="iconImg" v-if="item.activityType == 1" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png"></image>  
47 - <image class="iconImg" v-if="item.activityType == 2" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png"></image>  
48 - <image class="iconImg" v-if="item.activityType == 4" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png"></image>  
49 - <image class="iconImg" v-if="item.activityType == 3" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png"></image>  
50 - <image class="iconImg" v-if="item.activityType == 5" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png"></image>  
51 - <image class="iconImg" v-if="item.activityType == 9" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png"></image>  
52 - <image class="iconImg" v-if="item.activityType == 8" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png"></image> 46 + <image class="iconImg" v-if="item.activityType == 1" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png"></image>
  47 + <image class="iconImg" v-if="item.activityType == 2" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png"></image>
  48 + <image class="iconImg" v-if="item.activityType == 4" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png"></image>
  49 + <image class="iconImg" v-if="item.activityType == 3" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"></image>
  50 + <image class="iconImg" v-if="item.activityType == 5" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"></image>
  51 + <image class="iconImg" v-if="item.activityType == 9" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png"></image>
  52 + <image class="iconImg" v-if="item.activityType == 8" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png"></image>
53 <view class="font-color-C83732 flex-row-plus"> 53 <view class="font-color-C83732 flex-row-plus">
54 <b>¥</b> 54 <b>¥</b>
55 <label class="fs28">{{item.price}}</label> 55 <label class="fs28">{{item.price}}</label>
@@ -68,7 +68,7 @@ @@ -68,7 +68,7 @@
68 68
69 <!-- 搜索为空 --> 69 <!-- 搜索为空 -->
70 <view v-if="ifEmpty" class="emptyCart-box flex-items-plus flex-column"> 70 <view v-if="ifEmpty" class="emptyCart-box flex-items-plus flex-column">
71 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchEmpty.png"></image> 71 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchEmpty.png"></image>
72 <label class="font-color-999 fs26 mar-top-30">搜索不到你要找的宝贝呢</label> 72 <label class="font-color-999 fs26 mar-top-30">搜索不到你要找的宝贝呢</label>
73 <label class="font-color-999 fs26 mar-top-10">换个词试试吧~</label> 73 <label class="font-color-999 fs26 mar-top-10">换个词试试吧~</label>
74 </view> 74 </view>
ceres-uniapp-master/pages_category_page1/goodsModule/combination.vue
@@ -22,8 +22,8 @@ @@ -22,8 +22,8 @@
22 <view class="addInfo"> 22 <view class="addInfo">
23 <view class="price">¥{{item.price}}</view> 23 <view class="price">¥{{item.price}}</view>
24 <view class="selectBtn" @click.stop="showRuleBox(item, index)"> 24 <view class="selectBtn" @click.stop="showRuleBox(item, index)">
25 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/cart1.png" v-if="item.selected === 0"></image>  
26 - <image v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/cart2.png"></image> 25 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/cart1.png" v-if="item.selected === 0"></image>
  26 + <image v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/cart2.png"></image>
27 </view> 27 </view>
28 </view> 28 </view>
29 </view> 29 </view>
@@ -374,7 +374,7 @@ page { @@ -374,7 +374,7 @@ page {
374 height: 86rpx; 374 height: 86rpx;
375 line-height: 86rpx; 375 line-height: 86rpx;
376 text-align: center; 376 text-align: center;
377 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/combinationBg.png") no-repeat center center; 377 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/combinationBg.png") no-repeat center center;
378 background-size: contain; 378 background-size: contain;
379 overflow: hidden; 379 overflow: hidden;
380 } 380 }
ceres-uniapp-master/pages_category_page1/goodsModule/components/GoodActivityDetail.vue
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 > 30 >
31 <image 31 <image
32 class="share-img" 32 class="share-img"
33 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/shareBut.png" 33 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/shareBut.png"
34 ></image> 34 ></image>
35 <label class="fs24 mar-left-5">分享</label> 35 <label class="fs24 mar-left-5">分享</label>
36 </view> 36 </view>
@@ -70,7 +70,7 @@ @@ -70,7 +70,7 @@
70 <view class="vipImg flex-items"> 70 <view class="vipImg flex-items">
71 <image 71 <image
72 class="vip-icon" 72 class="vip-icon"
73 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/vipDetail.png" 73 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/vipDetail.png"
74 mode="" 74 mode=""
75 > 75 >
76 </image> 76 </image>
@@ -91,19 +91,19 @@ @@ -91,19 +91,19 @@
91 <image 91 <image
92 v-if="[2,4].includes(skuSelect.activityType)" 92 v-if="[2,4].includes(skuSelect.activityType)"
93 class="seckill-icon" 93 class="seckill-icon"
94 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/seckillicon.png" 94 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/seckillicon.png"
95 mode="" 95 mode=""
96 ></image> 96 ></image>
97 <image 97 <image
98 v-if="[3,5].includes(skuSelect.activityType)" 98 v-if="[3,5].includes(skuSelect.activityType)"
99 class="discount-icon" 99 class="discount-icon"
100 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discounticon.png" 100 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discounticon.png"
101 mode="" 101 mode=""
102 ></image> 102 ></image>
103 <image 103 <image
104 v-if="skuSelect.activityType === 1" 104 v-if="skuSelect.activityType === 1"
105 class="spell-icon" 105 class="spell-icon"
106 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spellicon.png" 106 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spellicon.png"
107 mode="" 107 mode=""
108 ></image> 108 ></image>
109 <view class="flex-row-plus flex-items mar-top-10"> 109 <view class="flex-row-plus flex-items mar-top-10">
@@ -148,12 +148,12 @@ @@ -148,12 +148,12 @@
148 <image 148 <image
149 v-if="productInfo.ifCollect === 1" 149 v-if="productInfo.ifCollect === 1"
150 class="store-icon " 150 class="store-icon "
151 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/shoucangActive1.png" 151 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/shoucangActive1.png"
152 ></image> 152 ></image>
153 <image 153 <image
154 v-else 154 v-else
155 class="store-icon" 155 class="store-icon"
156 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/shoucang2x.png" 156 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/shoucang2x.png"
157 > 157 >
158 </image> 158 </image>
159 <label class="fs22">收藏</label> 159 <label class="fs22">收藏</label>
@@ -176,7 +176,7 @@ @@ -176,7 +176,7 @@
176 <label class="fs24 font-color-C5AA7B">领券</label> 176 <label class="fs24 font-color-C5AA7B">领券</label>
177 <image 177 <image
178 class="coupon-arrow" 178 class="coupon-arrow"
179 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png" 179 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"
180 ></image> 180 ></image>
181 </view> 181 </view>
182 </view> 182 </view>
@@ -500,7 +500,7 @@ export default { @@ -500,7 +500,7 @@ export default {
500 500
501 .seckill-box { 501 .seckill-box {
502 width: 100%; 502 width: 100%;
503 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeTop_Img.png") no-repeat left top; 503 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/storeTop_Img.png") no-repeat left top;
504 padding: 35rpx 30rpx; 504 padding: 35rpx 30rpx;
505 505
506 .seckill-icon { 506 .seckill-icon {
ceres-uniapp-master/pages_category_page1/goodsModule/components/GoodEvaluateAndQuestion.vue
@@ -100,13 +100,13 @@ @@ -100,13 +100,13 @@
100 <image 100 <image
101 class="like-img" 101 class="like-img"
102 @click="handlePraise(commentItem,0)" 102 @click="handlePraise(commentItem,0)"
103 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseActiveIcon.png" 103 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseActiveIcon.png"
104 v-if="commentItem.ifLike === 1" 104 v-if="commentItem.ifLike === 1"
105 ></image> 105 ></image>
106 <image 106 <image
107 class="like-img" 107 class="like-img"
108 @click="handlePraise(commentItem,1)" 108 @click="handlePraise(commentItem,1)"
109 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseIcon.png" 109 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseIcon.png"
110 v-else 110 v-else
111 ></image> 111 ></image>
112 <view class="like-num">{{ commentItem.likes }}</view> 112 <view class="like-num">{{ commentItem.likes }}</view>
@@ -120,7 +120,7 @@ @@ -120,7 +120,7 @@
120 <label class="fs24">查看全部</label> 120 <label class="fs24">查看全部</label>
121 <image 121 <image
122 class="evaluateAllArrow-icon mar-left-10" 122 class="evaluateAllArrow-icon mar-left-10"
123 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png" 123 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"
124 ></image> 124 ></image>
125 </view> 125 </view>
126 </view> 126 </view>
@@ -151,7 +151,7 @@ @@ -151,7 +151,7 @@
151 <label class="fs24">查看全部</label> 151 <label class="fs24">查看全部</label>
152 <image 152 <image
153 class="evaluateAllArrow-icon mar-left-10" 153 class="evaluateAllArrow-icon mar-left-10"
154 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png" 154 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"
155 ></image> 155 ></image>
156 </view> 156 </view>
157 </view> 157 </view>
@@ -353,7 +353,7 @@ const newDataList = dataList.map(item =&gt; { @@ -353,7 +353,7 @@ const newDataList = dataList.map(item =&gt; {
353 width: 40rpx; 353 width: 40rpx;
354 height: 26rpx; 354 height: 26rpx;
355 top:18rpx; 355 top:18rpx;
356 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrow.png") no-repeat center center; 356 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrow.png") no-repeat center center;
357 background-size: contain; 357 background-size: contain;
358 display: block; 358 display: block;
359 position: absolute; 359 position: absolute;
ceres-uniapp-master/pages_category_page1/goodsModule/couponShopList.vue
@@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
19 </view> 19 </view>
20 <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items"> 20 <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items">
21 <label class="fs22 font-color-999">{{item.shopName}}</label> 21 <label class="fs22 font-color-999">{{item.shopName}}</label>
22 - <image class="arrowImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png"></image> 22 + <image class="arrowImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"></image>
23 </view> 23 </view>
24 </view> 24 </view>
25 </view> 25 </view>
@@ -44,7 +44,7 @@ @@ -44,7 +44,7 @@
44 </view> 44 </view>
45 <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items"> 45 <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items">
46 <label class="fs22 font-color-999">{{item.shopName}}</label> 46 <label class="fs22 font-color-999">{{item.shopName}}</label>
47 - <image class="arrowImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png"></image> 47 + <image class="arrowImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"></image>
48 </view> 48 </view>
49 </view> 49 </view>
50 </view> 50 </view>
@@ -54,7 +54,7 @@ @@ -54,7 +54,7 @@
54 54
55 <!-- 搜索为空 --> 55 <!-- 搜索为空 -->
56 <view v-if="ifShow" class="emptyCart-box flex-items-plus flex-column"> 56 <view v-if="ifShow" class="emptyCart-box flex-items-plus flex-column">
57 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchEmpty.png"></image> 57 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchEmpty.png"></image>
58 <label class="font-color-999 fs26 mar-top-30">无可用商品</label> 58 <label class="font-color-999 fs26 mar-top-30">无可用商品</label>
59 </view> 59 </view>
60 </view> 60 </view>
ceres-uniapp-master/pages_category_page1/goodsModule/evaSuccessful.vue
@@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
2 <view class="payCourteous"> 2 <view class="payCourteous">
3 <view class="evaBox"> 3 <view class="evaBox">
4 <view class="imgBox"> 4 <view class="imgBox">
5 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/payIcon.png"></image> 5 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/payIcon.png"></image>
6 </view> 6 </view>
7 <view class="successful">评价成功</view> 7 <view class="successful">评价成功</view>
8 <view class="btnBox fs28 font-color-333"> 8 <view class="btnBox fs28 font-color-333">
ceres-uniapp-master/pages_category_page1/goodsModule/evaluate.vue
@@ -265,7 +265,7 @@ @@ -265,7 +265,7 @@
265 content: ''; 265 content: '';
266 height: 71rpx; 266 height: 71rpx;
267 width: 71rpx; 267 width: 71rpx;
268 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addImg.png") no-repeat center center; 268 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addImg.png") no-repeat center center;
269 display: block; 269 display: block;
270 background-size: contain; 270 background-size: contain;
271 } 271 }
ceres-uniapp-master/pages_category_page1/goodsModule/evaluateDetails.vue
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 <view class="evaluate-content flex-items flex-row flex-sp-between"> 7 <view class="evaluate-content flex-items flex-row flex-sp-between">
8 <view class="flex-items"> 8 <view class="flex-items">
9 <image class="user-headSmallImg" v-if="commentVOList.headImage" :src="commentVOList.headImage"></image> 9 <image class="user-headSmallImg" v-if="commentVOList.headImage" :src="commentVOList.headImage"></image>
10 - <image class="user-headSmallImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeLogo.png" v-else ></image> 10 + <image class="user-headSmallImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/storeLogo.png" v-else ></image>
11 <label class="fs28 mar-left-20" v-if="commentVOList.name">{{commentVOList.name}}</label> 11 <label class="fs28 mar-left-20" v-if="commentVOList.name">{{commentVOList.name}}</label>
12 <label class="fs28 mar-left-20" v-else>匿名</label> 12 <label class="fs28 mar-left-20" v-else>匿名</label>
13 </view> 13 </view>
@@ -48,19 +48,19 @@ @@ -48,19 +48,19 @@
48 <view class="linkBox"> 48 <view class="linkBox">
49 <view class="butBox flex-row-plus" v-if="commentVOList.addComment != ''"> 49 <view class="butBox flex-row-plus" v-if="commentVOList.addComment != ''">
50 <view class="addPraise-box1 flex-items-plus" @click="zanTap"> 50 <view class="addPraise-box1 flex-items-plus" @click="zanTap">
51 - <image class="addPraise-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addPraiseIcon.png" v-if="!commentVOList.ifLike"/>  
52 - <image class="addPraise-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/415f93719fa64af58b8d7cafb734ec4a_22.png" v-else/> 51 + <image class="addPraise-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addPraiseIcon.png" v-if="!commentVOList.ifLike"/>
  52 + <image class="addPraise-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/415f93719fa64af58b8d7cafb734ec4a_22.png" v-else/>
53 <label :class="['mar-left-10',commentVOList.ifLike?'font-color-FFEBC4':'font-color-DDD']">点赞</label> 53 <label :class="['mar-left-10',commentVOList.ifLike?'font-color-FFEBC4':'font-color-DDD']">点赞</label>
54 </view> 54 </view>
55 </view> 55 </view>
56 <view class="butBox flex-row-plus" v-else> 56 <view class="butBox flex-row-plus" v-else>
57 <view class="addComments-box flex-items-plus" @click="addCommentsClick()"> 57 <view class="addComments-box flex-items-plus" @click="addCommentsClick()">
58 - <image class="addComments-cion" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addCommentsIcon.png"></image> 58 + <image class="addComments-cion" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addCommentsIcon.png"></image>
59 <label class="mar-left-10 font-color-333">追加评价</label> 59 <label class="mar-left-10 font-color-333">追加评价</label>
60 </view> 60 </view>
61 <view class="addPraise-box flex-items-plus" @click="zanTap"> 61 <view class="addPraise-box flex-items-plus" @click="zanTap">
62 - <image class="addPraise-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addPraiseIcon.png" v-if="!commentVOList.ifLike"/>  
63 - <image class="addPraise-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/415f93719fa64af58b8d7cafb734ec4a_22.png" v-else/> 62 + <image class="addPraise-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addPraiseIcon.png" v-if="!commentVOList.ifLike"/>
  63 + <image class="addPraise-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/415f93719fa64af58b8d7cafb734ec4a_22.png" v-else/>
64 <label :class="['mar-left-10',commentVOList.ifLike?'font-color-FFEBC4':'font-color-DDD']">点赞</label> 64 <label :class="['mar-left-10',commentVOList.ifLike?'font-color-FFEBC4':'font-color-DDD']">点赞</label>
65 </view> 65 </view>
66 </view> 66 </view>
ceres-uniapp-master/pages_category_page1/goodsModule/evaluateList.vue
@@ -40,9 +40,9 @@ @@ -40,9 +40,9 @@
40 <text class="font-color-999 fs22">{{item.createTime}}</text> 40 <text class="font-color-999 fs22">{{item.createTime}}</text>
41 <view class="praise-box flex-items flex-row"> 41 <view class="praise-box flex-items flex-row">
42 42
43 - <image class="praise-icon" @click="zanTap(index,item.commentId,0)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseActiveIcon.png" 43 + <image class="praise-icon" @click="zanTap(index,item.commentId,0)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseActiveIcon.png"
44 v-if="item.ifLike == 1"></image> 44 v-if="item.ifLike == 1"></image>
45 - <image class="praise-icon" @click="zanTap(index,item.commentId,1)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseIcon.png" v-else></image> 45 + <image class="praise-icon" @click="zanTap(index,item.commentId,1)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseIcon.png" v-else></image>
46 <text class="mar-left-10 font-color-999">{{item.likes}}</text> 46 <text class="mar-left-10 font-color-999">{{item.likes}}</text>
47 </view> 47 </view>
48 </view> 48 </view>
ceres-uniapp-master/pages_category_page1/goodsModule/goodsDetails.vue
@@ -34,7 +34,7 @@ @@ -34,7 +34,7 @@
34 <!-- 发货 --> 34 <!-- 发货 -->
35 <view class="express-box flex-items flex-row fs24 u-skeleton-fillet"> 35 <view class="express-box flex-items flex-row fs24 u-skeleton-fillet">
36 <label class="fs24 font-color-999 mar-right-20 ">发货</label> 36 <label class="fs24 font-color-999 mar-right-20 ">发货</label>
37 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/mapIcon.png" 37 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/mapIcon.png"
38 v-if="productData.receive && productData.receive.receiveAdress"></image> 38 v-if="productData.receive && productData.receive.receiveAdress"></image>
39 <label class="mar-left-10 mapName mar-right-30" 39 <label class="mar-left-10 mapName mar-right-30"
40 v-if="productData.receive && productData.receive.receiveAdress">{{ 40 v-if="productData.receive && productData.receive.receiveAdress">{{
@@ -58,7 +58,7 @@ @@ -58,7 +58,7 @@
58 </view> 58 </view>
59 </view> 59 </view>
60 <image class="arrow-icon" 60 <image class="arrow-icon"
61 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png"> 61 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png">
62 </image> 62 </image>
63 </view> 63 </view>
64 </view> 64 </view>
@@ -75,7 +75,7 @@ @@ -75,7 +75,7 @@
75 <view class="allMore" @click="handleOpenGroupBookingList">查看全部 75 <view class="allMore" @click="handleOpenGroupBookingList">查看全部
76 </view> 76 </view>
77 <image class="evaluateAllArrow-icon mar-left-10" 77 <image class="evaluateAllArrow-icon mar-left-10"
78 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png"> 78 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png">
79 </image> 79 </image>
80 </view> 80 </view>
81 </view> 81 </view>
@@ -139,13 +139,13 @@ @@ -139,13 +139,13 @@
139 <view class="btns_container"> 139 <view class="btns_container">
140 <view class="btns flex-column-plus" @click="handleJumpToStore"> 140 <view class="btns flex-column-plus" @click="handleJumpToStore">
141 <image class="store-icon" 141 <image class="store-icon"
142 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeIcon.png"> 142 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/storeIcon.png">
143 </image> 143 </image>
144 <label class="fs22">店铺</label> 144 <label class="fs22">店铺</label>
145 </view> 145 </view>
146 <view class="btns flex-column-plus" @click="kefu"> 146 <view class="btns flex-column-plus" @click="kefu">
147 <image class="store-icon" 147 <image class="store-icon"
148 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/service-product-detail.png"> 148 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/service-product-detail.png">
149 </image> 149 </image>
150 <label class="fs22">客服</label> 150 <label class="fs22">客服</label>
151 </view> 151 </view>
@@ -156,7 +156,7 @@ @@ -156,7 +156,7 @@
156 <view class="cartAllNum" v-if="allCartNum>0">{{ allCartNum }} 156 <view class="cartAllNum" v-if="allCartNum>0">{{ allCartNum }}
157 </view> 157 </view>
158 <image class="store-icon" 158 <image class="store-icon"
159 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/gouwuche.png"> 159 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/gouwuche.png">
160 </image> 160 </image>
161 <label class="fs22">购物车</label> 161 <label class="fs22">购物车</label>
162 </view> 162 </view>
@@ -185,7 +185,7 @@ @@ -185,7 +185,7 @@
185 <view class="returnTop-box flex-items-plus flex-column" @click="handleReturnTop" 185 <view class="returnTop-box flex-items-plus flex-column" @click="handleReturnTop"
186 :style="{'display':(returnTopFlag===true? 'flex':'none')}"> 186 :style="{'display':(returnTopFlag===true? 'flex':'none')}">
187 <image class="returnTopImg" 187 <image class="returnTopImg"
188 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/backTop.png"></image> 188 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/backTop.png"></image>
189 </view> 189 </view>
190 </view> 190 </view>
191 <!-- SKU选择器 --> 191 <!-- SKU选择器 -->
@@ -1169,7 +1169,7 @@ @@ -1169,7 +1169,7 @@
1169 width: 36rpx; 1169 width: 36rpx;
1170 height: 36rpx; 1170 height: 36rpx;
1171 display: block; 1171 display: block;
1172 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/serviceImg.png") no-repeat center center; 1172 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/serviceImg.png") no-repeat center center;
1173 background-size: contain; 1173 background-size: contain;
1174 } 1174 }
1175 } 1175 }
@@ -1374,7 +1374,7 @@ @@ -1374,7 +1374,7 @@
1374 1374
1375 .sceneMarketingBox { 1375 .sceneMarketingBox {
1376 width: 100%; 1376 width: 100%;
1377 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/5f85fe4782e34c10b15b04f76c571d12_sceneMarketingDetailsIcon.png" 1377 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/5f85fe4782e34c10b15b04f76c571d12_sceneMarketingDetailsIcon.png"
1378 ) no-repeat center; 1378 ) no-repeat center;
1379 padding: 20rpx 30rpx; 1379 padding: 20rpx 30rpx;
1380 background-size: cover; 1380 background-size: cover;
ceres-uniapp-master/pages_category_page1/goodsModule/goodsList.vue
@@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
14 <view class="searchImg-box flex-items-plus"> 14 <view class="searchImg-box flex-items-plus">
15 <image 15 <image
16 class="searchImg" 16 class="searchImg"
17 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//searchImg.png" 17 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//searchImg.png"
18 ></image> 18 ></image>
19 <input 19 <input
20 class="search-box" 20 class="search-box"
@@ -116,37 +116,37 @@ @@ -116,37 +116,37 @@
116 <image 116 <image
117 class="iconImg" 117 class="iconImg"
118 v-if="item.activityType == 1" 118 v-if="item.activityType == 1"
119 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png" 119 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png"
120 ></image> 120 ></image>
121 <image 121 <image
122 class="iconImg" 122 class="iconImg"
123 v-if="item.activityType == 2" 123 v-if="item.activityType == 2"
124 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" 124 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png"
125 ></image> 125 ></image>
126 <image 126 <image
127 class="iconImg" 127 class="iconImg"
128 v-if="item.activityType == 4" 128 v-if="item.activityType == 4"
129 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" 129 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png"
130 ></image> 130 ></image>
131 <image 131 <image
132 class="iconImg" 132 class="iconImg"
133 v-if="item.activityType == 3" 133 v-if="item.activityType == 3"
134 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png" 134 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"
135 ></image> 135 ></image>
136 <image 136 <image
137 class="iconImg" 137 class="iconImg"
138 v-if="item.activityType == 5" 138 v-if="item.activityType == 5"
139 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png" 139 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"
140 ></image> 140 ></image>
141 <image 141 <image
142 class="iconImg" 142 class="iconImg"
143 v-if="item.activityType == 8" 143 v-if="item.activityType == 8"
144 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png" 144 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png"
145 ></image> 145 ></image>
146 <image 146 <image
147 class="iconImg" 147 class="iconImg"
148 v-if="item.activityType == 9" 148 v-if="item.activityType == 9"
149 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png" 149 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png"
150 ></image> 150 ></image>
151 <view class="font-color-C83732 flex-row-plus"> 151 <view class="font-color-C83732 flex-row-plus">
152 <b>¥</b> 152 <b>¥</b>
@@ -170,7 +170,7 @@ @@ -170,7 +170,7 @@
170 > 170 >
171 <image 171 <image
172 class="emptyCart-img" 172 class="emptyCart-img"
173 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchEmpty.png" 173 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchEmpty.png"
174 ></image> 174 ></image>
175 <label class="font-color-999 fs26 mar-top-30">搜索不到你要找的宝贝呢</label> 175 <label class="font-color-999 fs26 mar-top-30">搜索不到你要找的宝贝呢</label>
176 <label class="font-color-999 fs26 mar-top-10">换个词试试吧~</label> 176 <label class="font-color-999 fs26 mar-top-10">换个词试试吧~</label>
@@ -182,7 +182,7 @@ @@ -182,7 +182,7 @@
182 > 182 >
183 <image 183 <image
184 class="reach-icon" 184 class="reach-icon"
185 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//reachBottom.png" 185 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//reachBottom.png"
186 mode="widthFix" 186 mode="widthFix"
187 ></image> 187 ></image>
188 <text class="reach-text">这里到底了哦~~</text> 188 <text class="reach-text">这里到底了哦~~</text>
ceres-uniapp-master/pages_category_page1/goodsModule/inviteSpell.vue
@@ -500,7 +500,7 @@ page{background-color: #F7F7F7;} @@ -500,7 +500,7 @@ page{background-color: #F7F7F7;}
500 flex-direction: column; 500 flex-direction: column;
501 } 501 }
502 .inviteSpell-con{ 502 .inviteSpell-con{
503 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/pintuanbg.png") no-repeat left top; 503 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/pintuanbg.png") no-repeat left top;
504 background-size: contain; 504 background-size: contain;
505 .grouped { 505 .grouped {
506 text-align: center; 506 text-align: center;
ceres-uniapp-master/pages_category_page1/goodsModule/userEvaluate.vue
@@ -32,7 +32,7 @@ @@ -32,7 +32,7 @@
32 <view class="evaluate-content flex-items flex-row flex-sp-between "> 32 <view class="evaluate-content flex-items flex-row flex-sp-between ">
33 <view class="flex-items"> 33 <view class="flex-items">
34 <image class="user-headSmallImg u-skeleton-circle" v-if="item.headImage" :src="$baseURL+item.headImage"></image> 34 <image class="user-headSmallImg u-skeleton-circle" v-if="item.headImage" :src="$baseURL+item.headImage"></image>
35 - <image class="user-headSmallImg u-skeleton-circle" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeLogo.png" v-else></image> 35 + <image class="user-headSmallImg u-skeleton-circle" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/storeLogo.png" v-else></image>
36 <view class="skuValue u-skeleton-fillet"> 36 <view class="skuValue u-skeleton-fillet">
37 <label class="fs28" v-if="item.name">{{item.name}}</label> 37 <label class="fs28" v-if="item.name">{{item.name}}</label>
38 <label class="fs28" v-else>匿名</label> 38 <label class="fs28" v-else>匿名</label>
@@ -72,9 +72,9 @@ @@ -72,9 +72,9 @@
72 <!-- <view class="flex-items flex-row mar-top-30 flex-sp-between"> 72 <!-- <view class="flex-items flex-row mar-top-30 flex-sp-between">
73 <view class="font-color-999 fs22">{{item.createTime}}</view> 73 <view class="font-color-999 fs22">{{item.createTime}}</view>
74 <view class="praise-box flex-items flex-row"> 74 <view class="praise-box flex-items flex-row">
75 - <image class="praise-icon" @click.stop="zanTap(index,item.commentId,0)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseActiveIcon.png" 75 + <image class="praise-icon" @click.stop="zanTap(index,item.commentId,0)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseActiveIcon.png"
76 v-if="item.ifLike"></image> 76 v-if="item.ifLike"></image>
77 - <image class="praise-icon" @click.stop="zanTap(index,item.commentId,1)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addPraiseIcon.png" 77 + <image class="praise-icon" @click.stop="zanTap(index,item.commentId,1)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addPraiseIcon.png"
78 v-else></image> 78 v-else></image>
79 <label class="mar-left-10">{{item.likes}}</label> 79 <label class="mar-left-10">{{item.likes}}</label>
80 </view> 80 </view>
@@ -82,7 +82,7 @@ @@ -82,7 +82,7 @@
82 </view> 82 </view>
83 </template> 83 </template>
84 <view v-if="evaluateEmpty" class="emptyOrder-box flex-items-plus flex-column"> 84 <view v-if="evaluateEmpty" class="emptyOrder-box flex-items-plus flex-column">
85 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 85 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
86 <label class="font-color-999 fs26 mar-top-30">你还没有评论哦~</label> 86 <label class="font-color-999 fs26 mar-top-30">你还没有评论哦~</label>
87 </view> 87 </view>
88 </view> 88 </view>
@@ -96,7 +96,7 @@ @@ -96,7 +96,7 @@
96 <view class="evaluate-content flex-column" @click="commentDetails(index)" > 96 <view class="evaluate-content flex-column" @click="commentDetails(index)" >
97 <view class="flex-items"> 97 <view class="flex-items">
98 <image class="user-headSmallImg" v-if="item.headImage" :src="$baseURL+item.headImage"></image> 98 <image class="user-headSmallImg" v-if="item.headImage" :src="$baseURL+item.headImage"></image>
99 - <image class="user-headSmallImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/storeLogo.png" v-else></image> 99 + <image class="user-headSmallImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/storeLogo.png" v-else></image>
100 <label class="fs28 mar-left-20" v-if="item.name">{{item.name}}</label> 100 <label class="fs28 mar-left-20" v-if="item.name">{{item.name}}</label>
101 <label class="fs28 mar-left-20" v-else>匿名</label> 101 <label class="fs28 mar-left-20" v-else>匿名</label>
102 </view> 102 </view>
@@ -122,9 +122,9 @@ @@ -122,9 +122,9 @@
122 <view class="flex-items flex-row mar-top-30 flex-sp-between"> 122 <view class="flex-items flex-row mar-top-30 flex-sp-between">
123 <view class="font-color-999 fs22">{{item.createTime}}</view> 123 <view class="font-color-999 fs22">{{item.createTime}}</view>
124 <view class="praise-box flex-items flex-row"> 124 <view class="praise-box flex-items flex-row">
125 - <image class="praise-icon" @click.stop="zanTap(index,item.commentId,0)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseActiveIcon.png" 125 + <image class="praise-icon" @click.stop="zanTap(index,item.commentId,0)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseActiveIcon.png"
126 v-if="item.ifLike"></image> 126 v-if="item.ifLike"></image>
127 - <image class="praise-icon" @click.stop="zanTap(index,item.commentId,1)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/praiseIcon.png" 127 + <image class="praise-icon" @click.stop="zanTap(index,item.commentId,1)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/praiseIcon.png"
128 v-else></image> 128 v-else></image>
129 <label class="mar-left-10">{{item.likes}}</label> 129 <label class="mar-left-10">{{item.likes}}</label>
130 </view> 130 </view>
@@ -133,7 +133,7 @@ @@ -133,7 +133,7 @@
133 </view> 133 </view>
134 </template> 134 </template>
135 <view v-if="evaluateEmpty" class="emptyOrder-box flex-items-plus flex-column"> 135 <view v-if="evaluateEmpty" class="emptyOrder-box flex-items-plus flex-column">
136 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 136 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
137 <label class="font-color-999 fs26 mar-top-30">你还没有评论哦~</label> 137 <label class="font-color-999 fs26 mar-top-30">你还没有评论哦~</label>
138 </view> 138 </view>
139 </view> 139 </view>
@@ -183,13 +183,10 @@ @@ -183,13 +183,10 @@
183 name:'', 183 name:'',
184 comment:'' 184 comment:''
185 }] 185 }]
186 - // this.getMyCommentList()  
187 - },  
188 - onLoad() {  
189 this.getMyCommentList() 186 this.getMyCommentList()
190 }, 187 },
191 - onShow() {  
192 - this.getMyCommentList() 188 + onLoad() {
  189 + // this.getMyCommentList()
193 }, 190 },
194 onReachBottom(){ 191 onReachBottom(){
195 if(this.loadingType == 1){ 192 if(this.loadingType == 1){
@@ -218,9 +215,17 @@ @@ -218,9 +215,17 @@
218 }); 215 });
219 }, 216 },
220 commentImgData(imgData) { 217 commentImgData(imgData) {
221 - console.log('现在图片',imgData) 218 + // console.log('现在图片',imgData)
222 let imgDataResult = [] 219 let imgDataResult = []
223 imgDataResult = imgData.split(","); 220 imgDataResult = imgData.split(",");
  221 +
  222 + for (let i = imgDataResult.length - 1; i >= 0; i--) {
  223 + const item = imgDataResult[i];
  224 + if (item === '' || item === null || item === undefined) {
  225 + imgDataResult.splice(i, 1);
  226 + break; // 只删除最后一个空数据,找到后跳出循环
  227 + }
  228 + }
224 return imgDataResult 229 return imgDataResult
225 }, 230 },
226 evaluateTitleClick(type) { 231 evaluateTitleClick(type) {
@@ -253,6 +258,7 @@ @@ -253,6 +258,7 @@
253 this.myCommentList = res.data 258 this.myCommentList = res.data
254 this.commentVOList = this.commentVOList.concat(res.data.page.list) 259 this.commentVOList = this.commentVOList.concat(res.data.page.list)
255 260
  261 +
256 this.commentVOList = this.commentVOList.filter(item=>!item.isLoading) 262 this.commentVOList = this.commentVOList.filter(item=>!item.isLoading)
257 if (this.commentVOList.length === 0) { 263 if (this.commentVOList.length === 0) {
258 this.evaluateEmpty = true 264 this.evaluateEmpty = true
ceres-uniapp-master/pages_category_page1/homeModule/special.vue
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 </view> 30 </view>
31 <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items"> 31 <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items">
32 <label class="fs22 font-color-999">{{item.storeDTO.storeName}}</label> 32 <label class="fs22 font-color-999">{{item.storeDTO.storeName}}</label>
33 - <image class="arrowImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png"></image> 33 + <image class="arrowImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"></image>
34 </view> 34 </view>
35 </view> 35 </view>
36 </view> 36 </view>
@@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
39 39
40 <!-- 为空 --> 40 <!-- 为空 -->
41 <view v-else class="emptyOrder-box flex-items-plus flex-column"> 41 <view v-else class="emptyOrder-box flex-items-plus flex-column">
42 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 42 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
43 <label class="font-color-999 fs26 mar-top-30">专题商品为空哦~</label> 43 <label class="font-color-999 fs26 mar-top-30">专题商品为空哦~</label>
44 </view> 44 </view>
45 </view> 45 </view>
ceres-uniapp-master/pages_category_page1/integral/exchangeDetail.vue
@@ -198,12 +198,12 @@ page { @@ -198,12 +198,12 @@ page {
198 padding-bottom: 200rpx; 198 padding-bottom: 200rpx;
199 background: #F8F8F8; 199 background: #F8F8F8;
200 .topBg { 200 .topBg {
201 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addBankBg.png") no-repeat left top; 201 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addBankBg.png") no-repeat left top;
202 background-size: contain; 202 background-size: contain;
203 height: 350rpx; 203 height: 350rpx;
204 padding: 40rpx 20rpx 0 20rpx; 204 padding: 40rpx 20rpx 0 20rpx;
205 .exchangeCoupon { 205 .exchangeCoupon {
206 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/exchagneCoupon.png") no-repeat left top; 206 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/exchagneCoupon.png") no-repeat left top;
207 background-size: contain; 207 background-size: contain;
208 height: 302rpx; 208 height: 302rpx;
209 border-radius: 16rpx; 209 border-radius: 16rpx;
ceres-uniapp-master/pages_category_page1/integral/index.vue
@@ -57,7 +57,7 @@ @@ -57,7 +57,7 @@
57 <view class="signInBox"> 57 <view class="signInBox">
58 <view class="signItem flex-items flex-sp-between" v-for="(item, index) of integralRecord" :key="index"> 58 <view class="signItem flex-items flex-sp-between" v-for="(item, index) of integralRecord" :key="index">
59 <view class="leftBox flex-items"> 59 <view class="leftBox flex-items">
60 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/signIcon1.png"></image> 60 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/signIcon1.png"></image>
61 <view class="leftInfo"> 61 <view class="leftInfo">
62 <label class="fs28 font-color-333">{{item.recordContent}}</label> 62 <label class="fs28 font-color-333">{{item.recordContent}}</label>
63 <view class="fs24 font-color-999">{{item.createTime}}</view> 63 <view class="fs24 font-color-999">{{item.createTime}}</view>
@@ -66,7 +66,7 @@ @@ -66,7 +66,7 @@
66 <view class="rightBtn">{{item.recordType === 1 ? '+' : '-'}}{{item.credit}}</view> 66 <view class="rightBtn">{{item.recordType === 1 ? '+' : '-'}}{{item.credit}}</view>
67 </view> 67 </view>
68 <view class="emptyCart-box flex-items-plus flex-column" v-if="integralRecord.length === 0"> 68 <view class="emptyCart-box flex-items-plus flex-column" v-if="integralRecord.length === 0">
69 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchEmpty.png"></image> 69 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchEmpty.png"></image>
70 <label class="font-color-999 fs26 mar-top-30">暂无记录~</label> 70 <label class="font-color-999 fs26 mar-top-30">暂无记录~</label>
71 </view> 71 </view>
72 </view> 72 </view>
@@ -95,7 +95,7 @@ @@ -95,7 +95,7 @@
95 </view> 95 </view>
96 </view> 96 </view>
97 <view class="emptyCart-box flex-items-plus flex-column" v-if="creditCouponList.length === 0"> 97 <view class="emptyCart-box flex-items-plus flex-column" v-if="creditCouponList.length === 0">
98 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/searchEmpty.png"></image> 98 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/searchEmpty.png"></image>
99 <label class="font-color-999 fs26 mar-top-30">暂无优惠券~</label> 99 <label class="font-color-999 fs26 mar-top-30">暂无优惠券~</label>
100 </view> 100 </view>
101 </view> 101 </view>
@@ -114,7 +114,7 @@ @@ -114,7 +114,7 @@
114 </view> 114 </view>
115 </view> 115 </view>
116 <view v-if="isConvertible" @click="isConvertible = false" class="cancelDel"> 116 <view v-if="isConvertible" @click="isConvertible = false" class="cancelDel">
117 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/cancelClose.png" mode=""></image> 117 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/cancelClose.png" mode=""></image>
118 </view> 118 </view>
119 </view> 119 </view>
120 </tui-modal> 120 </tui-modal>
@@ -244,7 +244,7 @@ page { @@ -244,7 +244,7 @@ page {
244 } 244 }
245 .memberCenter { 245 .memberCenter {
246 border-top: 2rpx solid #4b4b4b; 246 border-top: 2rpx solid #4b4b4b;
247 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addBankBg.png") no-repeat left top; 247 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addBankBg.png") no-repeat left top;
248 background-size: contain; 248 background-size: contain;
249 min-height: 800rpx; 249 min-height: 800rpx;
250 padding: 0 20rpx; 250 padding: 0 20rpx;
@@ -311,7 +311,7 @@ page { @@ -311,7 +311,7 @@ page {
311 padding: 0 20rpx; 311 padding: 0 20rpx;
312 .signLeft { 312 .signLeft {
313 .signIcon { 313 .signIcon {
314 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/signIcon.png") no-repeat center left; 314 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/signIcon.png") no-repeat center left;
315 background-size: contain; 315 background-size: contain;
316 height: 120rpx; 316 height: 120rpx;
317 width: 96rpx; 317 width: 96rpx;
@@ -340,22 +340,22 @@ page { @@ -340,22 +340,22 @@ page {
340 margin-right: 15rpx; 340 margin-right: 15rpx;
341 } 341 }
342 .detailIcon { 342 .detailIcon {
343 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/detailIcon.png") no-repeat center center; 343 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/detailIcon.png") no-repeat center center;
344 background-size: contain; 344 background-size: contain;
345 } 345 }
346 .exchangeIcon { 346 .exchangeIcon {
347 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/exchangeIcon.png") no-repeat center center; 347 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/exchangeIcon.png") no-repeat center center;
348 background-size: contain; 348 background-size: contain;
349 } 349 }
350 } 350 }
351 .active { 351 .active {
352 background: #333333; 352 background: #333333;
353 .detailIcon { 353 .detailIcon {
354 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/detailIcon1.png") no-repeat center center; 354 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/detailIcon1.png") no-repeat center center;
355 background-size: contain; 355 background-size: contain;
356 } 356 }
357 .exchangeIcon { 357 .exchangeIcon {
358 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/exchangeIcon1.png") no-repeat center center; 358 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/exchangeIcon1.png") no-repeat center center;
359 background-size: contain; 359 background-size: contain;
360 } 360 }
361 text { 361 text {
@@ -411,7 +411,7 @@ page { @@ -411,7 +411,7 @@ page {
411 color: #FDFED6; 411 color: #FDFED6;
412 width: 300rpx; 412 width: 300rpx;
413 height: 146rpx; 413 height: 146rpx;
414 - background: url('https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/exchangeItem.png') no-repeat left top; 414 + background: url('https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/exchangeItem.png') no-repeat left top;
415 background-size: contain; 415 background-size: contain;
416 padding: 30rpx 25rpx; 416 padding: 30rpx 25rpx;
417 } 417 }
ceres-uniapp-master/pages_category_page1/integral/sign.vue
@@ -280,7 +280,7 @@ page { @@ -280,7 +280,7 @@ page {
280 .signBox { 280 .signBox {
281 padding-bottom: 50rpx; 281 padding-bottom: 50rpx;
282 .signBg { 282 .signBg {
283 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/signBg.png") no-repeat left top; 283 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/signBg.png") no-repeat left top;
284 background-size: contain; 284 background-size: contain;
285 min-height: 702rpx; 285 min-height: 702rpx;
286 padding-top: 160rpx; 286 padding-top: 160rpx;
@@ -298,14 +298,14 @@ page { @@ -298,14 +298,14 @@ page {
298 .signStateBg { 298 .signStateBg {
299 width: 300rpx; 299 width: 300rpx;
300 height: 300rpx; 300 height: 300rpx;
301 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/signState.png") no-repeat left top; 301 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/signState.png") no-repeat left top;
302 background-size: contain; 302 background-size: contain;
303 text { 303 text {
304 color: #C83732; 304 color: #C83732;
305 } 305 }
306 } 306 }
307 .noSign { 307 .noSign {
308 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/signState1.png") no-repeat left top; 308 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/signState1.png") no-repeat left top;
309 background-size: contain; 309 background-size: contain;
310 text { 310 text {
311 color: #FFFFFF; 311 color: #FFFFFF;
@@ -334,7 +334,7 @@ page { @@ -334,7 +334,7 @@ page {
334 padding: 0 20rpx; 334 padding: 0 20rpx;
335 .redEnvelopeBg { 335 .redEnvelopeBg {
336 height: 230rpx; 336 height: 230rpx;
337 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/redEnvelopeBg.png") no-repeat left top; 337 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/redEnvelopeBg.png") no-repeat left top;
338 background-size: contain; 338 background-size: contain;
339 padding-right: 50rpx; 339 padding-right: 50rpx;
340 .exchangeBtn { 340 .exchangeBtn {
ceres-uniapp-master/pages_category_page1/memberCenter/activityList.vue
@@ -45,7 +45,7 @@ @@ -45,7 +45,7 @@
45 <view class="originalPrice">原价: ¥{{item.originalPrice}}</view> 45 <view class="originalPrice">原价: ¥{{item.originalPrice}}</view>
46 <view class="flex-row-plus flex-items-plus"> 46 <view class="flex-row-plus flex-items-plus">
47 <view class="iconBox"> 47 <view class="iconBox">
48 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png"></image> 48 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png"></image>
49 </view> 49 </view>
50 <view class="flex-row-plus flex-items priceInfo"> 50 <view class="flex-row-plus flex-items priceInfo">
51 <label class="fs24">¥</label> 51 <label class="fs24">¥</label>
@@ -307,7 +307,7 @@ page { @@ -307,7 +307,7 @@ page {
307 .discountBg { 307 .discountBg {
308 width: 100%; 308 width: 100%;
309 height: 440rpx; 309 height: 440rpx;
310 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterBg.png") no-repeat center center; 310 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterBg.png") no-repeat center center;
311 background-size: contain; 311 background-size: contain;
312 position: relative; 312 position: relative;
313 } 313 }
ceres-uniapp-master/pages_category_page1/memberCenter/index.vue
@@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
17 <view class="memberTopInfo"> 17 <view class="memberTopInfo">
18 <view class="backBox"> 18 <view class="backBox">
19 <image 19 <image
20 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/back_img04.png" 20 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/back_img04.png"
21 class="back" 21 class="back"
22 @click="back" 22 @click="back"
23 ></image> 23 ></image>
@@ -134,7 +134,7 @@ @@ -134,7 +134,7 @@
134 <view class="signItem flex-items flex-sp-between"> 134 <view class="signItem flex-items flex-sp-between">
135 <view class="itemLeft flex-items"> 135 <view class="itemLeft flex-items">
136 <view class="leftIcon"> 136 <view class="leftIcon">
137 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//member/memberList2.png"></image> 137 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//member/memberList2.png"></image>
138 </view> 138 </view>
139 <view class="leftInfo"> 139 <view class="leftInfo">
140 <label class="fs28 font-color-333">购物</label> 140 <label class="fs28 font-color-333">购物</label>
ceres-uniapp-master/pages_category_page1/memberCenter/memberSign.vue
@@ -34,13 +34,13 @@ @@ -34,13 +34,13 @@
34 <view class="signDateList"> 34 <view class="signDateList">
35 <view class="signItem" v-for="(item, index) of recordList" :key="item.signinId"> 35 <view class="signItem" v-for="(item, index) of recordList" :key="item.signinId">
36 <view class="topIcon"> 36 <view class="topIcon">
37 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//member/signIcon.png"></image> 37 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//member/signIcon.png"></image>
38 </view> 38 </view>
39 <view class="dateInfo">{{ index + 1 }}天</view> 39 <view class="dateInfo">{{ index + 1 }}天</view>
40 </view> 40 </view>
41 <view class="signItem" v-for="index of noSign" :key="index"> 41 <view class="signItem" v-for="index of noSign" :key="index">
42 <view class="topIcon"> 42 <view class="topIcon">
43 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//member/signIcon2.png"></image> 43 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//member/signIcon2.png"></image>
44 </view> 44 </view>
45 <!-- #ifdef MP-WEIXIN --> 45 <!-- #ifdef MP-WEIXIN -->
46 <view class="dateInfo">{{recordList.length+index+1}}天</view> 46 <view class="dateInfo">{{recordList.length+index+1}}天</view>
@@ -188,7 +188,7 @@ @@ -188,7 +188,7 @@
188 188
189 .memberCenter { 189 .memberCenter {
190 border-top: 2rpx solid #4b4b4b; 190 border-top: 2rpx solid #4b4b4b;
191 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//member/memberSignBg.png") no-repeat left top; 191 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//member/memberSignBg.png") no-repeat left top;
192 background-size: contain; 192 background-size: contain;
193 min-height: 900rpx; 193 min-height: 900rpx;
194 padding: 0 20rpx; 194 padding: 0 20rpx;
ceres-uniapp-master/pages_category_page1/orderModule/Intervene.vue
@@ -163,7 +163,7 @@ page{ @@ -163,7 +163,7 @@ page{
163 content: ''; 163 content: '';
164 height: 71rpx; 164 height: 71rpx;
165 width: 71rpx; 165 width: 71rpx;
166 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addImg.png") no-repeat center center; 166 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addImg.png") no-repeat center center;
167 display: block; 167 display: block;
168 background-size: contain; 168 background-size: contain;
169 } 169 }
ceres-uniapp-master/pages_category_page1/orderModule/addLogistics.vue
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 <view class="l">物流公司</view> 9 <view class="l">物流公司</view>
10 <view class="r-box"> 10 <view class="r-box">
11 <text>{{SendReturnQuery.logisticsName}}</text> 11 <text>{{SendReturnQuery.logisticsName}}</text>
12 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" class="r"></image> 12 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png" class="r"></image>
13 </view> 13 </view>
14 </view> 14 </view>
15 15
@@ -564,7 +564,7 @@ @@ -564,7 +564,7 @@
564 content: ''; 564 content: '';
565 height: 71rpx; 565 height: 71rpx;
566 width: 71rpx; 566 width: 71rpx;
567 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addImg.png") no-repeat center center; 567 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addImg.png") no-repeat center center;
568 display: block; 568 display: block;
569 background-size: contain; 569 background-size: contain;
570 } 570 }
ceres-uniapp-master/pages_category_page1/orderModule/afterSaleApplyRefund.vue
@@ -46,7 +46,7 @@ @@ -46,7 +46,7 @@
46 > 46 >
47 <text>仅退款</text> 47 <text>仅退款</text>
48 <image 48 <image
49 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 49 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
50 class="r" 50 class="r"
51 ></image> 51 ></image>
52 </view> 52 </view>
@@ -57,7 +57,7 @@ @@ -57,7 +57,7 @@
57 > 57 >
58 <text>退货退款</text> 58 <text>退货退款</text>
59 <image 59 <image
60 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 60 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
61 class="r" 61 class="r"
62 ></image> 62 ></image>
63 </view> 63 </view>
@@ -74,7 +74,7 @@ @@ -74,7 +74,7 @@
74 > 74 >
75 <text>未收到货</text> 75 <text>未收到货</text>
76 <image 76 <image
77 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 77 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
78 class="r" 78 class="r"
79 ></image> 79 ></image>
80 </view> 80 </view>
@@ -85,7 +85,7 @@ @@ -85,7 +85,7 @@
85 > 85 >
86 <text>已收到货</text> 86 <text>已收到货</text>
87 <image 87 <image
88 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 88 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
89 class="r" 89 class="r"
90 ></image> 90 ></image>
91 </view> 91 </view>
@@ -98,7 +98,7 @@ @@ -98,7 +98,7 @@
98 <view class="r-box"> 98 <view class="r-box">
99 <text v-model="ReturnMoneyQuery.returnReason">{{ liyoutext }}</text> 99 <text v-model="ReturnMoneyQuery.returnReason">{{ liyoutext }}</text>
100 <image 100 <image
101 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 101 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
102 class="r" 102 class="r"
103 ></image> 103 ></image>
104 </view> 104 </view>
@@ -179,13 +179,13 @@ @@ -179,13 +179,13 @@
179 <text class="status-select-title">仅退款</text> 179 <text class="status-select-title">仅退款</text>
180 <image 180 <image
181 mode="aspectFill" 181 mode="aspectFill"
182 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 182 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
183 v-if="afterType == 1" 183 v-if="afterType == 1"
184 class="status-select-img" 184 class="status-select-img"
185 ></image> 185 ></image>
186 <image 186 <image
187 mode="aspectFill" 187 mode="aspectFill"
188 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 188 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
189 v-else 189 v-else
190 class="status-select-img" 190 class="status-select-img"
191 ></image> 191 ></image>
@@ -197,13 +197,13 @@ @@ -197,13 +197,13 @@
197 <text class="status-select-title">退货退款</text> 197 <text class="status-select-title">退货退款</text>
198 <image 198 <image
199 mode="aspectFill" 199 mode="aspectFill"
200 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 200 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
201 v-if="afterType == 2" 201 v-if="afterType == 2"
202 class="status-select-img" 202 class="status-select-img"
203 ></image> 203 ></image>
204 <image 204 <image
205 mode="aspectFill" 205 mode="aspectFill"
206 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 206 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
207 v-else 207 v-else
208 class="status-select-img" 208 class="status-select-img"
209 ></image> 209 ></image>
@@ -233,13 +233,13 @@ @@ -233,13 +233,13 @@
233 <text class="status-select-title">未收到货</text> 233 <text class="status-select-title">未收到货</text>
234 <image 234 <image
235 mode="aspectFill" 235 mode="aspectFill"
236 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 236 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
237 v-if="ReturnMoneyQuery.goodsState == 0" 237 v-if="ReturnMoneyQuery.goodsState == 0"
238 class="status-select-img" 238 class="status-select-img"
239 ></image> 239 ></image>
240 <image 240 <image
241 mode="aspectFill" 241 mode="aspectFill"
242 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 242 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
243 v-else 243 v-else
244 class="status-select-img" 244 class="status-select-img"
245 ></image> 245 ></image>
@@ -251,13 +251,13 @@ @@ -251,13 +251,13 @@
251 <text class="status-select-title">已收到货</text> 251 <text class="status-select-title">已收到货</text>
252 <image 252 <image
253 mode="aspectFill" 253 mode="aspectFill"
254 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 254 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
255 v-if="ReturnMoneyQuery.goodsState == 1" 255 v-if="ReturnMoneyQuery.goodsState == 1"
256 class="status-select-img" 256 class="status-select-img"
257 ></image> 257 ></image>
258 <image 258 <image
259 mode="aspectFill" 259 mode="aspectFill"
260 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 260 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
261 v-else 261 v-else
262 class="status-select-img" 262 class="status-select-img"
263 ></image> 263 ></image>
@@ -294,13 +294,13 @@ @@ -294,13 +294,13 @@
294 <text class="status-select-title">{{ item }}</text> 294 <text class="status-select-title">{{ item }}</text>
295 <image 295 <image
296 mode="aspectFill" 296 mode="aspectFill"
297 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 297 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
298 v-if="ReturnMoneyQuery.returnReason == index" 298 v-if="ReturnMoneyQuery.returnReason == index"
299 class="status-select-img" 299 class="status-select-img"
300 ></image> 300 ></image>
301 <image 301 <image
302 mode="aspectFill" 302 mode="aspectFill"
303 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 303 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
304 v-else 304 v-else
305 class="status-select-img" 305 class="status-select-img"
306 ></image> 306 ></image>
@@ -925,7 +925,7 @@ export default { @@ -925,7 +925,7 @@ export default {
925 content: ''; 925 content: '';
926 width: 80rpx; 926 width: 80rpx;
927 height: 80rpx; 927 height: 80rpx;
928 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addImgBtn.png") center center; 928 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addImgBtn.png") center center;
929 background-size: contain; 929 background-size: contain;
930 } 930 }
931 931
ceres-uniapp-master/pages_category_page1/orderModule/afterSaleApplyRetund.vue
@@ -38,14 +38,14 @@ @@ -38,14 +38,14 @@
38 v-model="ReturnMoneyQuery.goodsState" 38 v-model="ReturnMoneyQuery.goodsState"
39 v-if="ReturnMoneyQuery.goodsState == 0"> 39 v-if="ReturnMoneyQuery.goodsState == 0">
40 <text>未收到货</text> 40 <text>未收到货</text>
41 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 41 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
42 class="r"></image> 42 class="r"></image>
43 </view> 43 </view>
44 <view class="r-box" 44 <view class="r-box"
45 v-model="ReturnMoneyQuery.goodsState" 45 v-model="ReturnMoneyQuery.goodsState"
46 v-if="ReturnMoneyQuery.goodsState == 1"> 46 v-if="ReturnMoneyQuery.goodsState == 1">
47 <text>已收到货</text> 47 <text>已收到货</text>
48 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 48 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
49 class="r"></image> 49 class="r"></image>
50 </view> 50 </view>
51 </view> 51 </view>
@@ -54,7 +54,7 @@ @@ -54,7 +54,7 @@
54 <view class="l">退款原因</view> 54 <view class="l">退款原因</view>
55 <view class="r-box"> 55 <view class="r-box">
56 <text v-model="ReturnMoneyQuery.returnReason">{{ liyoutext }}</text> 56 <text v-model="ReturnMoneyQuery.returnReason">{{ liyoutext }}</text>
57 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 57 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
58 class="r"></image> 58 class="r"></image>
59 </view> 59 </view>
60 </view> 60 </view>
@@ -122,11 +122,11 @@ @@ -122,11 +122,11 @@
122 @click="ReturnMoneyQuery.goodsState = 0"> 122 @click="ReturnMoneyQuery.goodsState = 0">
123 <text class="status-select-title">未收到货</text> 123 <text class="status-select-title">未收到货</text>
124 <image mode="aspectFill" 124 <image mode="aspectFill"
125 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 125 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
126 v-if="ReturnMoneyQuery.goodsState == 0" 126 v-if="ReturnMoneyQuery.goodsState == 0"
127 class="status-select-img"></image> 127 class="status-select-img"></image>
128 <image mode="aspectFill" 128 <image mode="aspectFill"
129 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 129 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
130 v-else 130 v-else
131 class="status-select-img"></image> 131 class="status-select-img"></image>
132 </view> 132 </view>
@@ -134,11 +134,11 @@ @@ -134,11 +134,11 @@
134 @click="ReturnMoneyQuery.goodsState = 1"> 134 @click="ReturnMoneyQuery.goodsState = 1">
135 <text class="status-select-title">已收到货</text> 135 <text class="status-select-title">已收到货</text>
136 <image mode="aspectFill" 136 <image mode="aspectFill"
137 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 137 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
138 v-if="ReturnMoneyQuery.goodsState == 1" 138 v-if="ReturnMoneyQuery.goodsState == 1"
139 class="status-select-img"></image> 139 class="status-select-img"></image>
140 <image mode="aspectFill" 140 <image mode="aspectFill"
141 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 141 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
142 v-else 142 v-else
143 class="status-select-img"></image> 143 class="status-select-img"></image>
144 </view> 144 </view>
@@ -167,11 +167,11 @@ @@ -167,11 +167,11 @@
167 :key="index"> 167 :key="index">
168 <text class="status-select-title">{{ item }}</text> 168 <text class="status-select-title">{{ item }}</text>
169 <image mode="aspectFill" 169 <image mode="aspectFill"
170 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 170 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
171 v-if="ReturnMoneyQuery.returnReason == index" 171 v-if="ReturnMoneyQuery.returnReason == index"
172 class="status-select-img"></image> 172 class="status-select-img"></image>
173 <image mode="aspectFill" 173 <image mode="aspectFill"
174 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 174 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
175 v-else 175 v-else
176 class="status-select-img"></image> 176 class="status-select-img"></image>
177 </view> 177 </view>
ceres-uniapp-master/pages_category_page1/orderModule/index.vue
@@ -41,7 +41,7 @@ @@ -41,7 +41,7 @@
41 /> 41 />
42 <text class="shop-name">{{ orderItem.shopName }}</text> 42 <text class="shop-name">{{ orderItem.shopName }}</text>
43 <image 43 <image
44 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 44 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
45 class="arrow-img" 45 class="arrow-img"
46 /> 46 />
47 </view> 47 </view>
@@ -126,7 +126,7 @@ @@ -126,7 +126,7 @@
126 <NoMore :show="!isEmpty && list.length >=listTotal" /> 126 <NoMore :show="!isEmpty && list.length >=listTotal" />
127 <Empty 127 <Empty
128 :show="isEmpty" 128 :show="isEmpty"
129 - icon-url="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/emptyOrderImg.png" 129 + icon-url="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/emptyOrderImg.png"
130 >您还没有订单哦~ 130 >您还没有订单哦~
131 </Empty> 131 </Empty>
132 </view> 132 </view>
@@ -842,7 +842,7 @@ page { @@ -842,7 +842,7 @@ page {
842 .delIcon { 842 .delIcon {
843 width: 40rpx; 843 width: 40rpx;
844 height: 40rpx; 844 height: 40rpx;
845 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/delListOrder.png") no-repeat center center; 845 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/delListOrder.png") no-repeat center center;
846 background-size: contain; 846 background-size: contain;
847 } 847 }
848 } 848 }
ceres-uniapp-master/pages_category_page1/orderModule/logisticsInfo.vue
@@ -23,7 +23,7 @@ @@ -23,7 +23,7 @@
23 </view> 23 </view>
24 </view> --> 24 </view> -->
25 <view v-else class="emptyOrder-box flex-items-plus flex-column"> 25 <view v-else class="emptyOrder-box flex-items-plus flex-column">
26 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 26 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
27 <label class="font-color-999 fs26 mar-top-30">你还没有物流信息哦~</label> 27 <label class="font-color-999 fs26 mar-top-30">你还没有物流信息哦~</label>
28 </view> 28 </view>
29 </view> 29 </view>
ceres-uniapp-master/pages_category_page1/orderModule/orderConfirm.vue
@@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
6 <view v-if="ifShow"> 6 <view v-if="ifShow">
7 <view class="content"> 7 <view class="content">
8 <view class="address-box" @click="addAddressTap"> 8 <view class="address-box" @click="addAddressTap">
9 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderAddress.png" 9 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/orderAddress.png"
10 class="address-img"></image> 10 class="address-img"></image>
11 <!-- 有地址的 --> 11 <!-- 有地址的 -->
12 <view class="address-r" v-if="userAddressInfo.receiveName"> 12 <view class="address-r" v-if="userAddressInfo.receiveName">
@@ -22,7 +22,7 @@ @@ -22,7 +22,7 @@
22 <view class="address-r" v-else> 22 <view class="address-r" v-else>
23 <text>你还没有收货地址哦,点击这里添加</text> 23 <text>你还没有收货地址哦,点击这里添加</text>
24 </view> 24 </view>
25 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png" 25 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/greyArrow.png"
26 class="arrow-right-img"></image> 26 class="arrow-right-img"></image>
27 </view> 27 </view>
28 <view class="order-list-box"> 28 <view class="order-list-box">
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 <view class="order-list-top"> 30 <view class="order-list-top">
31 <view class="top-l"> 31 <view class="top-l">
32 <image 32 <image
33 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderStoreIcon.png" 33 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/orderStoreIcon.png"
34 class="shop-img"> 34 class="shop-img">
35 </image> 35 </image>
36 <text class="shop-name">{{ item.shopName }}</text> 36 <text class="shop-name">{{ item.shopName }}</text>
@@ -93,7 +93,7 @@ @@ -93,7 +93,7 @@
93 {{ item.currentCoupon.reduceMoney }}折券 93 {{ item.currentCoupon.reduceMoney }}折券
94 </view> 94 </view>
95 <image class="discount-img" 95 <image class="discount-img"
96 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"> 96 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png">
97 </image> 97 </image>
98 </view> 98 </view>
99 99
@@ -128,7 +128,7 @@ @@ -128,7 +128,7 @@
128 <view class="discount-info1" v-else-if="couponId.couponName">{{couponId.couponName}}</view> 128 <view class="discount-info1" v-else-if="couponId.couponName">{{couponId.couponName}}</view>
129 <view class="discount-info1" v-else>暂无选择</view> 129 <view class="discount-info1" v-else>暂无选择</view>
130 <image class="discount-img" 130 <image class="discount-img"
131 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"> 131 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png">
132 </image> 132 </image>
133 </view> 133 </view>
134 </view> 134 </view>
@@ -186,7 +186,7 @@ @@ -186,7 +186,7 @@
186 <view class="activity-box" style="height: 1000rpx;"> 186 <view class="activity-box" style="height: 1000rpx;">
187 <view class="title-box"> 187 <view class="title-box">
188 <image class="close-btn" @click="onDiscountClose" 188 <image class="close-btn" @click="onDiscountClose"
189 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"> 189 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png">
190 </image> 190 </image>
191 </view> 191 </view>
192 <view class="activity-coupon-box"> 192 <view class="activity-coupon-box">
@@ -212,10 +212,10 @@ @@ -212,10 +212,10 @@
212 <view class="info font-color-999">满{{ usableItem.fullMoney }}元可用</view> 212 <view class="info font-color-999">满{{ usableItem.fullMoney }}元可用</view>
213 </view> 213 </view>
214 <image class="check-img" 214 <image class="check-img"
215 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 215 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
216 v-if="usableItem.checked"></image> 216 v-if="usableItem.checked"></image>
217 <image class="check-img" 217 <image class="check-img"
218 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 218 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
219 v-else> 219 v-else>
220 </image> 220 </image>
221 </view> 221 </view>
@@ -231,7 +231,7 @@ @@ -231,7 +231,7 @@
231 <view class="activity-box"> 231 <view class="activity-box">
232 <view class="title-box"> 232 <view class="title-box">
233 <image class="close-btn" @click="onshopClose" 233 <image class="close-btn" @click="onshopClose"
234 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"> 234 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png">
235 </image> 235 </image>
236 </view> 236 </view>
237 <view class="activity-coupon-box"> 237 <view class="activity-coupon-box">
@@ -257,10 +257,10 @@ @@ -257,10 +257,10 @@
257 <view class="info font-color-999">满{{ sItem.fullMoney }}元可用</view> 257 <view class="info font-color-999">满{{ sItem.fullMoney }}元可用</view>
258 </view> 258 </view>
259 <image class="check-img" 259 <image class="check-img"
260 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 260 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
261 v-if="sItem.checked"></image> 261 v-if="sItem.checked"></image>
262 <image class="check-img" 262 <image class="check-img"
263 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 263 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
264 v-else> 264 v-else>
265 </image> 265 </image>
266 </view> 266 </view>
@@ -276,7 +276,7 @@ @@ -276,7 +276,7 @@
276 <view class="activity-box" style="height: 1000rpx;"> 276 <view class="activity-box" style="height: 1000rpx;">
277 <view class="title-box"> 277 <view class="title-box">
278 <image class="close-btn" @click="iscoupon=false" 278 <image class="close-btn" @click="iscoupon=false"
279 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png"> 279 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png">
280 </image> 280 </image>
281 </view> 281 </view>
282 <view class="activity-coupon-box"> 282 <view class="activity-coupon-box">
@@ -306,10 +306,10 @@ @@ -306,10 +306,10 @@
306 </view> 306 </view>
307 </view> 307 </view>
308 <image class="check-img" 308 <image class="check-img"
309 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 309 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
310 v-if="usableItem.checked"></image> 310 v-if="usableItem.checked"></image>
311 <image class="check-img" 311 <image class="check-img"
312 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 312 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
313 v-else> 313 v-else>
314 </image> 314 </image>
315 </view> 315 </view>
@@ -2203,7 +2203,7 @@ @@ -2203,7 +2203,7 @@
2203 .coupon-item { 2203 .coupon-item {
2204 width: 48%; 2204 width: 48%;
2205 height: 291rpx; 2205 height: 291rpx;
2206 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon.png") no-repeat center top; 2206 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/couponsIcon.png") no-repeat center top;
2207 margin-top: 20upx; 2207 margin-top: 20upx;
2208 color: #C5AA7B; 2208 color: #C5AA7B;
2209 flex-shrink: 0; 2209 flex-shrink: 0;
ceres-uniapp-master/pages_category_page1/orderModule/orderConfirm334.vue
@@ -10,7 +10,7 @@ @@ -10,7 +10,7 @@
10 @click="addAddressTap" 10 @click="addAddressTap"
11 > 11 >
12 <image 12 <image
13 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderAddress.png" 13 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/orderAddress.png"
14 class="address-img" 14 class="address-img"
15 ></image> 15 ></image>
16 <!-- 有地址的 --> 16 <!-- 有地址的 -->
@@ -34,7 +34,7 @@ @@ -34,7 +34,7 @@
34 <text>你还没有收货地址哦,点击这里添加</text> 34 <text>你还没有收货地址哦,点击这里添加</text>
35 </view> 35 </view>
36 <image 36 <image
37 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png" 37 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/greyArrow.png"
38 class="arrow-right-img" 38 class="arrow-right-img"
39 ></image> 39 ></image>
40 </view> 40 </view>
@@ -47,7 +47,7 @@ @@ -47,7 +47,7 @@
47 <view class="order-list-top"> 47 <view class="order-list-top">
48 <view class="top-l"> 48 <view class="top-l">
49 <image 49 <image
50 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderStoreIcon.png" 50 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/orderStoreIcon.png"
51 class="shop-img" 51 class="shop-img"
52 > 52 >
53 </image> 53 </image>
@@ -130,7 +130,7 @@ @@ -130,7 +130,7 @@
130 </view> 130 </view>
131 <image 131 <image
132 class="discount-img" 132 class="discount-img"
133 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 133 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
134 ></image> 134 ></image>
135 </view> 135 </view>
136 136
@@ -181,7 +181,7 @@ @@ -181,7 +181,7 @@
181 </view> 181 </view>
182 <image 182 <image
183 class="discount-img" 183 class="discount-img"
184 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 184 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
185 ></image> 185 ></image>
186 </view> 186 </view>
187 </view> 187 </view>
@@ -277,7 +277,7 @@ @@ -277,7 +277,7 @@
277 <image 277 <image
278 class="close-btn" 278 class="close-btn"
279 @click="onDiscountClose" 279 @click="onDiscountClose"
280 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png" 280 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png"
281 ></image> 281 ></image>
282 </view> 282 </view>
283 <view class="activity-coupon-box"> 283 <view class="activity-coupon-box">
@@ -319,12 +319,12 @@ @@ -319,12 +319,12 @@
319 </view> 319 </view>
320 <image 320 <image
321 class="check-img" 321 class="check-img"
322 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 322 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
323 v-if="usableItem.checked" 323 v-if="usableItem.checked"
324 ></image> 324 ></image>
325 <image 325 <image
326 class="check-img" 326 class="check-img"
327 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 327 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
328 v-else 328 v-else
329 > 329 >
330 </image> 330 </image>
@@ -349,7 +349,7 @@ @@ -349,7 +349,7 @@
349 <image 349 <image
350 class="close-btn" 350 class="close-btn"
351 @click="onshopClose" 351 @click="onshopClose"
352 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/close.png" 352 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/close.png"
353 ></image> 353 ></image>
354 </view> 354 </view>
355 <view class="activity-coupon-box"> 355 <view class="activity-coupon-box">
@@ -390,12 +390,12 @@ @@ -390,12 +390,12 @@
390 </view> 390 </view>
391 <image 391 <image
392 class="check-img" 392 class="check-img"
393 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 393 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
394 v-if="sItem.checked" 394 v-if="sItem.checked"
395 ></image> 395 ></image>
396 <image 396 <image
397 class="check-img" 397 class="check-img"
398 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 398 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
399 v-else 399 v-else
400 > 400 >
401 </image> 401 </image>
@@ -2019,7 +2019,7 @@ page { @@ -2019,7 +2019,7 @@ page {
2019 .coupon-item { 2019 .coupon-item {
2020 width: 48%; 2020 width: 48%;
2021 height: 291rpx; 2021 height: 291rpx;
2022 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon.png") no-repeat center top; 2022 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/couponsIcon.png") no-repeat center top;
2023 margin-top: 20upx; 2023 margin-top: 20upx;
2024 color: #C5AA7B; 2024 color: #C5AA7B;
2025 flex-shrink: 0; 2025 flex-shrink: 0;
ceres-uniapp-master/pages_category_page1/orderModule/orderDetails.vue
@@ -81,7 +81,7 @@ @@ -81,7 +81,7 @@
81 </view> 81 </view>
82 <view class="order-details-info-box"> 82 <view class="order-details-info-box">
83 <view class="address-box"> 83 <view class="address-box">
84 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderAddress.png" class="address-img"> 84 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/orderAddress.png" class="address-img">
85 </image> 85 </image>
86 <view class="address-r"> 86 <view class="address-r">
87 <view class="address-name-box"> 87 <view class="address-name-box">
@@ -92,7 +92,7 @@ @@ -92,7 +92,7 @@
92 <text>{{ dataList.receiveAdress }} {{ dataList.address }}</text> 92 <text>{{ dataList.receiveAdress }} {{ dataList.address }}</text>
93 </view> 93 </view>
94 </view> 94 </view>
95 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" v-if="false" 95 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png" v-if="false"
96 class="arrow-right-img"></image> 96 class="arrow-right-img"></image>
97 </view> 97 </view>
98 98
@@ -100,10 +100,10 @@ @@ -100,10 +100,10 @@
100 <view class="item"> 100 <view class="item">
101 <view class="order-list-top"> 101 <view class="order-list-top">
102 <view class="top-l" @click="goShop(dataList.shopId)"> 102 <view class="top-l" @click="goShop(dataList.shopId)">
103 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/orderStoreIcon.png" 103 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/orderStoreIcon.png"
104 class="shop-img"></image> 104 class="shop-img"></image>
105 <text class="shop-name">{{ dataList.shopName }}</text> 105 <text class="shop-name">{{ dataList.shopName }}</text>
106 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" 106 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"
107 class="arrow-img"> 107 class="arrow-img">
108 </image> 108 </image>
109 </view> 109 </view>
@@ -268,10 +268,10 @@ @@ -268,10 +268,10 @@
268 <text class="line"></text> 268 <text class="line"></text>
269 <text>物流信息</text> 269 <text>物流信息</text>
270 </view> 270 </view>
271 - <image mode="aspectFill" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDown.png" 271 + <image mode="aspectFill" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDown.png"
272 class="arrow-down-img" style="transform:rotate(180deg);" v-if="isShowWuLiu == true"> 272 class="arrow-down-img" style="transform:rotate(180deg);" v-if="isShowWuLiu == true">
273 </image> 273 </image>
274 - <image mode="aspectFill" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDown.png" 274 + <image mode="aspectFill" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDown.png"
275 class="arrow-down-img" v-else> 275 class="arrow-down-img" v-else>
276 </image> 276 </image>
277 </view> 277 </view>
@@ -287,7 +287,7 @@ @@ -287,7 +287,7 @@
287 <!-- <uni-steps :options="steps" direction="column" :active="0"></uni-steps> --> 287 <!-- <uni-steps :options="steps" direction="column" :active="0"></uni-steps> -->
288 </view> 288 </view>
289 <view v-else class="emptyOrder-box flex-items-plus flex-column"> 289 <view v-else class="emptyOrder-box flex-items-plus flex-column">
290 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 290 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
291 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 291 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
292 </view> 292 </view>
293 </view> 293 </view>
@@ -320,7 +320,7 @@ @@ -320,7 +320,7 @@
320 <view class="pay-type-radio"> 320 <view class="pay-type-radio">
321 <view class="pay-type-img"> 321 <view class="pay-type-img">
322 <img class="pay-type-img-inner" 322 <img class="pay-type-img-inner"
323 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/alipay.png" /> 323 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/alipay.png" />
324 </view> 324 </view>
325 <label class="pay-type-label">支付宝支付</label> 325 <label class="pay-type-label">支付宝支付</label>
326 <radio class="pay-type-radio-item" style="transform:scale(0.7)" :checked="paymentMode == 2" 326 <radio class="pay-type-radio-item" style="transform:scale(0.7)" :checked="paymentMode == 2"
@@ -329,7 +329,7 @@ @@ -329,7 +329,7 @@
329 <view class="pay-type-radio"> 329 <view class="pay-type-radio">
330 <view class="pay-type-img"> 330 <view class="pay-type-img">
331 <img class="pay-type-img-inner" 331 <img class="pay-type-img-inner"
332 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/huabei.png" /> 332 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/huabei.png" />
333 </view> 333 </view>
334 <label class="pay-type-label">花呗分期</label> 334 <label class="pay-type-label">花呗分期</label>
335 <radio class="pay-type-radio-item" style="transform:scale(0.7)" 335 <radio class="pay-type-radio-item" style="transform:scale(0.7)"
ceres-uniapp-master/pages_category_page1/orderModule/paySuccessful.vue
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 </view> 7 </view>
8 <view class="resultCard"> 8 <view class="resultCard">
9 <view class="imgBox"> 9 <view class="imgBox">
10 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/payIcon.png"></image> 10 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/payIcon.png"></image>
11 </view> 11 </view>
12 <view class="successful">支付成功</view> 12 <view class="successful">支付成功</view>
13 <view class="btnBox fs28 font-color-333"> 13 <view class="btnBox fs28 font-color-333">
@@ -16,7 +16,7 @@ @@ -16,7 +16,7 @@
16 </view> 16 </view>
17 <view class="orderPolite" v-if="orderPolite.growth || orderPolite.couponList"> 17 <view class="orderPolite" v-if="orderPolite.growth || orderPolite.couponList">
18 <view class="politeImgBox"> 18 <view class="politeImgBox">
19 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/politeIcon.png"></image> 19 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/politeIcon.png"></image>
20 </view> 20 </view>
21 <view class="rightInfo"> 21 <view class="rightInfo">
22 <view class="growthBox" 22 <view class="growthBox"
ceres-uniapp-master/pages_category_page1/orderModule/platformJoin.vue
@@ -504,7 +504,7 @@ const API = require(&#39;../../config/api&#39;) @@ -504,7 +504,7 @@ const API = require(&#39;../../config/api&#39;)
504 content: ''; 504 content: '';
505 height: 71rpx; 505 height: 71rpx;
506 width: 71rpx; 506 width: 71rpx;
507 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addImg.png") no-repeat center center; 507 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addImg.png") no-repeat center center;
508 display: block; 508 display: block;
509 background-size: contain; 509 background-size: contain;
510 } 510 }
ceres-uniapp-master/pages_category_page1/search/index/index.vue
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 <view> 4 <view>
5 <view class="flex-items-plus flex-row mar-top-20"> 5 <view class="flex-items-plus flex-row mar-top-20">
6 <view class="searchImg-box flex-items-plus"> 6 <view class="searchImg-box flex-items-plus">
7 - <image class="searchImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//searchImg.png"></image> 7 + <image class="searchImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//searchImg.png"></image>
8 <input class="search-box" v-model="keyWord" placeholder-class="searchboxPlace" 8 <input class="search-box" v-model="keyWord" placeholder-class="searchboxPlace"
9 placeholder="请输入您想要的宝贝" /> 9 placeholder="请输入您想要的宝贝" />
10 10
@@ -18,9 +18,9 @@ @@ -18,9 +18,9 @@
18 <view class="boxTitle mar-leftgetList-30" v-if="hotSearchList.length>0"> 18 <view class="boxTitle mar-leftgetList-30" v-if="hotSearchList.length>0">
19 <label class="fs30 font-color-999 fs-weight-300">热门搜索</label> 19 <label class="fs30 font-color-999 fs-weight-300">热门搜索</label>
20 <image class="seeIcon hotSearchListSee-icon" v-if="isSee" @click="changeHotSearchListIsSee" 20 <image class="seeIcon hotSearchListSee-icon" v-if="isSee" @click="changeHotSearchListIsSee"
21 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//see.png"></image> 21 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//see.png"></image>
22 <image class="seeIcon hotSearchListNotSee-icon" v-else @click="changeHotSearchListIsSee" 22 <image class="seeIcon hotSearchListNotSee-icon" v-else @click="changeHotSearchListIsSee"
23 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//notSee.png"></image> 23 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//notSee.png"></image>
24 </view> 24 </view>
25 <view> 25 <view>
26 <view class="flex-wrap-1 flex-row" v-if="isSee"> 26 <view class="flex-wrap-1 flex-row" v-if="isSee">
@@ -38,7 +38,7 @@ @@ -38,7 +38,7 @@
38 <view class="historyBox tipsBox"> 38 <view class="historyBox tipsBox">
39 <view class="boxTitle mar-leftgetList-30" v-if="historyList.length>0"> 39 <view class="boxTitle mar-leftgetList-30" v-if="historyList.length>0">
40 <label class="fs30 font-color-999 fs-weight-300 ">历史搜索</label> 40 <label class="fs30 font-color-999 fs-weight-300 ">历史搜索</label>
41 - <image class="historyDel-icon" @click="historyDelAll" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//index/historyDel_icon.png"> 41 + <image class="historyDel-icon" @click="historyDelAll" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//index/historyDel_icon.png">
42 </image> 42 </image>
43 </view> 43 </view>
44 <view class="historySear-box flex-wrap-1 flex-row"> 44 <view class="historySear-box flex-wrap-1 flex-row">
@@ -51,7 +51,7 @@ @@ -51,7 +51,7 @@
51 <label class="font-color-DDD fs22 pad-topbot-10 text-align">|</label> 51 <label class="font-color-DDD fs22 pad-topbot-10 text-align">|</label>
52 <view class="historyIconBox" @click="historyDelOne(item.searchId)"> 52 <view class="historyIconBox" @click="historyDelOne(item.searchId)">
53 <image class="historySearDel-icon text-align" 53 <image class="historySearDel-icon text-align"
54 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//index/historySearDel_icon.png"></image> 54 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//index/historySearDel_icon.png"></image>
55 </view> 55 </view>
56 </view> 56 </view>
57 </view> 57 </view>
ceres-uniapp-master/pages_category_page1/store/index.vue
@@ -5,9 +5,9 @@ @@ -5,9 +5,9 @@
5 <!-- 店铺首页 --> 5 <!-- 店铺首页 -->
6 <view class="content" v-if="id"> 6 <view class="content" v-if="id">
7 <view class="shop-top" :style="{'padding-top': topHeight + 'px'}"> 7 <view class="shop-top" :style="{'padding-top': topHeight + 'px'}">
8 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/back_img04.png" class="back" @click="back"></image> 8 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/back_img04.png" class="back" @click="back"></image>
9 <view class="search-btn" @click="searchPro"> 9 <view class="search-btn" @click="searchPro">
10 - <image class="search-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//searchImg.png" mode="widthFix"> 10 + <image class="search-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//searchImg.png" mode="widthFix">
11 </image> 11 </image>
12 <text class="fs24 font-color-999 mar-left-10" style="color:#fff !important">请输入您想要的宝贝</text> 12 <text class="fs24 font-color-999 mar-left-10" style="color:#fff !important">请输入您想要的宝贝</text>
13 </view> 13 </view>
@@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
24 <!-- #ifdef MP-WEIXIN --> 24 <!-- #ifdef MP-WEIXIN -->
25 <view v-if="hasService" class="btns flex-column-plus mar-left-10" @click="flyToService"> 25 <view v-if="hasService" class="btns flex-column-plus mar-left-10" @click="flyToService">
26 <image class="store-icon" 26 <image class="store-icon"
27 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/service-product-detail.png"></image> 27 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/service-product-detail.png"></image>
28 <text>客服</text> 28 <text>客服</text>
29 </view> 29 </view>
30 <!-- #endif --> 30 <!-- #endif -->
@@ -33,10 +33,10 @@ @@ -33,10 +33,10 @@
33 <view class="contentRight"> 33 <view class="contentRight">
34 <view class="favorites-box cur-poi" @click="collectToggle"> 34 <view class="favorites-box cur-poi" @click="collectToggle">
35 <image v-if="ifCollect === 0" class="store-icon" 35 <image v-if="ifCollect === 0" class="store-icon"
36 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/iconShoucang.png"> 36 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/iconShoucang.png">
37 </image> 37 </image>
38 <image v-else class="store-icon" 38 <image v-else class="store-icon"
39 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/shoucangActive.png"></image> 39 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/shoucangActive.png"></image>
40 <text class="text">{{ifCollect === 0? '收藏' : '取消'}}</text> 40 <text class="text">{{ifCollect === 0? '收藏' : '取消'}}</text>
41 </view> 41 </view>
42 </view> 42 </view>
@@ -44,13 +44,13 @@ @@ -44,13 +44,13 @@
44 <!-- <view class="distributorBox flex-items flex-sp-between" @click="applyForRecruit"> 44 <!-- <view class="distributorBox flex-items flex-sp-between" @click="applyForRecruit">
45 <view class="distributor"> 45 <view class="distributor">
46 <view class="flex-display flex-items"> 46 <view class="flex-display flex-items">
47 - <image class="item-btn-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/fenxiao2.png" 47 + <image class="item-btn-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/fenxiao2.png"
48 mode="widthFix"></image> 48 mode="widthFix"></image>
49 <view>成为分销员</view> 49 <view>成为分销员</view>
50 </view> 50 </view>
51 </view> 51 </view>
52 <view class="rightArrow"> 52 <view class="rightArrow">
53 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png"></image> 53 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png"></image>
54 </view> 54 </view>
55 </view> --> 55 </view> -->
56 <!-- <scroll-view style="white-space: nowrap;width: 100%;" scroll-x="true"> 56 <!-- <scroll-view style="white-space: nowrap;width: 100%;" scroll-x="true">
@@ -114,18 +114,18 @@ @@ -114,18 +114,18 @@
114 <view class="nav-item-sort" @click="sortTap(2)"> 114 <view class="nav-item-sort" @click="sortTap(2)">
115 <text class="nav-title" :class="{'active' : sortIndex == 2}">价格</text> 115 <text class="nav-title" :class="{'active' : sortIndex == 2}">价格</text>
116 <view class="r"> 116 <view class="r">
117 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowSortUp.png" 117 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowSortUp.png"
118 v-if="type == 1" class="arrow-img padd-t"></image> 118 v-if="type == 1" class="arrow-img padd-t"></image>
119 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowSortDown.png" 119 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowSortDown.png"
120 v-if="type == 2" class="arrow-img padd-b"></image> 120 v-if="type == 2" class="arrow-img padd-b"></image>
121 </view> 121 </view>
122 </view> 122 </view>
123 <view class="nav-item-sort" @click="sortTap(3)"> 123 <view class="nav-item-sort" @click="sortTap(3)">
124 <text class="nav-title" :class="{'active' : sortIndex == 3}">销量</text> 124 <text class="nav-title" :class="{'active' : sortIndex == 3}">销量</text>
125 <view class="r"> 125 <view class="r">
126 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowSortUp.png" 126 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowSortUp.png"
127 v-if="volume == 1" class="arrow-img padd-t"></image> 127 v-if="volume == 1" class="arrow-img padd-t"></image>
128 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowSortDown.png" 128 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowSortDown.png"
129 v-if="volume == 2" class="arrow-img padd-b"></image> 129 v-if="volume == 2" class="arrow-img padd-b"></image>
130 </view> 130 </view>
131 </view> 131 </view>
@@ -141,25 +141,25 @@ @@ -141,25 +141,25 @@
141 </view> 141 </view>
142 <view class="product-price-box"> 142 <view class="product-price-box">
143 <image v-if="cItem.activityType===1" class="iconImg" 143 <image v-if="cItem.activityType===1" class="iconImg"
144 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png" 144 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png"
145 alt="拼团icon"></image> 145 alt="拼团icon"></image>
146 <image v-if="cItem.activityType === 2" class="iconImg" 146 <image v-if="cItem.activityType === 2" class="iconImg"
147 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" alt="秒杀活动"> 147 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png" alt="秒杀活动">
148 </image> 148 </image>
149 <image v-if="cItem.activityType === 3" class="iconImg discountIcon" 149 <image v-if="cItem.activityType === 3" class="iconImg discountIcon"
150 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/38184785db4b4fbca767ada611097ae9_discount.png" 150 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/38184785db4b4fbca767ada611097ae9_discount.png"
151 alt="限时折扣活动"></image> 151 alt="限时折扣活动"></image>
152 <image v-if="cItem.activityType === 4" class="iconImg" 152 <image v-if="cItem.activityType === 4" class="iconImg"
153 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" alt="平台秒杀"> 153 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png" alt="平台秒杀">
154 </image> 154 </image>
155 <image v-if="cItem.activityType===5" class="iconImg" 155 <image v-if="cItem.activityType===5" class="iconImg"
156 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png" 156 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png"
157 alt="平台折扣"></image> 157 alt="平台折扣"></image>
158 <image v-if="cItem.activityType===9" class="iconImg" 158 <image v-if="cItem.activityType===9" class="iconImg"
159 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png" 159 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png"
160 alt="会员价"></image> 160 alt="会员价"></image>
161 <image v-if="cItem.activityType === 8" class="iconImg" 161 <image v-if="cItem.activityType === 8" class="iconImg"
162 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png" 162 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png"
163 alt="场景营销"></image> 163 alt="场景营销"></image>
164 <text 164 <text
165 class="price-box fs40 font-color-C83732 mar-right-20">¥{{cItem.price}}</text> 165 class="price-box fs40 font-color-C83732 mar-right-20">¥{{cItem.price}}</text>
@@ -670,7 +670,7 @@ @@ -670,7 +670,7 @@
670 margin-top: 20rpx; 670 margin-top: 20rpx;
671 padding: 10rpx; 671 padding: 10rpx;
672 overflow: hidden; 672 overflow: hidden;
673 - background-image: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/borderIcon.png"); 673 + background-image: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/borderIcon.png");
674 background-repeat: no-repeat; 674 background-repeat: no-repeat;
675 background-size: contain; 675 background-size: contain;
676 background-position: right top; 676 background-position: right top;
ceres-uniapp-master/pages_category_page2/channelCoupon/index.vue
@@ -10,7 +10,7 @@ @@ -10,7 +10,7 @@
10 <view class="info"> 10 <view class="info">
11 <view class="price-box"> 11 <view class="price-box">
12 <view class="icon"> 12 <view class="icon">
13 - <img class="icon-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//channelCoupon/icon-coupon.png" alt="" mode="widthFix"/> 13 + <img class="icon-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//channelCoupon/icon-coupon.png" alt="" mode="widthFix"/>
14 </view> 14 </view>
15 <label class="price">¥{{channelCouponData.price}}</label> 15 <label class="price">¥{{channelCouponData.price}}</label>
16 <label class="original-price">¥{{channelCouponData.originalPrice}}</label> 16 <label class="original-price">¥{{channelCouponData.originalPrice}}</label>
@@ -38,7 +38,7 @@ @@ -38,7 +38,7 @@
38 </view> 38 </view>
39 <div class="pro-list" v-if="productList && productList.length > 0"> 39 <div class="pro-list" v-if="productList && productList.length > 0">
40 <div class="title"> 40 <div class="title">
41 - <img class="title-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//channelCoupon/img-title.png" alt="商品推荐" mode="widthFix"/> 41 + <img class="title-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//channelCoupon/img-title.png" alt="商品推荐" mode="widthFix"/>
42 </div> 42 </div>
43 <div class="product-list"> 43 <div class="product-list">
44 <div class="product-list-box" > 44 <div class="product-list-box" >
@@ -59,12 +59,12 @@ @@ -59,12 +59,12 @@
59 <label class="buy-count">{{item.users?item.users: 0}}人付款</label> 59 <label class="buy-count">{{item.users?item.users: 0}}人付款</label>
60 </div> 60 </div>
61 <div class="price-warp"> 61 <div class="price-warp">
62 - <img class="iconImg" v-if="item.activityType == 1" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png">  
63 - <img class="iconImg" v-if="item.activityType == 2" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png">  
64 - <img class="iconImg" v-if="item.activityType == 4" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png">  
65 - <img class="iconImg" v-if="item.activityType == 3" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png">  
66 - <img class="iconImg" v-if="item.activityType == 5" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png">  
67 - <img class="iconImg" v-if="item.activityType == 8" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png"> 62 + <img class="iconImg" v-if="item.activityType == 1" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png">
  63 + <img class="iconImg" v-if="item.activityType == 2" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png">
  64 + <img class="iconImg" v-if="item.activityType == 4" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png">
  65 + <img class="iconImg" v-if="item.activityType == 3" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png">
  66 + <img class="iconImg" v-if="item.activityType == 5" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png">
  67 + <img class="iconImg" v-if="item.activityType == 8" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png">
68 <div class="price"> 68 <div class="price">
69 ¥ {{item.price}} 69 ¥ {{item.price}}
70 </div> 70 </div>
@@ -258,7 +258,7 @@ export default { @@ -258,7 +258,7 @@ export default {
258 .coupon{ 258 .coupon{
259 margin: 32rpx 20rpx; 259 margin: 32rpx 20rpx;
260 height: 140rpx; 260 height: 140rpx;
261 - background: #333333 url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//channelCoupon/border-coupon.png") no-repeat right center / auto 140rpx; 261 + background: #333333 url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//channelCoupon/border-coupon.png") no-repeat right center / auto 140rpx;
262 display: flex; 262 display: flex;
263 .price{ 263 .price{
264 position: relative; 264 position: relative;
ceres-uniapp-master/pages_category_page2/distributionModule/distributionOrder.vue
@@ -12,8 +12,8 @@ @@ -12,8 +12,8 @@
12 </view> 12 </view>
13 </view> 13 </view>
14 <view> 14 <view>
15 - <image v-if="item.ifOpen == false" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowDownIcon.png"></image>  
16 - <image v-if="item.ifOpen == true" class="arrow-down" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowUpIcon.png"></image> 15 + <image v-if="item.ifOpen == false" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowDownIcon.png"></image>
  16 + <image v-if="item.ifOpen == true" class="arrow-down" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowUpIcon.png"></image>
17 </view> 17 </view>
18 </view> 18 </view>
19 <view class="upBox" v-if="item.ifOpen == true"> 19 <view class="upBox" v-if="item.ifOpen == true">
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 </view> 30 </view>
31 </view> 31 </view>
32 <view v-else class="emptyCart-box flex-items-plus flex-column"> 32 <view v-else class="emptyCart-box flex-items-plus flex-column">
33 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 33 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
34 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> 34 <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
35 </view> 35 </view>
36 </view> 36 </view>
ceres-uniapp-master/pages_category_page2/livePage/components/liveBox.vue
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 <image class="cover-img" :src="liveData.feedsImg" /> 4 <image class="cover-img" :src="liveData.feedsImg" />
5 <view class="status"> 5 <view class="status">
6 <view class="status-state"> 6 <view class="status-state">
7 - <image class="img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//live/icon-live-num.png" />直播中 7 + <image class="img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//live/icon-live-num.png" />直播中
8 </view> 8 </view>
9 <!-- <view class="status-num">1000人</view> --> 9 <!-- <view class="status-num">1000人</view> -->
10 </view> 10 </view>
ceres-uniapp-master/pages_category_page2/livePage/index.vue
@@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
8 /> 8 />
9 </view> 9 </view>
10 <view v-if="ifShow" class="emptyCart-box"> 10 <view v-if="ifShow" class="emptyCart-box">
11 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectEmpty.png"></image> 11 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectEmpty.png"></image>
12 <label class="text font-color-999 fs26 mar-top-30">暂无直播~</label> 12 <label class="text font-color-999 fs26 mar-top-30">暂无直播~</label>
13 </view> 13 </view>
14 </view> 14 </view>
ceres-uniapp-master/pages_category_page2/orderModule/afterSale.vue
@@ -10,10 +10,10 @@ @@ -10,10 +10,10 @@
10 <view class="top-l" @click="goShop(item.shopId)"> 10 <view class="top-l" @click="goShop(item.shopId)">
11 <image :src="$baseURL+item.shopLogo" class="shop-img"></image> 11 <image :src="$baseURL+item.shopLogo" class="shop-img"></image>
12 <text class="shop-name">{{item.shopName}}</text> 12 <text class="shop-name">{{item.shopName}}</text>
13 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png" class="arrow-img"></image> 13 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png" class="arrow-img"></image>
14 </view> 14 </view>
15 <view class="top-r"> 15 <view class="top-r">
16 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/afterSaleTuikuan.png" class="order-status-img"></image> 16 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/afterSaleTuikuan.png" class="order-status-img"></image>
17 <text class="order-status">{{item.afterType==1?'退款':'退货'}}</text> 17 <text class="order-status">{{item.afterType==1?'退款':'退货'}}</text>
18 </view> 18 </view>
19 </view> 19 </view>
@@ -73,7 +73,7 @@ @@ -73,7 +73,7 @@
73 </view> 73 </view>
74 </view> 74 </view>
75 <view v-if="ifEmpty" class="emptyCart-box flex-items-plus flex-column"> 75 <view v-if="ifEmpty" class="emptyCart-box flex-items-plus flex-column">
76 - <image class="emptyCart-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 76 + <image class="emptyCart-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
77 <label class="font-color-999 fs26 mar-top-30">暂无售后记录~</label> 77 <label class="font-color-999 fs26 mar-top-30">暂无售后记录~</label>
78 </view> 78 </view>
79 </view> 79 </view>
ceres-uniapp-master/pages_category_page2/orderModule/refundDetails.vue
@@ -265,7 +265,7 @@ page { @@ -265,7 +265,7 @@ page {
265 .order-details-status { 265 .order-details-status {
266 width: 100%; 266 width: 100%;
267 height: 302upx; 267 height: 302upx;
268 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/refundBg.png") no-repeat left top; 268 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/refundBg.png") no-repeat left top;
269 background-size: contain; 269 background-size: contain;
270 } 270 }
271 271
ceres-uniapp-master/pages_category_page2/orderModule/returnDetails.vue
@@ -99,7 +99,7 @@ @@ -99,7 +99,7 @@
99 <view class="address-box" v-if='status == 10'> 99 <view class="address-box" v-if='status == 10'>
100 <view>商家已同意退货申请,请尽早发货。</view> 100 <view>商家已同意退货申请,请尽早发货。</view>
101 <view class="address-info"> 101 <view class="address-info">
102 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/expressSiteIcon.png" class="address-img"></image> 102 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/expressSiteIcon.png" class="address-img"></image>
103 <view class="address-info-r"> 103 <view class="address-info-r">
104 <view class="item"> 104 <view class="item">
105 <text><text class="title">收货人</text>:</text> 105 <text><text class="title">收货人</text>:</text>
ceres-uniapp-master/pages_category_page2/userModule/accountLogin.vue
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 <view class="iphoneNum-box flex-row-plus flex-items"> 12 <view class="iphoneNum-box flex-row-plus flex-items">
13 <view style="margin-right: 30rpx"> 13 <view style="margin-right: 30rpx">
14 <image class="loginIcon" 14 <image class="loginIcon"
15 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/phone.png"></image> 15 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/phone.png"></image>
16 </view> 16 </view>
17 <view> 17 <view>
18 <input v-model="loginQuery.account" placeholder-class="iphoneNum-input" type="number" maxlength='11' 18 <input v-model="loginQuery.account" placeholder-class="iphoneNum-input" type="number" maxlength='11'
@@ -23,7 +23,7 @@ @@ -23,7 +23,7 @@
23 <view class="code-box"> 23 <view class="code-box">
24 <view style="margin-right: 30rpx"> 24 <view style="margin-right: 30rpx">
25 <image class="loginIcon" 25 <image class="loginIcon"
26 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/code.png"></image> 26 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/code.png"></image>
27 </view> 27 </view>
28 <view> 28 <view>
29 <input v-model="loginQuery.code" :maxlength="6" placeholder-class="codeNum-input" 29 <input v-model="loginQuery.code" :maxlength="6" placeholder-class="codeNum-input"
ceres-uniapp-master/pages_category_page2/userModule/addAddress.vue
@@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
18 <!-- <city-select v-model="locationShowFalg" @city-change="cityChange"></city-select>--> 18 <!-- <city-select v-model="locationShowFalg" @city-change="cityChange"></city-select>-->
19 <u-picker-cere mode="region" v-model="locationShowFalg" @confirm="cityChange" :default-region='addressData.defaultRegion' title="所在地"></u-picker-cere> 19 <u-picker-cere mode="region" v-model="locationShowFalg" @confirm="cityChange" :default-region='addressData.defaultRegion' title="所在地"></u-picker-cere>
20 <text v-model="addressData.ssqText">{{addressData.ssqText}}</text> 20 <text v-model="addressData.ssqText">{{addressData.ssqText}}</text>
21 - <image class="arrow mar-left-20" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png"></image> 21 + <image class="arrow mar-left-20" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/greyArrow.png"></image>
22 </view> 22 </view>
23 </view> 23 </view>
24 <view class="detailAddress-box"> 24 <view class="detailAddress-box">
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 <view class="fs28 addressTag">地址标签</view> 30 <view class="fs28 addressTag">地址标签</view>
31 <view class="flex-items"> 31 <view class="flex-items">
32 <text v-model="tag">{{tag}}</text> 32 <text v-model="tag">{{tag}}</text>
33 - <image class="arrow mar-left-20" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png"></image> 33 + <image class="arrow mar-left-20" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/greyArrow.png"></image>
34 </view> 34 </view>
35 </view> 35 </view>
36 <view class="defaultState-box flex-row-plus flex-sp-between flex-items"> 36 <view class="defaultState-box flex-row-plus flex-sp-between flex-items">
ceres-uniapp-master/pages_category_page2/userModule/address.vue
@@ -20,14 +20,14 @@ @@ -20,14 +20,14 @@
20 </view> 20 </view>
21 </view> 21 </view>
22 <view v-else class="emptyAddress-box"> 22 <view v-else class="emptyAddress-box">
23 - <image class="emptyAddress" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//noAddress.png"></image> 23 + <image class="emptyAddress" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//noAddress.png"></image>
24 <text>你还没有添加地址哦~</text> 24 <text>你还没有添加地址哦~</text>
25 </view> 25 </view>
26 <!-- #ifdef MP-WEIXIN --> 26 <!-- #ifdef MP-WEIXIN -->
27 <view class="wxAddressNBox"> 27 <view class="wxAddressNBox">
28 <view class="flex-items btnBox flex-sp-between"> 28 <view class="flex-items btnBox flex-sp-between">
29 <!-- <view class="wxAddress btn flex-items flex-center" @click="wxAddFn"> 29 <!-- <view class="wxAddress btn flex-items flex-center" @click="wxAddFn">
30 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/weixin2x.png"></image> 30 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/weixin2x.png"></image>
31 <text>微信导入</text> 31 <text>微信导入</text>
32 </view> --> 32 </view> -->
33 <view class="addAddressBtn btn" @click="addAddressClick">添加新地址</view> 33 <view class="addAddressBtn btn" @click="addAddressClick">添加新地址</view>
@@ -341,7 +341,7 @@ @@ -341,7 +341,7 @@
341 width: 50rpx; 341 width: 50rpx;
342 height: 50rpx; 342 height: 50rpx;
343 display: block; 343 display: block;
344 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addEdit.png") no-repeat center center; 344 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addEdit.png") no-repeat center center;
345 background-size: contain; 345 background-size: contain;
346 } 346 }
347 } 347 }
ceres-uniapp-master/pages_category_page2/userModule/bankcard.vue
@@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
17 </view> 17 </view>
18 </view> 18 </view>
19 <view v-if="ifEmpty" class="emptyBankcard-box"> 19 <view v-if="ifEmpty" class="emptyBankcard-box">
20 - <image class="emptyBankcard" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 20 + <image class="emptyBankcard" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
21 <label>你还没有添加银行卡哦~</label> 21 <label>你还没有添加银行卡哦~</label>
22 </view> 22 </view>
23 <view class="addBankcard-box"> 23 <view class="addBankcard-box">
@@ -116,7 +116,7 @@ @@ -116,7 +116,7 @@
116 <style lang="scss"> 116 <style lang="scss">
117 .container{ 117 .container{
118 .bankcardList { 118 .bankcardList {
119 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/addBankBg.png") no-repeat left top; 119 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/addBankBg.png") no-repeat left top;
120 background-size: contain; 120 background-size: contain;
121 display: block; 121 display: block;
122 padding-bottom: 85px; 122 padding-bottom: 85px;
@@ -158,7 +158,7 @@ @@ -158,7 +158,7 @@
158 .bankcard-detail { 158 .bankcard-detail {
159 width: 100%; 159 width: 100%;
160 height: 334rpx; 160 height: 334rpx;
161 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/accountBg.png") no-repeat left top; 161 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/accountBg.png") no-repeat left top;
162 background-size: contain; 162 background-size: contain;
163 border-radius: 18rpx; 163 border-radius: 18rpx;
164 .bankname { 164 .bankname {
ceres-uniapp-master/pages_category_page2/userModule/bindPhone.vue
@@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
19 <view class="phoneVerify" v-if="verifyType == 1"> 19 <view class="phoneVerify" v-if="verifyType == 1">
20 <view class="iphoneNum-box flex-row-plus flex-items"> 20 <view class="iphoneNum-box flex-row-plus flex-items">
21 <view style="margin-right: 30rpx"> 21 <view style="margin-right: 30rpx">
22 - <image class="loginIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/phone.png"></image> 22 + <image class="loginIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/phone.png"></image>
23 </view> 23 </view>
24 <view> 24 <view>
25 <input v-model="phone" placeholder-class="iphoneNum-input" type="number" placeholder="请输入您的手机号" /> 25 <input v-model="phone" placeholder-class="iphoneNum-input" type="number" placeholder="请输入您的手机号" />
@@ -28,7 +28,7 @@ @@ -28,7 +28,7 @@
28 <view class="flex-row-plus mar-top-20"> 28 <view class="flex-row-plus mar-top-20">
29 <view class="code-box"> 29 <view class="code-box">
30 <view style="margin-right: 30rpx"> 30 <view style="margin-right: 30rpx">
31 - <image class="loginIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/code.png"></image> 31 + <image class="loginIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/code.png"></image>
32 </view> 32 </view>
33 <view> 33 <view>
34 <input v-model="code" placeholder-class="codeNum-input" placeholder="请输入验证码" /> 34 <input v-model="code" placeholder-class="codeNum-input" placeholder="请输入验证码" />
ceres-uniapp-master/pages_category_page2/userModule/collection.vue
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
11 <view class="wid function-box"> 11 <view class="wid function-box">
12 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> 12 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view>
13 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick"> 13 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick">
14 - <image class="editicon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectionEditicon.png"> 14 + <image class="editicon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectionEditicon.png">
15 </image> 15 </image>
16 <text class="mar-left-10">编辑</text> 16 <text class="mar-left-10">编辑</text>
17 </view> 17 </view>
@@ -27,10 +27,10 @@ @@ -27,10 +27,10 @@
27 <view class="flex-items selctBtn" v-show="allCheckShow"> 27 <view class="flex-items selctBtn" v-show="allCheckShow">
28 <image mode="aspectFill" v-if="item.selected == 1" 28 <image mode="aspectFill" v-if="item.selected == 1"
29 @click.stop="productItemSel(index,0)" 29 @click.stop="productItemSel(index,0)"
30 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 30 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
31 class="cart-select-img"></image> 31 class="cart-select-img"></image>
32 <image mode="aspectFill" v-else @click.stop="productItemSel(index,1)" 32 <image mode="aspectFill" v-else @click.stop="productItemSel(index,1)"
33 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 33 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
34 class="cart-select-img"></image> 34 class="cart-select-img"></image>
35 </view> 35 </view>
36 <view class="infoCent flex-items"> 36 <view class="infoCent flex-items">
@@ -42,13 +42,13 @@ @@ -42,13 +42,13 @@
42 <view class="flex-items"> 42 <view class="flex-items">
43 <!-- <image v-if="item.activityType" class="iconImg mar-right-10" 43 <!-- <image v-if="item.activityType" class="iconImg mar-right-10"
44 :src="imgs[item.activityType]"></image> --> 44 :src="imgs[item.activityType]"></image> -->
45 - <image v-if="item.activityType===1" class="iconImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png" alt="拼团icon"></image>  
46 - <image v-if="item.activityType === 2" class="iconImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" alt="秒杀活动"></image>  
47 - <image v-if="item.activityType === 3" class="iconImg discountIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/38184785db4b4fbca767ada611097ae9_discount.png" alt="限时折扣活动"></image>  
48 - <image v-if="item.activityType === 4" class="iconImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" alt="平台秒杀"></image>  
49 - <image v-if="item.activityType===5" class="iconImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png" alt="平台折扣"></image>  
50 - <image v-if="item.activityType===9" class="iconImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png" alt="会员价"></image>  
51 - <image v-if="item.activityType === 8" class="iconImg" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png" alt="场景营销"></image> 45 + <image v-if="item.activityType===1" class="iconImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png" alt="拼团icon"></image>
  46 + <image v-if="item.activityType === 2" class="iconImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png" alt="秒杀活动"></image>
  47 + <image v-if="item.activityType === 3" class="iconImg discountIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/38184785db4b4fbca767ada611097ae9_discount.png" alt="限时折扣活动"></image>
  48 + <image v-if="item.activityType === 4" class="iconImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png" alt="平台秒杀"></image>
  49 + <image v-if="item.activityType===5" class="iconImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png" alt="平台折扣"></image>
  50 + <image v-if="item.activityType===9" class="iconImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png" alt="会员价"></image>
  51 + <image v-if="item.activityType === 8" class="iconImg" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png" alt="场景营销"></image>
52 <text class="fs40 font-color-C83732">¥</text> 52 <text class="fs40 font-color-C83732">¥</text>
53 <text class="fs40 font-color-C83732 mar-right-20">{{item.price}}</text> 53 <text class="fs40 font-color-C83732 mar-right-20">{{item.price}}</text>
54 <text 54 <text
@@ -65,9 +65,9 @@ @@ -65,9 +65,9 @@
65 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> 65 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items">
66 <view class="left"> 66 <view class="left">
67 <image mode="aspectFill" v-if="isAllProCheck" 67 <image mode="aspectFill" v-if="isAllProCheck"
68 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" class="cart-select-img" 68 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png" class="cart-select-img"
69 @click="allProductSel(0)"></image> 69 @click="allProductSel(0)"></image>
70 - <image mode="aspectFill" v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 70 + <image mode="aspectFill" v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
71 class="cart-select-img" @click="allProductSel(1)"></image> 71 class="cart-select-img" @click="allProductSel(1)"></image>
72 <text>全选</text> 72 <text>全选</text>
73 </view> 73 </view>
@@ -78,7 +78,7 @@ @@ -78,7 +78,7 @@
78 <view v-if="allCheckShow" class="pad-bot-140"></view> 78 <view v-if="allCheckShow" class="pad-bot-140"></view>
79 </view> 79 </view>
80 <view v-if="productCollect.length==0&&proCollectShow" class="mar-top-60 empty-box"> 80 <view v-if="productCollect.length==0&&proCollectShow" class="mar-top-60 empty-box">
81 - <image class="collect-empty" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectEmpty.png"></image> 81 + <image class="collect-empty" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectEmpty.png"></image>
82 <view class="tohome-box flex-items-plus">暂无收藏</view> 82 <view class="tohome-box flex-items-plus">暂无收藏</view>
83 </view> 83 </view>
84 </view> 84 </view>
@@ -86,7 +86,7 @@ @@ -86,7 +86,7 @@
86 <view v-if="storeCollect.length>0"> 86 <view v-if="storeCollect.length>0">
87 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> 87 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view>
88 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick"> 88 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick">
89 - <image class="editicon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectionEditicon.png"> 89 + <image class="editicon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectionEditicon.png">
90 </image> 90 </image>
91 <text class="mar-left-10">编辑</text> 91 <text class="mar-left-10">编辑</text>
92 </view> 92 </view>
@@ -98,10 +98,10 @@ @@ -98,10 +98,10 @@
98 <view v-show="allCheckShow" class="selctBtn flex-items"> 98 <view v-show="allCheckShow" class="selctBtn flex-items">
99 <image mode="aspectFill" v-if="item.selected == 1" 99 <image mode="aspectFill" v-if="item.selected == 1"
100 @click.stop="storeItemSel(index,0)" 100 @click.stop="storeItemSel(index,0)"
101 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 101 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
102 class="cart-select-img"></image> 102 class="cart-select-img"></image>
103 <image mode="aspectFill" v-else @click.stop="storeItemSel(index,1)" 103 <image mode="aspectFill" v-else @click.stop="storeItemSel(index,1)"
104 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 104 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
105 class="cart-select-img"></image> 105 class="cart-select-img"></image>
106 </view> 106 </view>
107 <view class="infoCent"> 107 <view class="infoCent">
@@ -116,7 +116,7 @@ @@ -116,7 +116,7 @@
116 </view> 116 </view>
117 <view class="toStore flex-items-plus fs24" @click="toStoreClick(item.shopId)"> 117 <view class="toStore flex-items-plus fs24" @click="toStoreClick(item.shopId)">
118 进入店铺 118 进入店铺
119 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowR.png"></image> 119 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowR.png"></image>
120 </view> 120 </view>
121 </view> 121 </view>
122 <view class="shopImgBox" v-if="item.productList.length>0"> 122 <view class="shopImgBox" v-if="item.productList.length>0">
@@ -134,9 +134,9 @@ @@ -134,9 +134,9 @@
134 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> 134 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items">
135 <view class="left"> 135 <view class="left">
136 <image mode="aspectFill" v-if="isAllStoreCheck" 136 <image mode="aspectFill" v-if="isAllStoreCheck"
137 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" class="cart-select-img" 137 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png" class="cart-select-img"
138 @click="allStoreSel(0)"></image> 138 @click="allStoreSel(0)"></image>
139 - <image mode="aspectFill" v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 139 + <image mode="aspectFill" v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
140 class="cart-select-img" @click="allStoreSel(1)"></image> 140 class="cart-select-img" @click="allStoreSel(1)"></image>
141 <text>全选</text> 141 <text>全选</text>
142 </view> 142 </view>
@@ -147,7 +147,7 @@ @@ -147,7 +147,7 @@
147 <view v-if="allCheckShow" class="pad-bot-140"></view> 147 <view v-if="allCheckShow" class="pad-bot-140"></view>
148 </view> 148 </view>
149 <view v-if="storeCollect.length==0&&storeCollectShow" class="mar-top-60 empty-box"> 149 <view v-if="storeCollect.length==0&&storeCollectShow" class="mar-top-60 empty-box">
150 - <image class="collect-empty" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectEmpty.png"></image> 150 + <image class="collect-empty" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectEmpty.png"></image>
151 <view class="tohome-box flex-items-plus">暂无收藏</view> 151 <view class="tohome-box flex-items-plus">暂无收藏</view>
152 </view> 152 </view>
153 </view> 153 </view>
@@ -170,7 +170,7 @@ @@ -170,7 +170,7 @@
170 </view> 170 </view>
171 </view> 171 </view>
172 <view v-if="cardModal" @click="cardModal = false" class="cancelDel"> 172 <view v-if="cardModal" @click="cardModal = false" class="cancelDel">
173 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/cancelClose.png" mode=""></image> 173 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/cancelClose.png" mode=""></image>
174 </view> 174 </view>
175 </tui-modal> 175 </tui-modal>
176 </view> 176 </view>
@@ -187,11 +187,11 @@ @@ -187,11 +187,11 @@
187 data() { 187 data() {
188 return { 188 return {
189 imgs: [ 189 imgs: [
190 - 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png',  
191 - 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png',  
192 - 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png',  
193 - 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png',  
194 - 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png', 190 + 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png',
  191 + 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png',
  192 + 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png',
  193 + 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png',
  194 + 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png',
195 ], 195 ],
196 collectionTypeList: [{ 196 collectionTypeList: [{
197 name: '商品' 197 name: '商品'
@@ -821,7 +821,7 @@ @@ -821,7 +821,7 @@
821 width: 60rpx; 821 width: 60rpx;
822 height: 60rpx; 822 height: 60rpx;
823 display: block; 823 display: block;
824 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/delIcon.png") no-repeat center center; 824 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/delIcon.png") no-repeat center center;
825 background-size: contain; 825 background-size: contain;
826 } 826 }
827 </style> 827 </style>
ceres-uniapp-master/pages_category_page2/userModule/coupon.vue
@@ -18,13 +18,13 @@ @@ -18,13 +18,13 @@
18 </view> 18 </view>
19 </view> 19 </view>
20 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column"> 20 <view v-if="ifEmpty" class="emptyOrder-box flex-items-plus flex-column">
21 - <image class="emptyOrder-img" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 21 + <image class="emptyOrder-img" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
22 <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label> 22 <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label>
23 </view> 23 </view>
24 </view> 24 </view>
25 <!-- 触底 --> 25 <!-- 触底 -->
26 <view class="reachBottom" v-if="topLeft > 400 && list.length > 0"> 26 <view class="reachBottom" v-if="topLeft > 400 && list.length > 0">
27 - <image class="reach-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//reachBottom.png" mode="widthFix"></image> 27 + <image class="reach-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//reachBottom.png" mode="widthFix"></image>
28 <text class="reach-text">这里到底了哦~~</text> 28 <text class="reach-text">这里到底了哦~~</text>
29 </view> 29 </view>
30 </view> 30 </view>
@@ -103,7 +103,7 @@ @@ -103,7 +103,7 @@
103 .item { 103 .item {
104 width: 50%; 104 width: 50%;
105 height: 291rpx; 105 height: 291rpx;
106 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/couponsIcon.png") no-repeat center top; 106 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/couponsIcon.png") no-repeat center top;
107 border-radius: 10rpx; 107 border-radius: 10rpx;
108 margin-top: 20rpx; 108 margin-top: 20rpx;
109 display: flex; 109 display: flex;
ceres-uniapp-master/pages_category_page2/userModule/footprintList.vue
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
11 <view class="wid function-box"> 11 <view class="wid function-box">
12 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> 12 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view>
13 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick"> 13 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick">
14 - <image class="editicon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectionEditicon.png"></image> 14 + <image class="editicon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectionEditicon.png"></image>
15 <label class="mar-left-10">编辑</label> 15 <label class="mar-left-10">编辑</label>
16 </view> 16 </view>
17 </view> 17 </view>
@@ -25,21 +25,21 @@ @@ -25,21 +25,21 @@
25 <view class="itemBox"> 25 <view class="itemBox">
26 <view @click.stop="toGoodsDetails(item.productId,item.shopId,item.skuId)" class="item wid flex-display"> 26 <view @click.stop="toGoodsDetails(item.productId,item.shopId,item.skuId)" class="item wid flex-display">
27 <view v-if="allCheckShow" class="selectIconBox"> 27 <view v-if="allCheckShow" class="selectIconBox">
28 - <image v-if="item.selected == 1" @click.stop="footItemSel(index,findex,0)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" class="cart-select-img"></image>  
29 - <image v-else @click.stop="footItemSel(index,findex,1)" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" class="cart-select-img"></image> 28 + <image v-if="item.selected == 1" @click.stop="footItemSel(index,findex,0)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png" class="cart-select-img"></image>
  29 + <image v-else @click.stop="footItemSel(index,findex,1)" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png" class="cart-select-img"></image>
30 </view> 30 </view>
31 <image class="product-img default-img" mode="aspectFill" :src="$baseURL+item.image" /> 31 <image class="product-img default-img" mode="aspectFill" :src="$baseURL+item.image" />
32 <!-- 此层wrap在此为必写的,否则可能会出现标题定位错误 --> 32 <!-- 此层wrap在此为必写的,否则可能会出现标题定位错误 -->
33 <view class="title-wrap mar-left-20"> 33 <view class="title-wrap mar-left-20">
34 <text class="title u-line-2 fs28">{{ item.productName }}</text> 34 <text class="title u-line-2 fs28">{{ item.productName }}</text>
35 <view class="flex-items"> 35 <view class="flex-items">
36 - <image v-if="item.activityType===1" class="iconType" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/groupBuyIcon.png" alt="拼团icon"></image>  
37 - <image v-if="item.activityType === 2" class="iconType" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" alt="秒杀活动"></image>  
38 - <image v-if="item.activityType === 3" class="iconType discountIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/38184785db4b4fbca767ada611097ae9_discount.png" alt="限时折扣活动"></image>  
39 - <image v-if="item.activityType === 4" class="iconType" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/spikeIcon.png" alt="平台秒杀"></image>  
40 - <image v-if="item.activityType===5" class="iconType" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/discountListIcon.png" alt="平台折扣"></image>  
41 - <image v-if="item.activityType===9" class="iconType" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/memberCenterIcon.png" alt="会员价"></image>  
42 - <image v-if="item.activityType === 8" class="iconType" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/zhekou.png" alt="场景营销"></image> 36 + <image v-if="item.activityType===1" class="iconType" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/groupBuyIcon.png" alt="拼团icon"></image>
  37 + <image v-if="item.activityType === 2" class="iconType" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png" alt="秒杀活动"></image>
  38 + <image v-if="item.activityType === 3" class="iconType discountIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/38184785db4b4fbca767ada611097ae9_discount.png" alt="限时折扣活动"></image>
  39 + <image v-if="item.activityType === 4" class="iconType" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/spikeIcon.png" alt="平台秒杀"></image>
  40 + <image v-if="item.activityType===5" class="iconType" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/discountListIcon.png" alt="平台折扣"></image>
  41 + <image v-if="item.activityType===9" class="iconType" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/memberCenterIcon.png" alt="会员价"></image>
  42 + <image v-if="item.activityType === 8" class="iconType" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/zhekou.png" alt="场景营销"></image>
43 <label class="fs40 mar-right-20 font-color-C83732">¥{{ item.price }}</label> 43 <label class="fs40 mar-right-20 font-color-C83732">¥{{ item.price }}</label>
44 <label class="font-color-CCC discountsPriceLine fs24">¥{{ item.originalPrice }}</label> 44 <label class="font-color-CCC discountsPriceLine fs24">¥{{ item.originalPrice }}</label>
45 </view> 45 </view>
@@ -51,8 +51,8 @@ @@ -51,8 +51,8 @@
51 </view> 51 </view>
52 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> 52 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items">
53 <view class="left"> 53 <view class="left">
54 - <image v-if="isAllCheck" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" class="cart-select-img" @click="allSel(0)"></image>  
55 - <image v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" class="cart-select-img" @click="allSel(1)"></image> 54 + <image v-if="isAllCheck" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png" class="cart-select-img" @click="allSel(0)"></image>
  55 + <image v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png" class="cart-select-img" @click="allSel(1)"></image>
56 <text>全选</text> 56 <text>全选</text>
57 </view> 57 </view>
58 <view class="right"> 58 <view class="right">
@@ -62,7 +62,7 @@ @@ -62,7 +62,7 @@
62 <view v-if="allCheckShow" class="pad-bot-140"></view> 62 <view v-if="allCheckShow" class="pad-bot-140"></view>
63 </view> 63 </view>
64 <view v-else class="mar-top-100 empty-box" @click="goToIndex"> 64 <view v-else class="mar-top-100 empty-box" @click="goToIndex">
65 - <image class="footprint-empty" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/dkyaemtmfwfxbvtuyyhi.png"></image> 65 + <image class="footprint-empty" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/dkyaemtmfwfxbvtuyyhi.png"></image>
66 <view class="tohome-box flex-items-plus">去首页逛逛</view> 66 <view class="tohome-box flex-items-plus">去首页逛逛</view>
67 </view> 67 </view>
68 68
@@ -78,7 +78,7 @@ @@ -78,7 +78,7 @@
78 <view class="btn submit" @click="footprintDel">确定</view> 78 <view class="btn submit" @click="footprintDel">确定</view>
79 </view> 79 </view>
80 <view v-if="cardModal" @click="cardModal = false" class="cancelDel"> 80 <view v-if="cardModal" @click="cardModal = false" class="cancelDel">
81 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/cancelClose.png" mode=""></image> 81 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/cancelClose.png" mode=""></image>
82 </view> 82 </view>
83 </tui-modal> 83 </tui-modal>
84 </view> 84 </view>
@@ -497,7 +497,7 @@ page { @@ -497,7 +497,7 @@ page {
497 width: 60rpx; 497 width: 60rpx;
498 height: 60rpx; 498 height: 60rpx;
499 display: block; 499 display: block;
500 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/delIcon.png") no-repeat center center; 500 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/delIcon.png") no-repeat center center;
501 background-size: contain; 501 background-size: contain;
502 } 502 }
503 </style> 503 </style>
ceres-uniapp-master/pages_category_page2/userModule/login.vue
@@ -43,7 +43,7 @@ @@ -43,7 +43,7 @@
43 <!-- <view class="iphoneNum-box flex-row-plus flex-items"> 43 <!-- <view class="iphoneNum-box flex-row-plus flex-items">
44 <view style="margin-right: 30rpx"> 44 <view style="margin-right: 30rpx">
45 <image class="loginIcon" 45 <image class="loginIcon"
46 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/phone.png"></image> 46 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/phone.png"></image>
47 </view> 47 </view>
48 <view> 48 <view>
49 <input v-model="loginQuery.account" placeholder-class="iphoneNum-input" type="number" maxlength='11' 49 <input v-model="loginQuery.account" placeholder-class="iphoneNum-input" type="number" maxlength='11'
@@ -54,7 +54,7 @@ @@ -54,7 +54,7 @@
54 <view class="code-box"> 54 <view class="code-box">
55 <view style="margin-right: 30rpx"> 55 <view style="margin-right: 30rpx">
56 <image class="loginIcon" 56 <image class="loginIcon"
57 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/code.png"> 57 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/code.png">
58 </image> 58 </image>
59 </view> 59 </view>
60 <view> 60 <view>
ceres-uniapp-master/pages_category_page2/userModule/memberAccount.vue
@@ -14,9 +14,9 @@ @@ -14,9 +14,9 @@
14 </view> 14 </view>
15 <view class="balance-operation"> 15 <view class="balance-operation">
16 <view class="item-btn" @click="memberAccountWithdraw"> 16 <view class="item-btn" @click="memberAccountWithdraw">
17 - <image class="item-btn-icon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/withdraw.png" mode="widthFix"></image> 17 + <image class="item-btn-icon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/withdraw.png" mode="widthFix"></image>
18 <view class="item-btn-text">提现</view> 18 <view class="item-btn-text">提现</view>
19 - <image class="item-btn-right" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/greyArrow.png" mode="widthFix"></image> 19 + <image class="item-btn-right" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/greyArrow.png" mode="widthFix"></image>
20 </view> 20 </view>
21 </view> 21 </view>
22 </view> 22 </view>
@@ -94,14 +94,14 @@ page { @@ -94,14 +94,14 @@ page {
94 .balance{ 94 .balance{
95 display: block; 95 display: block;
96 height: 400rpx; 96 height: 400rpx;
97 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/bankBg.png") no-repeat left top; 97 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/bankBg.png") no-repeat left top;
98 background-size: cover; 98 background-size: cover;
99 text-align:center; 99 text-align:center;
100 padding: 100rpx 20rpx 0 20rpx; 100 padding: 100rpx 20rpx 0 20rpx;
101 } 101 }
102 .balanceInfo { 102 .balanceInfo {
103 width: 712rpx; 103 width: 712rpx;
104 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/accountBg.png") no-repeat left top; 104 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/accountBg.png") no-repeat left top;
105 height: 342rpx; 105 height: 342rpx;
106 background-size: cover; 106 background-size: cover;
107 margin: -300rpx auto 0 auto; 107 margin: -300rpx auto 0 auto;
ceres-uniapp-master/pages_category_page2/userModule/messageCenter.vue
@@ -17,14 +17,14 @@ @@ -17,14 +17,14 @@
17 <view class="messageType"> 17 <view class="messageType">
18 <view v-if="item.noticeType == 1" class="messageTypeL"> 18 <view v-if="item.noticeType == 1" class="messageTypeL">
19 <view class="iconBox"> 19 <view class="iconBox">
20 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/notice.png" alt=""></image> 20 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/notice.png" alt=""></image>
21 <view class="redBox" v-if="item.ifRead ===0"></view> 21 <view class="redBox" v-if="item.ifRead ===0"></view>
22 </view> 22 </view>
23 <span>订单消息</span> 23 <span>订单消息</span>
24 </view> 24 </view>
25 <view v-else class="messageTypeL"> 25 <view v-else class="messageTypeL">
26 <view class="iconBox"> 26 <view class="iconBox">
27 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/notice.png" alt=""></image> 27 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/notice.png" alt=""></image>
28 </view> 28 </view>
29 <span>系统公告</span> 29 <span>系统公告</span>
30 </view> 30 </view>
@@ -42,7 +42,7 @@ @@ -42,7 +42,7 @@
42 </u-swipe-action> 42 </u-swipe-action>
43 </view> 43 </view>
44 <view v-if="ifEmpty" class="empty-box"> 44 <view v-if="ifEmpty" class="empty-box">
45 - <image class="question-empty" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 45 + <image class="question-empty" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
46 <view class="tohome-box flex-items-plus">暂无消息</view> 46 <view class="tohome-box flex-items-plus">暂无消息</view>
47 </view> 47 </view>
48 </view> 48 </view>
@@ -371,7 +371,7 @@ @@ -371,7 +371,7 @@
371 display: block; 371 display: block;
372 width: 28upx; 372 width: 28upx;
373 height: 28upx; 373 height: 28upx;
374 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/arrowRight.png") no-repeat center center; 374 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/arrowRight.png") no-repeat center center;
375 background-size: contain; 375 background-size: contain;
376 } 376 }
377 } 377 }
ceres-uniapp-master/pages_category_page2/userModule/personalDetails.vue
@@ -7,11 +7,11 @@ @@ -7,11 +7,11 @@
7 <label>头像</label> 7 <label>头像</label>
8 <image 8 <image
9 class="user-headImg" 9 class="user-headImg"
10 - :src="$baseURL+item.headImage || 'https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/morentouxiang.png'" 10 + :src="$baseURL+item.headImage || 'https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/morentouxiang.png'"
11 @click="userHeadTap" 11 @click="userHeadTap"
12 ></image> 12 ></image>
13 <!-- <image class="user-headImg" v-if="item.headImage" :src="item.headImage"></image> 13 <!-- <image class="user-headImg" v-if="item.headImage" :src="item.headImage"></image>
14 - <image class="user-headImg" v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/morentouxiang.png"> 14 + <image class="user-headImg" v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/morentouxiang.png">
15 </image> --> 15 </image> -->
16 </view> 16 </view>
17 </view> 17 </view>
ceres-uniapp-master/pages_category_page2/userModule/questionList.vue
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
11 <view class="wid function-box"> 11 <view class="wid function-box">
12 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> 12 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view>
13 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick"> 13 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick">
14 - <image class="editicon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectionEditicon.png"> 14 + <image class="editicon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectionEditicon.png">
15 </image> 15 </image>
16 <text class="mar-left-10">管理</text> 16 <text class="mar-left-10">管理</text>
17 </view> 17 </view>
@@ -25,10 +25,10 @@ @@ -25,10 +25,10 @@
25 <view v-show="allCheckShow"> 25 <view v-show="allCheckShow">
26 <image mode="aspectFill" v-if="item.selected == 1" 26 <image mode="aspectFill" v-if="item.selected == 1"
27 @click.stop="problemItemSel(index,0)" 27 @click.stop="problemItemSel(index,0)"
28 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 28 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
29 class="cart-select-img"></image> 29 class="cart-select-img"></image>
30 <image mode="aspectFill" v-else @click.stop="problemItemSel(index,1)" 30 <image mode="aspectFill" v-else @click.stop="problemItemSel(index,1)"
31 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 31 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
32 class="cart-select-img"></image> 32 class="cart-select-img"></image>
33 </view> 33 </view>
34 <!-- <image class="product-img" mode="aspectFill" :src="item.image" />--> 34 <!-- <image class="product-img" mode="aspectFill" :src="item.image" />-->
@@ -52,9 +52,9 @@ @@ -52,9 +52,9 @@
52 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> 52 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items">
53 <view class="left"> 53 <view class="left">
54 <image mode="aspectFill" v-if="isAllProblemCheck" 54 <image mode="aspectFill" v-if="isAllProblemCheck"
55 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" class="cart-select-img" 55 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png" class="cart-select-img"
56 @click="allProblemSel(0)"></image> 56 @click="allProblemSel(0)"></image>
57 - <image mode="aspectFill" v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 57 + <image mode="aspectFill" v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
58 class="cart-select-img" @click="allProblemSel(1)"></image> 58 class="cart-select-img" @click="allProblemSel(1)"></image>
59 <text>全选</text> 59 <text>全选</text>
60 </view> 60 </view>
@@ -65,7 +65,7 @@ @@ -65,7 +65,7 @@
65 <view v-if="allCheckShow" class="pad-bot-140"></view> 65 <view v-if="allCheckShow" class="pad-bot-140"></view>
66 </view> 66 </view>
67 <view v-if="ifEmpty" class="empty-box"> 67 <view v-if="ifEmpty" class="empty-box">
68 - <image class="question-empty" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 68 + <image class="question-empty" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
69 <view class="tohome-box flex-items-plus">暂无提问内容</view> 69 <view class="tohome-box flex-items-plus">暂无提问内容</view>
70 </view> 70 </view>
71 </view> 71 </view>
@@ -73,7 +73,7 @@ @@ -73,7 +73,7 @@
73 <view v-if="answerList.length > 0"> 73 <view v-if="answerList.length > 0">
74 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> 74 <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view>
75 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick"> 75 <view v-else class="flex-row-plus editicon-box flex-items fs28" @click="editClick">
76 - <image class="editicon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/collectionEditicon.png"> 76 + <image class="editicon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/collectionEditicon.png">
77 </image> 77 </image>
78 <text class="mar-left-10">编辑</text> 78 <text class="mar-left-10">编辑</text>
79 </view> 79 </view>
@@ -87,10 +87,10 @@ @@ -87,10 +87,10 @@
87 <view v-show="allCheckShow"> 87 <view v-show="allCheckShow">
88 <image mode="aspectFill" v-if="item.selected == 1" 88 <image mode="aspectFill" v-if="item.selected == 1"
89 @click.stop="answerItemSel(index,0)" 89 @click.stop="answerItemSel(index,0)"
90 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" 90 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png"
91 class="cart-select-img"></image> 91 class="cart-select-img"></image>
92 <image mode="aspectFill" v-else @click.stop="answerItemSel(index,1)" 92 <image mode="aspectFill" v-else @click.stop="answerItemSel(index,1)"
93 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 93 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
94 class="cart-select-img"></image> 94 class="cart-select-img"></image>
95 </view> 95 </view>
96 <!-- <image class="product-img" mode="aspectFill" :src="item.image" />--> 96 <!-- <image class="product-img" mode="aspectFill" :src="item.image" />-->
@@ -112,7 +112,7 @@ @@ -112,7 +112,7 @@
112 <view class="qAarrow mar-top-30 flex-items"> 112 <view class="qAarrow mar-top-30 flex-items">
113 <text class="fs24 font-color-C5AA7B">共{{item.count}}个回答</text> 113 <text class="fs24 font-color-C5AA7B">共{{item.count}}个回答</text>
114 <image class="item-btn-right" 114 <image class="item-btn-right"
115 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png" 115 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"
116 mode="widthFix"></image> 116 mode="widthFix"></image>
117 </view> 117 </view>
118 </view> 118 </view>
@@ -126,9 +126,9 @@ @@ -126,9 +126,9 @@
126 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> 126 <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items">
127 <view class="left"> 127 <view class="left">
128 <image mode="aspectFill" v-if="isAllAnswerCheck" 128 <image mode="aspectFill" v-if="isAllAnswerCheck"
129 - src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectActive.png" class="cart-select-img" 129 + src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectActive.png" class="cart-select-img"
130 @click="allAnswerSel(0)"></image> 130 @click="allAnswerSel(0)"></image>
131 - <image mode="aspectFill" v-else src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/selectEmpty.png" 131 + <image mode="aspectFill" v-else src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/selectEmpty.png"
132 class="cart-select-img" @click="allAnswerSel(1)"></image> 132 class="cart-select-img" @click="allAnswerSel(1)"></image>
133 <text>全选</text> 133 <text>全选</text>
134 </view> 134 </view>
@@ -139,7 +139,7 @@ @@ -139,7 +139,7 @@
139 <view v-if="allCheckShow" class="pad-bot-140"></view> 139 <view v-if="allCheckShow" class="pad-bot-140"></view>
140 </view> 140 </view>
141 <view v-if="ifEmpty" class="empty-box"> 141 <view v-if="ifEmpty" class="empty-box">
142 - <image class="question-empty" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//bgnull.png"></image> 142 + <image class="question-empty" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//bgnull.png"></image>
143 <view class="tohome-box flex-items-plus">暂无问答内容</view> 143 <view class="tohome-box flex-items-plus">暂无问答内容</view>
144 </view> 144 </view>
145 </view> 145 </view>
@@ -158,7 +158,7 @@ @@ -158,7 +158,7 @@
158 </view> 158 </view>
159 </view> 159 </view>
160 <view @click="cancelClick" class="cancelDel"> 160 <view @click="cancelClick" class="cancelDel">
161 - <image src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/cancelClose.png" mode=""></image> 161 + <image src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/cancelClose.png" mode=""></image>
162 </view> 162 </view>
163 </tui-modal> 163 </tui-modal>
164 </view> 164 </view>
@@ -756,7 +756,7 @@ @@ -756,7 +756,7 @@
756 width: 60rpx; 756 width: 60rpx;
757 height: 60rpx; 757 height: 60rpx;
758 display: block; 758 display: block;
759 - background: url("https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/delIcon.png") no-repeat center center; 759 + background: url("https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/delIcon.png") no-repeat center center;
760 background-size: contain; 760 background-size: contain;
761 } 761 }
762 762
ceres-uniapp-master/pages_category_page2/userModule/register.vue
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 <view> 9 <view>
10 <view class="iphoneNum-box flex-row-plus flex-items"> 10 <view class="iphoneNum-box flex-row-plus flex-items">
11 <view> 11 <view>
12 - <image class="loginIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/phone.png"></image> 12 + <image class="loginIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/phone.png"></image>
13 </view> 13 </view>
14 <view style="margin-left: 40rpx;"> 14 <view style="margin-left: 40rpx;">
15 <input v-model="phone" class="iphoneNum-inputbox" placeholder-class="iphoneNum-input" type="number" 15 <input v-model="phone" class="iphoneNum-inputbox" placeholder-class="iphoneNum-input" type="number"
@@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
19 <view class="flex-row-plus"> 19 <view class="flex-row-plus">
20 <view class="code-box"> 20 <view class="code-box">
21 <view> 21 <view>
22 - <image class="loginIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/code.png"></image> 22 + <image class="loginIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/code.png"></image>
23 </view> 23 </view>
24 <view style="margin-left: 40rpx;"> 24 <view style="margin-left: 40rpx;">
25 <input v-model="RegisterQuery.code" :maxlength="4" class="codeNum-inputbox" placeholder-class="codeNum-input" 25 <input v-model="RegisterQuery.code" :maxlength="4" class="codeNum-inputbox" placeholder-class="codeNum-input"
ceres-uniapp-master/pages_category_page2/userModule/unsubscribeCode.vue
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 </view> 7 </view>
8 <view class="iphoneNum-box flex-row-plus flex-items"> 8 <view class="iphoneNum-box flex-row-plus flex-items">
9 <view style="margin-right: 30rpx"> 9 <view style="margin-right: 30rpx">
10 - <image class="loginIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/phone.png"></image> 10 + <image class="loginIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/phone.png"></image>
11 </view> 11 </view>
12 <view> 12 <view>
13 <input v-model="userInfo.phone" placeholder-class="iphoneNum-input" type="number" disabled 13 <input v-model="userInfo.phone" placeholder-class="iphoneNum-input" type="number" disabled
@@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
17 <view class="flex-row-plus mar-top-20"> 17 <view class="flex-row-plus mar-top-20">
18 <view class="code-box"> 18 <view class="code-box">
19 <view style="margin-right: 30rpx"> 19 <view style="margin-right: 30rpx">
20 - <image class="loginIcon" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/images/code.png"></image> 20 + <image class="loginIcon" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/images/code.png"></image>
21 </view> 21 </view>
22 <view> 22 <view>
23 <input v-model="code" placeholder-class="codeNum-input" placeholder="请输入验证码" /> 23 <input v-model="code" placeholder-class="codeNum-input" placeholder="请输入验证码" />
ceres-uniapp-master/pages_category_page2/userModule/withdraw.vue
@@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
8 <view class="fs28 addressTag">银行卡</view> 8 <view class="fs28 addressTag">银行卡</view>
9 <view> 9 <view>
10 <label v-model="cardNum">{{cardNum}}</label> 10 <label v-model="cardNum">{{cardNum}}</label>
11 - <image class="arrow mar-left-20" src="https://jy.scjysm.asia:18086/cdwlMall/questionnaire/file/static/img//user/arrow.png"></image> 11 + <image class="arrow mar-left-20" src="https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/file/static/img//user/arrow.png"></image>
12 </view> 12 </view>
13 </view> 13 </view>
14 <view class="apply-box"> 14 <view class="apply-box">
lvdao-miniapp/main.js
@@ -8,13 +8,13 @@ import uView from &quot;uview-ui&quot;; @@ -8,13 +8,13 @@ import uView from &quot;uview-ui&quot;;
8 import DialogBox from './components/DialogBox/DialogBox'; 8 import DialogBox from './components/DialogBox/DialogBox';
9 // let hostall = window.location.href; 9 // let hostall = window.location.href;
10 // let c1 = hostall.split('cdwlMall')[0]; 10 // let c1 = hostall.split('cdwlMall')[0];
11 -// let c1 = 'https://jy.scjysm.asia:18086/'  
12 -let c1 = 'https://zhgw-uat.028wlkj.com/' 11 +let c1 = 'https://jy.scjysm.asia:18086/'
  12 +// let c1 = 'https://zhgw-uat.028wlkj.com/'
13 Vue.config.productionTip = false 13 Vue.config.productionTip = false
14 Vue.prototype.$http = http 14 Vue.prototype.$http = http
15 Vue.prototype.$imgUrl = (url) => { 15 Vue.prototype.$imgUrl = (url) => {
16 - // return (c1 + "cdwlMall/questionnaire/file/static" + url);  
17 - return (c1 + "cdwlMall/zsfwzxt/test/file/static" + url); 16 + return (c1 + "cdwlMall/questionnaire/file/static" + url);
  17 + // return (c1 + "cdwlMall/zsfwzxt/test/file/static" + url);
18 } 18 }
19 Vue.prototype.$img = c1+ 'cdwlMall' 19 Vue.prototype.$img = c1+ 'cdwlMall'
20 // Vue.prototype.$upload = "https://zhld.028wlkj.com:49008/cdwlMall/admin-server/miniio/upload" 20 // Vue.prototype.$upload = "https://zhld.028wlkj.com:49008/cdwlMall/admin-server/miniio/upload"
lvdao-miniapp/pages/advertisementAdd/advertisementAdd.vue
@@ -21,10 +21,10 @@ @@ -21,10 +21,10 @@
21 </u-form-item> 21 </u-form-item>
22 </view> 22 </view>
23 <view class="add-list"> 23 <view class="add-list">
24 - <u-form-item :required="true" label="跳转类型" prop="advertisementContent" borderBottom> 24 + <!-- <u-form-item :required="true" label="跳转类型" prop="advertisementContent" borderBottom>
25 <u-input v-model="model1.advertisementContent"></u-input> 25 <u-input v-model="model1.advertisementContent"></u-input>
26 - </u-form-item>  
27 - <u-form-item :required="true" label="链接" prop="redirectUrl" borderBottom> 26 + </u-form-item> -->
  27 + <u-form-item :required="true" label="跳转链接" prop="redirectUrl" borderBottom>
28 <u-input v-model="model1.redirectUrl"></u-input> 28 <u-input v-model="model1.redirectUrl"></u-input>
29 </u-form-item> 29 </u-form-item>
30 </view> 30 </view>
@@ -37,11 +37,11 @@ @@ -37,11 +37,11 @@
37 <u-upload :action="$upload" :auto-upload="true" ref="coverImage" :max-count="1"></u-upload> 37 <u-upload :action="$upload" :auto-upload="true" ref="coverImage" :max-count="1"></u-upload>
38 </u-form-item> --> 38 </u-form-item> -->
39 </view> 39 </view>
40 - <view class="add-list"> 40 + <!-- <view class="add-list">
41 <u-form-item :required="true" label="广告标题" prop="adTitle" borderBottom labelPosition="top"> 41 <u-form-item :required="true" label="广告标题" prop="adTitle" borderBottom labelPosition="top">
42 <u-input v-model="model1.adTitle" /> 42 <u-input v-model="model1.adTitle" />
43 </u-form-item> 43 </u-form-item>
44 - </view> 44 + </view> -->
45 45
46 </u-form> 46 </u-form>
47 </view> 47 </view>
@@ -451,13 +451,13 @@ @@ -451,13 +451,13 @@
451 return; 451 return;
452 } 452 }
453 453
454 - if (!this.model1.advertisementContent) {  
455 - uni.showToast({  
456 - icon: 'none',  
457 - title: '请输入跳转类型'  
458 - });  
459 - return;  
460 - } 454 + // if (!this.model1.advertisementContent) {
  455 + // uni.showToast({
  456 + // icon: 'none',
  457 + // title: '请输入跳转类型'
  458 + // });
  459 + // return;
  460 + // }
461 if (!this.model1.redirectUrl) { 461 if (!this.model1.redirectUrl) {
462 uni.showToast({ 462 uni.showToast({
463 icon: 'none', 463 icon: 'none',
@@ -472,13 +472,13 @@ @@ -472,13 +472,13 @@
472 }); 472 });
473 return; 473 return;
474 } 474 }
475 - if (!this.model1.adTitle) {  
476 - uni.showToast({  
477 - icon: 'none',  
478 - title: '请输入广告标题'  
479 - });  
480 - return;  
481 - } 475 + // if (!this.model1.adTitle) {
  476 + // uni.showToast({
  477 + // icon: 'none',
  478 + // title: '请输入广告标题'
  479 + // });
  480 + // return;
  481 + // }
482 } 482 }
483 483
484 this.active = +this.active + 1; 484 this.active = +this.active + 1;
lvdao-miniapp/pages/message/message.vue
@@ -44,7 +44,7 @@ @@ -44,7 +44,7 @@
44 </view> 44 </view>
45 <view class="data"> 45 <view class="data">
46 <view class="title"> 46 <view class="title">
47 - <text>平台消息</text> 47 + <text>系统通知</text>
48 </view> 48 </view>
49 49
50 <view class="describe"> 50 <view class="describe">
lvdao-miniapp/utils/request.js
1 1
2 // let hostall = window.location.href; 2 // let hostall = window.location.href;
3 // let c1 = hostall.split('cdwlMall')[0]; 3 // let c1 = hostall.split('cdwlMall')[0];
4 -// let c1 = 'https://jy.scjysm.asia:18086/'  
5 -let c1 = 'https://zhgw-uat.028wlkj.com/' 4 +let c1 = 'https://jy.scjysm.asia:18086/'
  5 +// let c1 = 'https://zhgw-uat.028wlkj.com/'
6 //封装request请求 6 //封装request请求
7 const sendRequest = (url, method = 'GET', data = {}, baseUrl,contentType) => { 7 const sendRequest = (url, method = 'GET', data = {}, baseUrl,contentType) => {
8 //判断header提交数据类型 8 //判断header提交数据类型
@@ -21,10 +21,10 @@ const sendRequest = (url, method = &#39;GET&#39;, data = {}, baseUrl,contentType) =&gt; { @@ -21,10 +21,10 @@ const sendRequest = (url, method = &#39;GET&#39;, data = {}, baseUrl,contentType) =&gt; {
21 // bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/meserver/admin-server' + url; 21 // bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/meserver/admin-server' + url;
22 // bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' + url; 22 // bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' + url;
23 23
24 - bases = 'http://128.10.249.31:9003'+ url; 24 + // bases = 'http://128.10.249.31:9003'+ url;
25 // bases = 'https://zhld.028wlkj.com:49008/cdwlMall/admin-server' + url; 25 // bases = 'https://zhld.028wlkj.com:49008/cdwlMall/admin-server' + url;
26 26
27 - // bases = c1 + 'cdwlMall/meserver/admin-server' + url; 27 + bases = c1 + 'cdwlMall/meserver/admin-server' + url;
28 28
29 }else if(baseUrl == 3){ 29 }else if(baseUrl == 3){
30 // bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' + url; 30 // bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' + url;
@@ -39,9 +39,9 @@ const sendRequest = (url, method = &#39;GET&#39;, data = {}, baseUrl,contentType) =&gt; { @@ -39,9 +39,9 @@ const sendRequest = (url, method = &#39;GET&#39;, data = {}, baseUrl,contentType) =&gt; {
39 // bases = 'http://172.16.61.123/cdwlMall/business-server' + url; 39 // bases = 'http://172.16.61.123/cdwlMall/business-server' + url;
40 // bases = 'https://jy.scjysm.asia:18086/cdwlMall/business-server' + url; 40 // bases = 'https://jy.scjysm.asia:18086/cdwlMall/business-server' + url;
41 // bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/business-server' + url; 41 // bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/business-server' + url;
42 - bases = 'http://128.10.249.31:9004' + url; 42 + // bases = 'http://128.10.249.31:9004' + url;
43 // bases = 'https://zhld.028wlkj.com:49008/cdwlMall/business-server' + url; 43 // bases = 'https://zhld.028wlkj.com:49008/cdwlMall/business-server' + url;
44 - // bases = c1 + 'cdwlMall/business-server' + url; 44 + bases = c1 + 'cdwlMall/business-server' + url;
45 45
46 } 46 }
47 var token = uni.getStorageSync('token') || ''; 47 var token = uni.getStorageSync('token') || '';
merchant-web-master/src/utils/request.js
@@ -19,9 +19,9 @@ let PREFIX; @@ -19,9 +19,9 @@ let PREFIX;
19 if( host == 'localhost:9528' || host == '8.130.38.56:8027' || host == 'localhost:9529'|| host == 'localhost:9530'){ 19 if( host == 'localhost:9528' || host == '8.130.38.56:8027' || host == 'localhost:9529'|| host == 'localhost:9530'){
20 // 其他情况的默认值 20 // 其他情况的默认值
21 // PREFIX = 'http://8.130.38.56:8027/business-server'; 21 // PREFIX = 'http://8.130.38.56:8027/business-server';
22 - // PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/business-server'; 22 + PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/business-server';
23 // PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/business-server'; 23 // PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/business-server';
24 - PREFIX = 'http://128.10.249.31:9004'; 24 + // PREFIX = 'http://128.10.249.31:9004';
25 }else{ 25 }else{
26 // PREFIX = '/merchant-business'; 26 // PREFIX = '/merchant-business';
27 // PREFIX = 'http://8.130.38.56:9004'; 27 // PREFIX = 'http://8.130.38.56:9004';
merchant-web-master/src/utils/request2.js
@@ -19,9 +19,9 @@ let PREFIX; @@ -19,9 +19,9 @@ let PREFIX;
19 if( host == 'localhost:9528' || host == '8.130.38.56:8027' || host == 'localhost:9529'|| host == 'localhost:9530'){ 19 if( host == 'localhost:9528' || host == '8.130.38.56:8027' || host == 'localhost:9529'|| host == 'localhost:9530'){
20 // 其他情况的默认值 20 // 其他情况的默认值
21 // PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api'; 21 // PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api';
22 - // PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api'; 22 + PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api';
23 23
24 - PREFIX = 'http://128.10.249.46:9007'; 24 + // PREFIX = 'http://128.10.249.46:9007';
25 }else{ 25 }else{
26 // PREFIX = '/merchant-business'; 26 // PREFIX = '/merchant-business';
27 // PREFIX = 'http://8.130.38.56:9004'; 27 // PREFIX = 'http://8.130.38.56:9004';
merchant-web-master/src/views/comprehensive/productInventory/index.vue
@@ -41,12 +41,12 @@ @@ -41,12 +41,12 @@
41 <el-table-column prop="productName" label="商品名称" min-width="120" show-overflow-tooltip> 41 <el-table-column prop="productName" label="商品名称" min-width="120" show-overflow-tooltip>
42 42
43 </el-table-column> 43 </el-table-column>
44 - <el-table-column label="货号/属性" prop="specification" min-width="80" show-overflow-tooltip> 44 + <!-- <el-table-column label="货号/属性" prop="specification" min-width="80" show-overflow-tooltip>
45 <template slot-scope="scope"> 45 <template slot-scope="scope">
46 <div v-for="item in scope.row.specification">{{item.skuName}}:{{item.skuValue}} 46 <div v-for="item in scope.row.specification">{{item.skuName}}:{{item.skuValue}}
47 </div> 47 </div>
48 </template> 48 </template>
49 - </el-table-column> 49 + </el-table-column> -->
50 50
51 <el-table-column prop="orderNo" label="订单号" min-width="120" show-overflow-tooltip> 51 <el-table-column prop="orderNo" label="订单号" min-width="120" show-overflow-tooltip>
52 <template slot-scope="scope"> 52 <template slot-scope="scope">
merchant-web-master/src/views/comprehensive/productOutbound/index.vue
@@ -41,12 +41,12 @@ @@ -41,12 +41,12 @@
41 <el-table-column prop="productName" label="商品名称" min-width="120" show-overflow-tooltip> 41 <el-table-column prop="productName" label="商品名称" min-width="120" show-overflow-tooltip>
42 42
43 </el-table-column> 43 </el-table-column>
44 - <el-table-column label="货号/属性" prop="specification" min-width="80" show-overflow-tooltip> 44 + <!-- <el-table-column label="货号/属性" prop="specification" min-width="80" show-overflow-tooltip>
45 <template slot-scope="scope"> 45 <template slot-scope="scope">
46 <div v-for="item in scope.row.specification">{{item.skuName}}:{{item.skuValue}} 46 <div v-for="item in scope.row.specification">{{item.skuName}}:{{item.skuValue}}
47 </div> 47 </div>
48 </template> 48 </template>
49 - </el-table-column> 49 + </el-table-column> -->
50 50
51 <el-table-column prop="orderNo" label="订单号" min-width="120" show-overflow-tooltip> 51 <el-table-column prop="orderNo" label="订单号" min-width="120" show-overflow-tooltip>
52 <template slot-scope="scope"> 52 <template slot-scope="scope">
merchant-web-master/src/views/order/aftersale/afterDetails.vue
@@ -27,6 +27,9 @@ @@ -27,6 +27,9 @@
27 <span v-if="order.state === 3">待收货</span> 27 <span v-if="order.state === 3">待收货</span>
28 <span v-if="order.state === 4">已完成</span> 28 <span v-if="order.state === 4">已完成</span>
29 <span v-if="order.state === 5">已取消</span> 29 <span v-if="order.state === 5">已取消</span>
  30 + <span v-if="order.state == 6">待成团</span>
  31 + <span v-if="order.state == 7">待售后</span>
  32 + <span v-if="order.state == 8">已退款</span>
30 </p> 33 </p>
31 <p> 34 <p>
32 <span>售后类型:</span> 35 <span>售后类型:</span>