Commit 726bc80b118ccc771499ab380a807f6b62589484
1 parent
ce02dc9f
最新
Showing
114 changed files
with
590 additions
and
567 deletions
Too many changes.
To preserve performance only 100 of 114 files are displayed.
admin-web-master/src/api/commodityLease.js
| ... | ... | @@ -56,4 +56,18 @@ export function cereTerminateNotice(data) { |
| 56 | 56 | method: 'post', |
| 57 | 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 | 74 | \ No newline at end of file | ... | ... |
admin-web-master/src/components/add/addmap.vue
| ... | ... | @@ -18,14 +18,14 @@ |
| 18 | 18 | :key="index" :label="item.label" :value="item.value"></el-option> |
| 19 | 19 | </el-select> |
| 20 | 20 | </el-form-item> |
| 21 | - <el-form-item label="轮播顺序" prop="rotationOrder" > | |
| 21 | + <!-- <el-form-item label="轮播顺序" prop="rotationOrder" > | |
| 22 | 22 | <el-select v-model="formInline.rotationOrder" placeholder="请选择" style="width: 100%;"> |
| 23 | 23 | <el-option v-for="(item,index) in rotationSequenceList" |
| 24 | 24 | :key="index" :label="item.label" :value="item.value"></el-option> |
| 25 | 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 | 29 | <el-option v-for="(item,index) in tableData" :key="index" :label="'第'+(index+1)+'张'+`${item.type==1?'商城端':'商家端'}`" :value="item.id"></el-option> |
| 30 | 30 | </el-select> |
| 31 | 31 | </el-form-item> |
| ... | ... | @@ -149,7 +149,7 @@ |
| 149 | 149 | import { |
| 150 | 150 | miniioupload |
| 151 | 151 | } from '../../api/commodityLease.js' |
| 152 | - import { addList } from '@/api/map1.js'; | |
| 152 | + import { addList ,editList} from '@/api/map1.js'; | |
| 153 | 153 | import wangEditor from "@/components/editor/index" |
| 154 | 154 | import { |
| 155 | 155 | lvdaoduan, |
| ... | ... | @@ -232,11 +232,11 @@ |
| 232 | 232 | message: '请选择所属端', |
| 233 | 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 | 240 | carouselId: [{ |
| 241 | 241 | required: true, |
| 242 | 242 | message: '请选择轮播图', |
| ... | ... | @@ -364,6 +364,13 @@ |
| 364 | 364 | |
| 365 | 365 | }, |
| 366 | 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 | 374 | validateNumber(field, value) { |
| 368 | 375 | // 使用正则表达式确保输入的是数字,并且可以包含最多两位小数 |
| 369 | 376 | const regex = /^\d+(\.\d{1,2})?$/; | ... | ... |
admin-web-master/src/components/chakan/cd.vue
| ... | ... | @@ -287,6 +287,7 @@ |
| 287 | 287 | changedit |
| 288 | 288 | } from '@/api/information' |
| 289 | 289 | import allimg from '@/components/chakan/allimg.vue'; |
| 290 | + import oneht from "@/components/chakan/oneht"; | |
| 290 | 291 | import { |
| 291 | 292 | gongyuan, |
| 292 | 293 | parkTrails, |
| ... | ... | @@ -297,7 +298,8 @@ |
| 297 | 298 | TitleWithCircle, |
| 298 | 299 | newmap, |
| 299 | 300 | MapXian, |
| 300 | - allimg | |
| 301 | + allimg, | |
| 302 | + oneht | |
| 301 | 303 | }, |
| 302 | 304 | props: { |
| 303 | 305 | leixing: { | ... | ... |
admin-web-master/src/components/chakan/map.vue
| ... | ... | @@ -422,14 +422,14 @@ |
| 422 | 422 | pageSize: 10, |
| 423 | 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 | 433 | selectByAdPlacementId(this.editbgid.id).then(res => { |
| 434 | 434 | this.msg.dianji = res.data |
| 435 | 435 | ... | ... |
admin-web-master/src/components/chakan/zl.vue
| ... | ... | @@ -218,7 +218,8 @@ |
| 218 | 218 | </el-col> |
| 219 | 219 | <el-col :span="8"> |
| 220 | 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 | 223 | </el-form-item> |
| 223 | 224 | </el-col> |
| 224 | 225 | <el-col :span="8"> |
| ... | ... | @@ -233,7 +234,7 @@ |
| 233 | 234 | </el-col> |
| 234 | 235 | <el-col :span="8"> |
| 235 | 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 | 238 | </el-form-item> |
| 238 | 239 | </el-col> |
| 239 | 240 | <el-col :span="8"> |
| ... | ... | @@ -319,7 +320,7 @@ |
| 319 | 320 | </el-col> |
| 320 | 321 | <el-col :span="8"> |
| 321 | 322 | <el-form-item label="负责人" prop="responsiblePerson"> |
| 322 | - <div class="duiqi">{{info.cereBasicInformationVenue.belongingParkTrail || '无'}}</div> | |
| 323 | + <div class="duiqi">{{info.cereBasicInformationVenue.responsiblePerson || '无'}}</div> | |
| 323 | 324 | </el-form-item> |
| 324 | 325 | </el-col> |
| 325 | 326 | </el-row> |
| ... | ... | @@ -330,8 +331,13 @@ |
| 330 | 331 | </el-form-item> |
| 331 | 332 | </el-col> |
| 332 | 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 | 339 | <el-form-item label="联系电话" prop="phoneNumber"> |
| 334 | - <div class="duiqi">{{info.cereBasicInformationVenue.belongingParkTrail || '无'}}</div> | |
| 340 | + <div class="duiqi">{{info.cereBasicInformationVenue.phoneNumber || '无'}}</div> | |
| 335 | 341 | </el-form-item> |
| 336 | 342 | </el-col> |
| 337 | 343 | </el-row> |
| ... | ... | @@ -368,8 +374,8 @@ |
| 368 | 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 | 375 | </div> |
| 370 | 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 | 379 | </el-form-item> |
| 374 | 380 | </el-form> |
| 375 | 381 | </div> | ... | ... |
admin-web-master/src/utils/request.js
| ... | ... | @@ -22,7 +22,7 @@ if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost |
| 22 | 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 | 28 | } else { | ... | ... |
admin-web-master/src/utils/request2.js
| ... | ... | @@ -17,10 +17,10 @@ let baseURL = '' |
| 17 | 17 | // || host === 'localhost:9528' |
| 18 | 18 | if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) { |
| 19 | 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 | 21 | // baseURL = 'http://172.16.61.125:9004'; |
| 22 | 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 | 24 | } else { |
| 25 | 25 | console.error('---------------------') |
| 26 | 26 | console.error(hostall) | ... | ... |
admin-web-master/src/views/comment/commentSys/index.vue
| ... | ... | @@ -56,11 +56,11 @@ |
| 56 | 56 | </div> |
| 57 | 57 | <div v-else> |
| 58 | 58 | <div @click="details(scope.row)" class="tableBtn greens">查看</div> |
| 59 | - <div | |
| 59 | + <!-- <div | |
| 60 | 60 | class="tableBtn greens" |
| 61 | 61 | @click="handle(scope.row)" |
| 62 | 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 | 64 | </div> |
| 65 | 65 | </template> |
| 66 | 66 | </el-table-column> |
| ... | ... | @@ -126,12 +126,12 @@ |
| 126 | 126 | </div> |
| 127 | 127 | </div> --> |
| 128 | 128 | </div> |
| 129 | - <span slot="footer" class="dialog-footer"> | |
| 129 | + <!-- <span slot="footer" class="dialog-footer"> | |
| 130 | 130 | <el-button v-if="Number(formParams.ifSensitive)" @click="toShow" style="background-color: #3F9B6A;color: #fff">允许展示</el-button> |
| 131 | 131 | <el-button v-else @click="noneShow(state)" style="background-color: #3F9B6A;color: #fff">{{ state ? "显示" : "隐藏" }}</el-button> |
| 132 | 132 | <el-button class="buttonHover" |
| 133 | 133 | style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" @click="del">删除</el-button> |
| 134 | - </span> | |
| 134 | + </span> --> | |
| 135 | 135 | </el-dialog> |
| 136 | 136 | </div> |
| 137 | 137 | </div> | ... | ... |
admin-web-master/src/views/online/QRCode/index.vue
| ... | ... | @@ -24,7 +24,7 @@ |
| 24 | 24 | </template> |
| 25 | 25 | </el-table-column> |
| 26 | 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 | 28 | <template slot-scope="scope"> |
| 29 | 29 | <div class="tableBtn greens" @click="seeMore(scope.row)"> |
| 30 | 30 | 商户静态二维码 |
| ... | ... | @@ -34,8 +34,9 @@ |
| 34 | 34 | </el-table-column> |
| 35 | 35 | </el-table> |
| 36 | 36 | <div class="fenye"> |
| 37 | + <div>共{{total}}条</div> | |
| 37 | 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 | 40 | @current-change="handleCurrentChange" /> |
| 40 | 41 | </div> |
| 41 | 42 | </div> |
| ... | ... | @@ -47,7 +48,7 @@ |
| 47 | 48 | <div style="font-size: 14px;padding-bottom: 20px;color: #000;">商户静态二维码</div> |
| 48 | 49 | <div style="padding:20px;"> |
| 49 | 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 | 52 | </div> |
| 52 | 53 | <!-- <div> |
| 53 | 54 | <el-tabs v-model="xiangTabs"> |
| ... | ... | @@ -82,8 +83,8 @@ |
| 82 | 83 | <div style="padding-top:20px;display:flex;justify-content: flex-end;"> |
| 83 | 84 | <el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" |
| 84 | 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 | 88 | <el-button style="background-color: #3F9B6A;color: #fff;" @click="down">保存</el-button> --> |
| 88 | 89 | </div> |
| 89 | 90 | </div> |
| ... | ... | @@ -256,7 +257,7 @@ |
| 256 | 257 | .fenye { |
| 257 | 258 | margin-top: 20px; |
| 258 | 259 | display: flex; |
| 259 | - justify-content: flex-start; | |
| 260 | + justify-content: space-between; | |
| 260 | 261 | position: relative; |
| 261 | 262 | } |
| 262 | 263 | |
| ... | ... | @@ -317,27 +318,6 @@ |
| 317 | 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 | 322 | ::v-deep .buttonHover:hover { |
| 343 | 323 | color: #3f9b6a !important; | ... | ... |
admin-web-master/src/views/online/QRFunds/index.vue
| ... | ... | @@ -48,10 +48,9 @@ |
| 48 | 48 | /> |
| 49 | 49 | <el-table-column |
| 50 | 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 | 54 | <div class="tableBtn greens" @click="seeMore(scope.row)"> |
| 56 | 55 | 静态二维码收款 |
| 57 | 56 | </div> |
| ... | ... | @@ -60,13 +59,13 @@ |
| 60 | 59 | </el-table-column> |
| 61 | 60 | </el-table> |
| 62 | 61 | <div class="fenye"> |
| 62 | + <div>共{{total}}条</div> | |
| 63 | 63 | <el-pagination |
| 64 | 64 | :current-page="currentPage" |
| 65 | 65 | background |
| 66 | - small | |
| 67 | 66 | :page-sizes="[10, 20, 50, 100]" |
| 68 | 67 | :page-size="10" |
| 69 | - layout="total, prev, pager, next" | |
| 68 | + layout="prev, pager, next" | |
| 70 | 69 | :total="total" |
| 71 | 70 | @size-change="handleSizeChange" |
| 72 | 71 | @current-change="handleCurrentChange" |
| ... | ... | @@ -81,7 +80,7 @@ |
| 81 | 80 | <div style="font-size: 14px;padding-bottom: 20px;color: #000;">静态二维码收款</div> |
| 82 | 81 | <div style="padding:20px;"> |
| 83 | 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 | 84 | </div> |
| 86 | 85 | <!-- <div> |
| 87 | 86 | <el-tabs v-model="xiangTabs"> |
| ... | ... | @@ -116,9 +115,9 @@ |
| 116 | 115 | <div style="padding-top:20px;display:flex;justify-content: flex-end;"> |
| 117 | 116 | <el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" |
| 118 | 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 | 119 | @click="down">下载</el-button> |
| 121 | - <el-button style="background-color: #3F9B6A;color: #fff;" | |
| 120 | + <!-- <el-button style="background-color: #3F9B6A;color: #fff;" | |
| 122 | 121 | @click="down">导出</el-button> |
| 123 | 122 | <el-button style="background-color: #3F9B6A;color: #fff;" |
| 124 | 123 | @click="down">保存</el-button> --> |
| ... | ... | @@ -288,7 +287,7 @@ this.getAll(this.formInline) |
| 288 | 287 | .fenye { |
| 289 | 288 | margin-top: 20px; |
| 290 | 289 | display: flex; |
| 291 | - justify-content: flex-start; | |
| 290 | + justify-content: space-between; | |
| 292 | 291 | position: relative; |
| 293 | 292 | } |
| 294 | 293 | |
| ... | ... | @@ -345,24 +344,7 @@ this.getAll(this.formInline) |
| 345 | 344 | text-align:right; |
| 346 | 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 | 348 | ::v-deep .buttonHover:hover { |
| 367 | 349 | color: #3f9b6a !important; |
| 368 | 350 | border-color: #c5e1d2 !important; | ... | ... |
admin-web-master/src/views/online/reconciliationProcessing/index.vue
| ... | ... | @@ -35,7 +35,7 @@ |
| 35 | 35 | range-separator="至" |
| 36 | 36 | start-placeholder="开始日期" |
| 37 | 37 | end-placeholder="结束日期" |
| 38 | - style="width:168px" | |
| 38 | + style="width:200px" | |
| 39 | 39 | /> |
| 40 | 40 | </el-form-item> |
| 41 | 41 | <el-form-item label="支付金额"> |
| ... | ... | @@ -59,7 +59,7 @@ |
| 59 | 59 | <el-form-item label="商户名称"> |
| 60 | 60 | <el-input |
| 61 | 61 | placeholder="请输入" |
| 62 | - | |
| 62 | +style="width: 120px;" | |
| 63 | 63 | v-model="formInline.shopName"> |
| 64 | 64 | </el-input> |
| 65 | 65 | </el-form-item> | ... | ... |
admin-web-master/src/views/shopRental/rentTermination/add.vue
| ... | ... | @@ -4,10 +4,10 @@ |
| 4 | 4 | <el-form-item label="退租日期" prop="exitDate"> |
| 5 | 5 | <el-input v-model="info.applicationTime" disabled></el-input> |
| 6 | 6 | </el-form-item> |
| 7 | - <el-form-item label="退租原因" prop="reasonForExit"> | |
| 7 | + <!-- <el-form-item label="退租原因" prop="reasonForExit"> | |
| 8 | 8 | <el-input maxlength="200" show-word-limit rows="4" v-model="formInline.reasonForExit" placeholder="请输入退租原因" |
| 9 | 9 | type="textarea" /> |
| 10 | - </el-form-item> | |
| 10 | + </el-form-item> --> | |
| 11 | 11 | <el-form-item label="待缴租金" prop="outstandingRent"> |
| 12 | 12 | <el-input v-model="formInline.outstandingRent" placeholder="请输入"></el-input> |
| 13 | 13 | </el-form-item> |
| ... | ... | @@ -35,10 +35,10 @@ |
| 35 | 35 | <label for="remarks">退租日期:</label> |
| 36 | 36 | <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="info.applicationTime"></div> |
| 37 | 37 | </div> |
| 38 | - <div class="form-group"> | |
| 38 | + <!-- <div class="form-group"> | |
| 39 | 39 | <label for="remarks">退租原因:</label> |
| 40 | 40 | <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="formInline.reasonForExit"></div> |
| 41 | - </div> | |
| 41 | + </div> --> | |
| 42 | 42 | <div class="form-group"> |
| 43 | 43 | <label for="remarks">待缴租金:</label> |
| 44 | 44 | <div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="formInline.outstandingRent"></div> |
| ... | ... | @@ -60,7 +60,8 @@ |
| 60 | 60 | </template> |
| 61 | 61 | <script> |
| 62 | 62 | import { |
| 63 | - cereTerminateNotice | |
| 63 | + cereTerminateNotice, | |
| 64 | + uploadQuestion | |
| 64 | 65 | } from '../../../api/commodityLease.js' |
| 65 | 66 | import jsPDF from 'jspdf' |
| 66 | 67 | import wangEditor from "@/components/editor/index" |
| ... | ... | @@ -98,11 +99,11 @@ import { title } from '@/settings.js'; |
| 98 | 99 | message: '请输入退租日期', |
| 99 | 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 | 107 | outstandingRent: [{ |
| 107 | 108 | required: true, |
| 108 | 109 | message: '请输入待缴租金', |
| ... | ... | @@ -178,9 +179,22 @@ import { title } from '@/settings.js'; |
| 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 | 194 | async add() { |
| 182 | 195 | let that = this |
| 183 | 196 | console.log({...this.info}) |
| 197 | + | |
| 184 | 198 | const content = this.$refs.contentToConvert; |
| 185 | 199 | |
| 186 | 200 | // 使用 html2canvas 将 div 渲染为画布 |
| ... | ... | @@ -190,7 +204,14 @@ import { title } from '@/settings.js'; |
| 190 | 204 | this.formInline.tenantId = this.info.relatedMerchants |
| 191 | 205 | this.formInline.tenantPhone = this.info.tenantTelephone |
| 192 | 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 | 215 | console.log({...this.formInline}) |
| 195 | 216 | // return |
| 196 | 217 | let info = { | ... | ... |
ceres-uniapp-master/components/AliHbPay/index.vue
| ... | ... | @@ -24,7 +24,7 @@ |
| 24 | 24 | <view class="pay-type-img"> |
| 25 | 25 | <img |
| 26 | 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 | 29 | </view> |
| 30 | 30 | <label class="pay-type-label">支付宝支付</label> |
| ... | ... | @@ -39,7 +39,7 @@ |
| 39 | 39 | <view class="pay-type-img"> |
| 40 | 40 | <img |
| 41 | 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 | 44 | </view> |
| 45 | 45 | <label class="pay-type-label">花呗分期</label> | ... | ... |
ceres-uniapp-master/components/CashierList/index.vue
| ... | ... | @@ -96,21 +96,21 @@ export default { |
| 96 | 96 | id: 1, |
| 97 | 97 | label: '微信支付', |
| 98 | 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 | 100 | disabled:true |
| 101 | 101 | }, |
| 102 | 102 | // { |
| 103 | 103 | // id: 2, |
| 104 | 104 | // label: '支付宝支付', |
| 105 | 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 | 107 | // disabled:false |
| 108 | 108 | // }, |
| 109 | 109 | // { |
| 110 | 110 | // id: 3, |
| 111 | 111 | // label: '花呗分期', |
| 112 | 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 | 114 | // disabled:false |
| 115 | 115 | // } |
| 116 | 116 | ... | ... |
ceres-uniapp-master/components/Empty/index.vue
| ... | ... | @@ -40,7 +40,7 @@ export default { |
| 40 | 40 | }, |
| 41 | 41 | iconUrl:{ |
| 42 | 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 | 46 | computed:{ | ... | ... |
ceres-uniapp-master/components/activities/combinedSales.vue
| ... | ... | @@ -3,7 +3,7 @@ |
| 3 | 3 | <view class="group-warp"> |
| 4 | 4 | <view class="title"> |
| 5 | 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 | 7 | </label> |
| 8 | 8 | <view class="price-text"> |
| 9 | 9 | 组合价:¥{{composePrice}} |
| ... | ... | @@ -434,7 +434,7 @@ export default { |
| 434 | 434 | margin: 0 auto; |
| 435 | 435 | line-height: 50upx; |
| 436 | 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 | 438 | .text{ |
| 439 | 439 | font-size: 24upx; |
| 440 | 440 | color: #999; | ... | ... |
ceres-uniapp-master/components/basics/categoryShow.vue
| ... | ... | @@ -59,7 +59,7 @@ |
| 59 | 59 | </view> |
| 60 | 60 | </view> |
| 61 | 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 | 63 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 64 | 64 | </view> |
| 65 | 65 | </view> | ... | ... |
ceres-uniapp-master/components/canvasShow/basics/header/app/index.vue
| ... | ... | @@ -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> |
| 8 | 8 | <view class="search-btn" @click="searchPro"> |
| 9 | 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 | 11 | mode="widthFix"></image> |
| 12 | 12 | </view> |
| 13 | 13 | </view> | ... | ... |
ceres-uniapp-master/components/canvasShow/basics/newProduct/app/index.vue
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | <img class="iconImg" v-if="item.activityType == 3" src="../../../static/images/discountListIcon.png"> |
| 18 | 18 | <img class="iconImg" v-if="item.activityType == 5" src="../../../static/images/discountListIcon.png"> |
| 19 | 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 | 21 | <!-- #endif --> |
| 22 | 22 | <!-- #ifdef H5 || APP-PLUS --> |
| 23 | 23 | <image class="iconImg" v-if="item.activityType == 1" src="../../../static/images/groupBuyIcon.png"></image> |
| ... | ... | @@ -26,7 +26,7 @@ |
| 26 | 26 | <image class="iconImg" v-if="item.activityType == 3" src="../../../static/images/discountListIcon.png"></image> |
| 27 | 27 | <image class="iconImg" v-if="item.activityType == 5" src="../../../static/images/discountListIcon.png"></image> |
| 28 | 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 | 30 | <!-- #endif --> |
| 31 | 31 | <div class="price"> |
| 32 | 32 | ¥ {{item.price}} | ... | ... |
ceres-uniapp-master/components/canvasShow/basics/product/app/index.vue
| ... | ... | @@ -112,7 +112,7 @@ |
| 112 | 112 | <img class="iconImg" v-if="item.activityType == 9" |
| 113 | 113 | src="../../../static/images/memberCenterIcon.png"> |
| 114 | 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 | 116 | <!-- #endif --> |
| 117 | 117 | <!-- #ifdef H5 || APP-PLUS --> |
| 118 | 118 | <image class="iconImg" v-if="item.activityType == 1" |
| ... | ... | @@ -128,7 +128,7 @@ |
| 128 | 128 | <image class="iconImg" v-if="item.activityType == 9" |
| 129 | 129 | src="../../../static/images/memberCenterIcon.png"> |
| 130 | 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 | 132 | <!-- #endif --> |
| 133 | 133 | <div class="price"> |
| 134 | 134 | ¥ {{ item.price }} |
| ... | ... | @@ -193,7 +193,7 @@ |
| 193 | 193 | <img class="iconImg" v-if="item.activityType == 9" |
| 194 | 194 | src="../../../static/images/memberCenterIcon.png" /> |
| 195 | 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 | 197 | <!-- #endif --> |
| 198 | 198 | <!-- #ifdef H5 || APP-PLUS --> |
| 199 | 199 | |
| ... | ... | @@ -210,7 +210,7 @@ |
| 210 | 210 | <image class="iconImg" v-if="item.activityType == 9" |
| 211 | 211 | src="../../../static/images/memberCenterIcon.png" /> |
| 212 | 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 | 214 | <!-- #endif --> |
| 215 | 215 | <div class="price"> |
| 216 | 216 | ¥ {{ item.price }} | ... | ... |
ceres-uniapp-master/components/canvasShow/config/api.js
| ... | ... | @@ -6,7 +6,7 @@ |
| 6 | 6 | // const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' : 'http://192.168.2.230:9007' |
| 7 | 7 | const host = `${window.location.protocol}//${window.location.host}` |
| 8 | 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 | 19 | <view v-show="activeTypeFlag === 1"> |
| 20 | 20 | <view class="couponShow"> |
| 21 | 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 | 23 | </view> |
| 24 | 24 | <view class="shopCouponBox" :class="markTools.length === 0 && 'flex'"> |
| 25 | 25 | <view class="list" v-if="markTools.length > 0"> |
| ... | ... | @@ -46,7 +46,7 @@ |
| 46 | 46 | </view> |
| 47 | 47 | </view> |
| 48 | 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 | 50 | <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label> |
| 51 | 51 | </view> |
| 52 | 52 | </view> |
| ... | ... | @@ -55,7 +55,7 @@ |
| 55 | 55 | <view v-show="activeTypeFlag === 0"> |
| 56 | 56 | <view class="couponShow"> |
| 57 | 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 | 59 | </view> |
| 60 | 60 | <view class="shopCouponBox" :class="shopMarkTools.length === 0 && 'flex'"> |
| 61 | 61 | <view class="list" v-if="shopMarkTools.length > 0"> |
| ... | ... | @@ -81,7 +81,7 @@ |
| 81 | 81 | </view> |
| 82 | 82 | </view> |
| 83 | 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 | 85 | <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label> |
| 86 | 86 | </view> |
| 87 | 87 | </view> |
| ... | ... | @@ -89,7 +89,7 @@ |
| 89 | 89 | </view> |
| 90 | 90 | <view class="receive-success" v-if="isShowSuccess"> |
| 91 | 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 | 93 | <view class="text">领取成功</view> |
| 94 | 94 | </view> |
| 95 | 95 | </view> |
| ... | ... | @@ -309,7 +309,7 @@ export default { |
| 309 | 309 | .item { |
| 310 | 310 | width: 50%; |
| 311 | 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 | 313 | border-radius: 10rpx; |
| 314 | 314 | margin-top: 20rpx; |
| 315 | 315 | display: flex; |
| ... | ... | @@ -320,7 +320,7 @@ export default { |
| 320 | 320 | margin-bottom: 30rpx; |
| 321 | 321 | } |
| 322 | 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 | 324 | background-size: contain; |
| 325 | 325 | .discoun { |
| 326 | 326 | color: #999999; | ... | ... |
ceres-uniapp-master/components/hoteRecommed/index.vue
| 1 | 1 | <template> |
| 2 | 2 | <view class="hotTemplate" v-if="productList.length"> |
| 3 | 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 | 5 | <text>热门推荐</text> |
| 6 | 6 | </view> |
| 7 | 7 | <view class="recommendList"> | ... | ... |
ceres-uniapp-master/config/api.js
| ... | ... | @@ -2,17 +2,17 @@ |
| 2 | 2 | // const DOMAIN_PREFIXPING = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' |
| 3 | 3 | // const DOMAIN_PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' |
| 4 | 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 | 7 | // const DOMAIN_PREFIXPING = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server' |
| 8 | 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 | 36 | if (host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528' || host === |
| 37 | 37 | '192.168.31.45:9528') { |
| 38 | 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 | 45 | } else { |
| 44 | 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 | 49 | Vue.prototype.$baseURL = `${window.location.protocol}//${window.location.host}/cdwlMall` |
| 48 | 50 | Vue.prototype.$hostUrl = `${window.location.protocol}//${window.location.host}/cdwlMall` | ... | ... |
ceres-uniapp-master/pages/tabbar/cart/index.vue
| ... | ... | @@ -54,14 +54,14 @@ |
| 54 | 54 | <image |
| 55 | 55 | mode="aspectFill u-skeleton-fillet" |
| 56 | 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 | 58 | class="cart-select-img" |
| 59 | 59 | @click.stop="handleSelectShop(index,0)" |
| 60 | 60 | ></image> |
| 61 | 61 | <image |
| 62 | 62 | mode="aspectFill u-skeleton-fillet" |
| 63 | 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 | 65 | class="cart-select-img" |
| 66 | 66 | @click.stop="handleSelectShop(index,1)" |
| 67 | 67 | ></image> |
| ... | ... | @@ -70,12 +70,12 @@ |
| 70 | 70 | @click="$jump(`${jumpObj.store}?storeId=${item.shopId}`)" |
| 71 | 71 | > |
| 72 | 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 | 74 | class="shop-img" |
| 75 | 75 | ></image> |
| 76 | 76 | <text class="shop-name">{{ item.shopName }}</text> |
| 77 | 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 | 79 | class="arrow-right-img" |
| 80 | 80 | ></image> |
| 81 | 81 | </view> |
| ... | ... | @@ -86,7 +86,7 @@ |
| 86 | 86 | > |
| 87 | 87 | <image |
| 88 | 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 | 90 | ></image> |
| 91 | 91 | <view class="fs24 font-color-C83732"> |
| 92 | 92 | 已满足【{{ item.currentRules.price }}元任选{{ item.currentRules.number }}件】! |
| ... | ... | @@ -103,14 +103,14 @@ |
| 103 | 103 | <image |
| 104 | 104 | mode="aspectFill u-skeleton-fillet" |
| 105 | 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 | 107 | @click.stop="handleSelectSku(index,cIndex,0)" |
| 108 | 108 | class="cart-select-img" |
| 109 | 109 | ></image> |
| 110 | 110 | <image |
| 111 | 111 | mode="aspectFill u-skeleton-fillet" |
| 112 | 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 | 114 | @click.stop="handleSelectSku(index,cIndex,1)" |
| 115 | 115 | class="cart-select-img" |
| 116 | 116 | ></image> |
| ... | ... | @@ -164,14 +164,14 @@ |
| 164 | 164 | <image |
| 165 | 165 | mode="aspectFill" |
| 166 | 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 | 168 | class="cart-select-img" |
| 169 | 169 | @click="handleSelectAll(0)" |
| 170 | 170 | ></image> |
| 171 | 171 | <image |
| 172 | 172 | mode="aspectFill" |
| 173 | 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 | 175 | class="cart-select-img" |
| 176 | 176 | @click="handleSelectAll(1)" |
| 177 | 177 | ></image> |
| ... | ... | @@ -212,7 +212,7 @@ |
| 212 | 212 | > |
| 213 | 213 | <image |
| 214 | 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 | 216 | ></image> |
| 217 | 217 | <label class="font-color-999 fs26 mar-top-30">你的购物车还没有宝贝哦</label> |
| 218 | 218 | <label class="font-color-999 fs26 mar-top-10">快去首页选一个吧~</label> | ... | ... |
ceres-uniapp-master/pages/tabbar/category/index.vue
| ... | ... | @@ -5,7 +5,7 @@ |
| 5 | 5 | <view style="background-color: #fff;"> |
| 6 | 6 | <view class="flex-items-plus flex-row mar-top-20"> |
| 7 | 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 | 9 | <input class="search-box" v-model="keyWord" placeholder-class="searchboxPlace" |
| 10 | 10 | placeholder="请输入您想要的宝贝" /> |
| 11 | 11 | |
| ... | ... | @@ -44,10 +44,10 @@ |
| 44 | 44 | <view v-for="(item,val) in slist" :key="item.classifyId" class="s-list" > |
| 45 | 45 | <view class="classBox flex-items-plus" > |
| 46 | 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 | 48 | </image> |
| 49 | 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 | 51 | </image> |
| 52 | 52 | </view> |
| 53 | 53 | <view style="display: flex; width: 100%;flex-wrap: wrap;"> |
| ... | ... | @@ -77,7 +77,7 @@ |
| 77 | 77 | </view> |
| 78 | 78 | </scroll-view> |
| 79 | 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 | 81 | <label class="font-color-999 fs26 mar-top-30">该分类没有商品~</label> |
| 82 | 82 | </view> |
| 83 | 83 | </view> | ... | ... |
ceres-uniapp-master/pages/tabbar/index/index.vue
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | > |
| 31 | 31 | <image |
| 32 | 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 | 34 | mode="widthFix" |
| 35 | 35 | > |
| 36 | 36 | </image> |
| ... | ... | @@ -52,7 +52,7 @@ |
| 52 | 52 | > |
| 53 | 53 | <image |
| 54 | 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 | 56 | mode="widthFix" |
| 57 | 57 | > |
| 58 | 58 | </image> |
| ... | ... | @@ -77,7 +77,7 @@ |
| 77 | 77 | <view class="reachBottom" |
| 78 | 78 | v-if="topLeft > 400"> |
| 79 | 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 | 81 | mode="widthFix"> |
| 82 | 82 | </image> |
| 83 | 83 | <text class="reach-text">这里到底了哦~~</text> | ... | ... |
ceres-uniapp-master/pages/tabbar/user/index.data.js
| ... | ... | @@ -99,61 +99,61 @@ export const fastCardTwoList = [ |
| 99 | 99 | { |
| 100 | 100 | id:2, |
| 101 | 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 | 103 | jumpUrl:'../../../pages_category_page2/userModule/questionList' |
| 104 | 104 | }, |
| 105 | 105 | |
| 106 | 106 | { |
| 107 | 107 | id:2, |
| 108 | 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 | 110 | jumpUrl:'../../../pages_category_page2/orderModule/afterSale' |
| 111 | 111 | }, |
| 112 | 112 | { |
| 113 | 113 | id:3, |
| 114 | 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 | 116 | jumpUrl:'../../../pages_category_page1/memberCenter/index' |
| 117 | 117 | }, |
| 118 | 118 | { |
| 119 | 119 | id:4, |
| 120 | 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 | 122 | jumpUrl:'../../../pages_category_page2/userModule/bankcard' |
| 123 | 123 | }, |
| 124 | 124 | { |
| 125 | 125 | id:5, |
| 126 | 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 | 128 | jumpUrl:'../../../pages_category_page1/integral/index' |
| 129 | 129 | }, |
| 130 | 130 | { |
| 131 | 131 | id:6, |
| 132 | 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 | 134 | jumpUrl:'../../../pages_category_page1/integral/sign' |
| 135 | 135 | }, |
| 136 | 136 | { |
| 137 | 137 | id:8, |
| 138 | 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 | 140 | jumpUrl:'function:flyToService' |
| 141 | 141 | }, |
| 142 | 142 | { |
| 143 | 143 | id:5, |
| 144 | 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 | 146 | jumpUrl:'../../../pages_category_page2/userModule/memberAccount' |
| 147 | 147 | }, |
| 148 | 148 | { |
| 149 | 149 | id:6, |
| 150 | 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 | 152 | jumpUrl:'../../../pages_category_page2/userModule/coupon' |
| 153 | 153 | }, { |
| 154 | 154 | id:7, |
| 155 | 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 | 157 | jumpUrl:'../../../pages_category_page1/distributionModule/index' |
| 158 | 158 | } |
| 159 | 159 | ] | ... | ... |
ceres-uniapp-master/pages/tabbar/user/index.vue
| ... | ... | @@ -13,12 +13,12 @@ |
| 13 | 13 | <view class="user-info-box" @click="$jump('../../../pages_category_page2/userModule/login')" |
| 14 | 14 | v-if="userItem.name===undefined "> |
| 15 | 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 | 17 | <view class="user-info"> |
| 18 | 18 | <view class="user-logoin-title u-skeleton-fillet">点击登录</view> |
| 19 | 19 | <view class="user-logoin-lable u-skeleton-fillet">登录后享受更多权益~</view> |
| 20 | 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 | 22 | <view class="notice"> |
| 23 | 23 | <view class="messNum" v-if="userItem.notRead>0">{{ userItem.notRead }} |
| 24 | 24 | </view> |
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | @click="handleJump('../../../pages_category_page2/userModule/personalDetails')" |
| 31 | 31 | v-if="userItem.headImage" :src="$baseURL+userItem.headImage" |
| 32 | 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 | 34 | mode="widthFix"> |
| 35 | 35 | </image> |
| 36 | 36 | <view class="user-info"> | ... | ... |
ceres-uniapp-master/pages_category_page1/coupon/22.vue
| ... | ... | @@ -36,7 +36,7 @@ |
| 36 | 36 | </view> |
| 37 | 37 | <!-- 触底 --> |
| 38 | 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 | 40 | mode="widthFix"></image> |
| 41 | 41 | <text class="reach-text">这里到底了哦~~</text> |
| 42 | 42 | </view> |
| ... | ... | @@ -156,7 +156,7 @@ |
| 156 | 156 | margin-top: 40rpx; |
| 157 | 157 | padding: 25rpx 35rpx; |
| 158 | 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 | 160 | background-repeat: no-repeat; |
| 161 | 161 | background-size: contain; |
| 162 | 162 | background-position: right top; | ... | ... |
ceres-uniapp-master/pages_category_page1/coupon/list.vue
| ... | ... | @@ -70,7 +70,7 @@ |
| 70 | 70 | |
| 71 | 71 | <!-- 触底 --> |
| 72 | 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 | 74 | mode="widthFix"></image> |
| 75 | 75 | <text class="reach-text">这里到底了哦~~</text> |
| 76 | 76 | </view> |
| ... | ... | @@ -253,7 +253,7 @@ |
| 253 | 253 | margin-top: 40rpx; |
| 254 | 254 | padding: 25rpx 35rpx; |
| 255 | 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 | 257 | background-repeat: no-repeat; |
| 258 | 258 | background-size: contain; |
| 259 | 259 | background-position: right top; | ... | ... |
ceres-uniapp-master/pages_category_page1/coupon/product.vue
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | |
| 5 | 5 | <view class="productList"> |
| 6 | 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 | 8 | <text class="fs24 font-color-C83732" v-if="currentCoupon.discountMode === 1">以下商品使用满{{currentCoupon.fullMoney}}元减{{currentCoupon.reduceMoney}}元的优惠券</text> |
| 9 | 9 | <text class="fs24 font-color-C83732" v-else>以下商品使用满{{currentCoupon.fullMoney}}打{{currentCoupon.reduceMoney}}折</text> |
| 10 | 10 | </view> |
| ... | ... | @@ -23,7 +23,7 @@ |
| 23 | 23 | </view> |
| 24 | 24 | </view> |
| 25 | 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 | 27 | <label class="font-color-999 fs26 mar-top-30">暂无可用商品~</label> |
| 28 | 28 | </view> |
| 29 | 29 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/discount/discount.vue
| ... | ... | @@ -52,7 +52,7 @@ |
| 52 | 52 | <view class="price"> |
| 53 | 53 | <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800"> |
| 54 | 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 | 56 | </view> |
| 57 | 57 | <view class="flex-row-plus flex-items priceInfo"> |
| 58 | 58 | <label class="fs24">¥</label> |
| ... | ... | @@ -309,7 +309,7 @@ page { |
| 309 | 309 | .discountBg { |
| 310 | 310 | width: 100%; |
| 311 | 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 | 313 | background-size: contain; |
| 314 | 314 | position: relative; |
| 315 | 315 | .discountInfoBox { |
| ... | ... | @@ -321,7 +321,7 @@ page { |
| 321 | 321 | height: 99rpx; |
| 322 | 322 | line-height: 99rpx; |
| 323 | 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 | 325 | font-size: 28rpx; |
| 326 | 326 | color: #FFFFFF; |
| 327 | 327 | background-size: contain; | ... | ... |
ceres-uniapp-master/pages_category_page1/discount/groupBuy.vue
| ... | ... | @@ -3,7 +3,7 @@ |
| 3 | 3 | <global-loading /> |
| 4 | 4 | |
| 5 | 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 | 7 | </view> |
| 8 | 8 | <view |
| 9 | 9 | class="countdown" |
| ... | ... | @@ -100,7 +100,7 @@ |
| 100 | 100 | <view class="price"> |
| 101 | 101 | <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800"> |
| 102 | 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 | 104 | </view> |
| 105 | 105 | <view class="flex-row-plus flex-items priceInfo"> |
| 106 | 106 | <label class="fs24">¥</label> |
| ... | ... | @@ -145,7 +145,7 @@ |
| 145 | 145 | > |
| 146 | 146 | <image |
| 147 | 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 | 149 | ></image> |
| 150 | 150 | <label class="font-color-999 fs26 mar-top-30">暂无活动商品~</label> |
| 151 | 151 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/discount/platformDiscount.vue
| ... | ... | @@ -50,7 +50,7 @@ |
| 50 | 50 | <view class="price"> |
| 51 | 51 | <view class="currentPrice flex-row-plus flex-items-plus font-color-FF7800"> |
| 52 | 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 | 54 | </view> |
| 55 | 55 | <view class="flex-row-plus flex-items priceInfo"> |
| 56 | 56 | <label class="fs24">¥</label> |
| ... | ... | @@ -67,7 +67,7 @@ |
| 67 | 67 | </view> |
| 68 | 68 | </view> |
| 69 | 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 | 71 | <label class="font-color-999 fs26 mar-top-30">暂无活动商品~</label> |
| 72 | 72 | </view> |
| 73 | 73 | </view> |
| ... | ... | @@ -315,7 +315,7 @@ page { |
| 315 | 315 | .discountBg { |
| 316 | 316 | width: 100%; |
| 317 | 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 | 319 | background-size: contain; |
| 320 | 320 | position: relative; |
| 321 | 321 | .discountInfoBox { |
| ... | ... | @@ -327,7 +327,7 @@ page { |
| 327 | 327 | height: 99rpx; |
| 328 | 328 | line-height: 91rpx; |
| 329 | 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 | 331 | font-size: 28rpx; |
| 332 | 332 | color: #FFFFFF; |
| 333 | 333 | background-size: contain; | ... | ... |
ceres-uniapp-master/pages_category_page1/discount/spikeList.vue
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | |
| 5 | 5 | <view v-if="!shopSeckillId"> |
| 6 | 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 | 8 | </view> |
| 9 | 9 | <view class="tabs-nav-warp spikeNav"> |
| 10 | 10 | <scroll-view class="tabs-nav" scroll-x="true"> |
| ... | ... | @@ -61,7 +61,7 @@ |
| 61 | 61 | <view class="price"> |
| 62 | 62 | <view class="currentPrice flex-items font-color-FF7800"> |
| 63 | 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 | 65 | </view> |
| 66 | 66 | <view class="flex-row-plus flex-items priceInfo"> |
| 67 | 67 | <label class="fs24">¥</label> | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/distributionOrder.vue
| ... | ... | @@ -13,8 +13,8 @@ |
| 13 | 13 | </view> |
| 14 | 14 | </view> |
| 15 | 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 | 18 | </view> |
| 19 | 19 | </view> |
| 20 | 20 | <view class="upBox" v-if="item.ifOpen == true"> |
| ... | ... | @@ -31,7 +31,7 @@ |
| 31 | 31 | </view> |
| 32 | 32 | </view> |
| 33 | 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 | 35 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 36 | 36 | </view> |
| 37 | 37 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/index.vue
| ... | ... | @@ -42,7 +42,7 @@ |
| 42 | 42 | > |
| 43 | 43 | <image |
| 44 | 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 | 46 | ></image> |
| 47 | 47 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 48 | 48 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/invite.vue
| ... | ... | @@ -5,11 +5,11 @@ |
| 5 | 5 | <view class="rect" @tap.stop> |
| 6 | 6 | <!-- 关闭按钮 --> |
| 7 | 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 | 9 | </view> |
| 10 | 10 | <!-- 内容 --> |
| 11 | 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 | 13 | </view> |
| 14 | 14 | <view style="padding: 30rpx;"> |
| 15 | 15 | <!-- 个人信息 --> |
| ... | ... | @@ -49,7 +49,7 @@ |
| 49 | 49 | <button open-type="share" > |
| 50 | 50 | <view @click="WXfenx" style="flex: 1;text-align: center;display: flex;"> |
| 51 | 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 | 53 | </view> |
| 54 | 54 | <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view> |
| 55 | 55 | </view> |
| ... | ... | @@ -63,7 +63,7 @@ |
| 63 | 63 | <!-- </view>--> |
| 64 | 64 | <view class="linkBtnBox" @click="FZlianj"> |
| 65 | 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 | 67 | </view> |
| 68 | 68 | <view style="margin-left: 10rpx;"> |
| 69 | 69 | 复制链接 | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/promotion.vue
| ... | ... | @@ -4,10 +4,10 @@ |
| 4 | 4 | <view class="warp"> |
| 5 | 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 | 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 | 11 | </view> |
| 12 | 12 | <view style="padding: 30rpx;"> |
| 13 | 13 | <!-- 个人信息 --> |
| ... | ... | @@ -52,7 +52,7 @@ |
| 52 | 52 | <button open-type="share"> |
| 53 | 53 | <view @click="WXfenx" style="flex: 1;text-align: center;display: flex;"> |
| 54 | 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 | 56 | </view> |
| 57 | 57 | <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view> |
| 58 | 58 | </view> |
| ... | ... | @@ -66,7 +66,7 @@ |
| 66 | 66 | <!-- </view>--> |
| 67 | 67 | <view class="linkBtnBox" @click="FZlianj"> |
| 68 | 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 | 70 | </view> |
| 71 | 71 | <view style="margin-left: 10rpx;"> |
| 72 | 72 | 复制链接 | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/recruit.vue
| ... | ... | @@ -191,7 +191,7 @@ |
| 191 | 191 | .topBackImg { |
| 192 | 192 | width: 100%; |
| 193 | 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 | 195 | background-size: 100% 260upx; |
| 196 | 196 | |
| 197 | 197 | .content { | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/salesIndex.vue
| ... | ... | @@ -43,19 +43,19 @@ |
| 43 | 43 | <view class="btnList"> |
| 44 | 44 | <view class="btnListBox flex-row-plus flex-items flex-sp-around"> |
| 45 | 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 | 47 | <label class="fs26 font-color-333">推广店铺</label> |
| 48 | 48 | </view> |
| 49 | 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 | 51 | <label class="fs26 font-color-333">推广商品</label> |
| 52 | 52 | </view> |
| 53 | 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 | 55 | <label class="fs26 font-color-333">分销订单</label> |
| 56 | 56 | </view> |
| 57 | 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 | 59 | <label class="fs26 font-color-333">邀请下级</label> |
| 60 | 60 | </view> |
| 61 | 61 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/shareProduct.vue
| ... | ... | @@ -8,11 +8,11 @@ |
| 8 | 8 | <!-- 关闭按钮 --> |
| 9 | 9 | <view class="guanbiView"> |
| 10 | 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 | 12 | style="width:30px;height:30px;" mode="widthFix"></img> |
| 13 | 13 | <!-- #endif --> |
| 14 | 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 | 16 | style="width:30px;height:30px;" mode="widthFix"></image> |
| 17 | 17 | <!-- #endif --> |
| 18 | 18 | </view> |
| ... | ... | @@ -30,10 +30,10 @@ |
| 30 | 30 | <view class="shareBox" :class="{'width100':noMp}" hover-class="btn-click" @click="WXfenx"> |
| 31 | 31 | <view style="flex: 1;text-align: center;display: flex;"> |
| 32 | 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 | 34 | </view> |
| 35 | 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 | 37 | </view> |
| 38 | 38 | <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">保存到本地</view> |
| 39 | 39 | </view> |
| ... | ... | @@ -41,7 +41,7 @@ |
| 41 | 41 | <view class="linkBtnBox" hover-class="btn-click" @click="FZlianj" v-if="noMp"> |
| 42 | 42 | <view style="flex: 1;text-align: center;display: flex;"> |
| 43 | 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 | 45 | </view> |
| 46 | 46 | <view style="margin-left: 10rpx;"> |
| 47 | 47 | 复制链接 | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/totalAward.vue
| ... | ... | @@ -39,9 +39,9 @@ |
| 39 | 39 | </view> |
| 40 | 40 | <view> |
| 41 | 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 | 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 | 45 | </view> |
| 46 | 46 | </view> |
| 47 | 47 | <view v-if="item.ifOpen == true"> |
| ... | ... | @@ -61,7 +61,7 @@ |
| 61 | 61 | </view> |
| 62 | 62 | </view> |
| 63 | 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 | 65 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 66 | 66 | </view> |
| 67 | 67 | </view> |
| ... | ... | @@ -78,9 +78,9 @@ |
| 78 | 78 | </view> |
| 79 | 79 | <view> |
| 80 | 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 | 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 | 84 | </view> |
| 85 | 85 | </view> |
| 86 | 86 | <view v-if="item.ifOpen == true"> |
| ... | ... | @@ -103,7 +103,7 @@ |
| 103 | 103 | </view> |
| 104 | 104 | </view> |
| 105 | 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 | 107 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 108 | 108 | </view> |
| 109 | 109 | </view> |
| ... | ... | @@ -262,7 +262,7 @@ page { |
| 262 | 262 | .totalAward-topBackImg { |
| 263 | 263 | width: 100%; |
| 264 | 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 | 266 | background-size: 100%; |
| 267 | 267 | margin-top: 30 rpx; |
| 268 | 268 | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/totalClient.vue
| ... | ... | @@ -19,8 +19,8 @@ |
| 19 | 19 | <label class="orderId-box font-color-999">客户昵称:{{item.customerName}}</label> |
| 20 | 20 | </view> |
| 21 | 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 | 24 | </view> |
| 25 | 25 | <view v-if="item.ifOpen == true"> |
| 26 | 26 | <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between"> |
| ... | ... | @@ -35,7 +35,7 @@ |
| 35 | 35 | </view> |
| 36 | 36 | </view> |
| 37 | 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 | 39 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 40 | 40 | </view> |
| 41 | 41 | </view> |
| ... | ... | @@ -125,7 +125,7 @@ page { |
| 125 | 125 | .topBg { |
| 126 | 126 | width: 100%; |
| 127 | 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 | 129 | margin-top: 50rpx; |
| 130 | 130 | text-align: center; |
| 131 | 131 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/totalPersonnel.vue
| ... | ... | @@ -20,8 +20,8 @@ |
| 20 | 20 | <label class="orderId-box font-color-999">手机号:{{item.distributorPhone}}</label> |
| 21 | 21 | </view> |
| 22 | 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 | 25 | </view> |
| 26 | 26 | <view v-if="item.ifOpen == true"> |
| 27 | 27 | <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between"> |
| ... | ... | @@ -33,7 +33,7 @@ |
| 33 | 33 | </view> |
| 34 | 34 | </view> |
| 35 | 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 | 37 | <label class="font-color-999 fs26 mar-top-30 font-color-999">这里空空如也~</label> |
| 38 | 38 | </view> |
| 39 | 39 | </view> |
| ... | ... | @@ -121,7 +121,7 @@ page { |
| 121 | 121 | .topBg { |
| 122 | 122 | width: 100%; |
| 123 | 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 | 125 | margin-top: 50rpx; |
| 126 | 126 | text-align: center; |
| 127 | 127 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/distributionModule/unliquidated.vue
| ... | ... | @@ -40,9 +40,9 @@ |
| 40 | 40 | </view> |
| 41 | 41 | <view> |
| 42 | 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 | 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 | 46 | </view> |
| 47 | 47 | </view> |
| 48 | 48 | <view v-if="item.ifOpen == true"> |
| ... | ... | @@ -58,7 +58,7 @@ |
| 58 | 58 | </view> |
| 59 | 59 | </view> |
| 60 | 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 | 62 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 63 | 63 | </view> |
| 64 | 64 | </view> |
| ... | ... | @@ -75,9 +75,9 @@ |
| 75 | 75 | </view> |
| 76 | 76 | <view> |
| 77 | 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 | 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 | 81 | </view> |
| 82 | 82 | </view> |
| 83 | 83 | <view v-if="item.ifOpen == true"> |
| ... | ... | @@ -96,7 +96,7 @@ |
| 96 | 96 | </view> |
| 97 | 97 | </view> |
| 98 | 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 | 100 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 101 | 101 | </view> |
| 102 | 102 | </view> |
| ... | ... | @@ -253,7 +253,7 @@ page { |
| 253 | 253 | .unliquidated-topBackImg { |
| 254 | 254 | width: 100%; |
| 255 | 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 | 257 | background-size: 100%; |
| 258 | 258 | margin-top: 30 rpx; |
| 259 | 259 | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/addEvaluate.vue
| ... | ... | @@ -229,7 +229,7 @@ |
| 229 | 229 | content: ''; |
| 230 | 230 | height: 71rpx; |
| 231 | 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 | 233 | display: block; |
| 234 | 234 | background-size: contain; |
| 235 | 235 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/canvasGoods.vue
| ... | ... | @@ -43,13 +43,13 @@ |
| 43 | 43 | <!-- <view class="numText" v-if="item.total !=0">限量{{item.total}}件</view>--> |
| 44 | 44 | </view> |
| 45 | 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 | 53 | <view class="font-color-C83732 flex-row-plus"> |
| 54 | 54 | <b>¥</b> |
| 55 | 55 | <label class="fs28">{{item.price}}</label> |
| ... | ... | @@ -68,7 +68,7 @@ |
| 68 | 68 | |
| 69 | 69 | <!-- 搜索为空 --> |
| 70 | 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 | 72 | <label class="font-color-999 fs26 mar-top-30">搜索不到你要找的宝贝呢</label> |
| 73 | 73 | <label class="font-color-999 fs26 mar-top-10">换个词试试吧~</label> |
| 74 | 74 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/combination.vue
| ... | ... | @@ -22,8 +22,8 @@ |
| 22 | 22 | <view class="addInfo"> |
| 23 | 23 | <view class="price">¥{{item.price}}</view> |
| 24 | 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 | 27 | </view> |
| 28 | 28 | </view> |
| 29 | 29 | </view> |
| ... | ... | @@ -374,7 +374,7 @@ page { |
| 374 | 374 | height: 86rpx; |
| 375 | 375 | line-height: 86rpx; |
| 376 | 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 | 378 | background-size: contain; |
| 379 | 379 | overflow: hidden; |
| 380 | 380 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/components/GoodActivityDetail.vue
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | > |
| 31 | 31 | <image |
| 32 | 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 | 34 | ></image> |
| 35 | 35 | <label class="fs24 mar-left-5">分享</label> |
| 36 | 36 | </view> |
| ... | ... | @@ -70,7 +70,7 @@ |
| 70 | 70 | <view class="vipImg flex-items"> |
| 71 | 71 | <image |
| 72 | 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 | 74 | mode="" |
| 75 | 75 | > |
| 76 | 76 | </image> |
| ... | ... | @@ -91,19 +91,19 @@ |
| 91 | 91 | <image |
| 92 | 92 | v-if="[2,4].includes(skuSelect.activityType)" |
| 93 | 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 | 95 | mode="" |
| 96 | 96 | ></image> |
| 97 | 97 | <image |
| 98 | 98 | v-if="[3,5].includes(skuSelect.activityType)" |
| 99 | 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 | 101 | mode="" |
| 102 | 102 | ></image> |
| 103 | 103 | <image |
| 104 | 104 | v-if="skuSelect.activityType === 1" |
| 105 | 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 | 107 | mode="" |
| 108 | 108 | ></image> |
| 109 | 109 | <view class="flex-row-plus flex-items mar-top-10"> |
| ... | ... | @@ -148,12 +148,12 @@ |
| 148 | 148 | <image |
| 149 | 149 | v-if="productInfo.ifCollect === 1" |
| 150 | 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 | 152 | ></image> |
| 153 | 153 | <image |
| 154 | 154 | v-else |
| 155 | 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 | 158 | </image> |
| 159 | 159 | <label class="fs22">收藏</label> |
| ... | ... | @@ -176,7 +176,7 @@ |
| 176 | 176 | <label class="fs24 font-color-C5AA7B">领券</label> |
| 177 | 177 | <image |
| 178 | 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 | 180 | ></image> |
| 181 | 181 | </view> |
| 182 | 182 | </view> |
| ... | ... | @@ -500,7 +500,7 @@ export default { |
| 500 | 500 | |
| 501 | 501 | .seckill-box { |
| 502 | 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 | 504 | padding: 35rpx 30rpx; |
| 505 | 505 | |
| 506 | 506 | .seckill-icon { | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/components/GoodEvaluateAndQuestion.vue
| ... | ... | @@ -100,13 +100,13 @@ |
| 100 | 100 | <image |
| 101 | 101 | class="like-img" |
| 102 | 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 | 104 | v-if="commentItem.ifLike === 1" |
| 105 | 105 | ></image> |
| 106 | 106 | <image |
| 107 | 107 | class="like-img" |
| 108 | 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 | 110 | v-else |
| 111 | 111 | ></image> |
| 112 | 112 | <view class="like-num">{{ commentItem.likes }}</view> |
| ... | ... | @@ -120,7 +120,7 @@ |
| 120 | 120 | <label class="fs24">查看全部</label> |
| 121 | 121 | <image |
| 122 | 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 | 124 | ></image> |
| 125 | 125 | </view> |
| 126 | 126 | </view> |
| ... | ... | @@ -151,7 +151,7 @@ |
| 151 | 151 | <label class="fs24">查看全部</label> |
| 152 | 152 | <image |
| 153 | 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 | 155 | ></image> |
| 156 | 156 | </view> |
| 157 | 157 | </view> |
| ... | ... | @@ -353,7 +353,7 @@ const newDataList = dataList.map(item => { |
| 353 | 353 | width: 40rpx; |
| 354 | 354 | height: 26rpx; |
| 355 | 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 | 357 | background-size: contain; |
| 358 | 358 | display: block; |
| 359 | 359 | position: absolute; | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/couponShopList.vue
| ... | ... | @@ -19,7 +19,7 @@ |
| 19 | 19 | </view> |
| 20 | 20 | <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items"> |
| 21 | 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 | 23 | </view> |
| 24 | 24 | </view> |
| 25 | 25 | </view> |
| ... | ... | @@ -44,7 +44,7 @@ |
| 44 | 44 | </view> |
| 45 | 45 | <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items"> |
| 46 | 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 | 48 | </view> |
| 49 | 49 | </view> |
| 50 | 50 | </view> |
| ... | ... | @@ -54,7 +54,7 @@ |
| 54 | 54 | |
| 55 | 55 | <!-- 搜索为空 --> |
| 56 | 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 | 58 | <label class="font-color-999 fs26 mar-top-30">无可用商品</label> |
| 59 | 59 | </view> |
| 60 | 60 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/evaSuccessful.vue
| ... | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | <view class="payCourteous"> |
| 3 | 3 | <view class="evaBox"> |
| 4 | 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 | 6 | </view> |
| 7 | 7 | <view class="successful">评价成功</view> |
| 8 | 8 | <view class="btnBox fs28 font-color-333"> | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/evaluate.vue
| ... | ... | @@ -265,7 +265,7 @@ |
| 265 | 265 | content: ''; |
| 266 | 266 | height: 71rpx; |
| 267 | 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 | 269 | display: block; |
| 270 | 270 | background-size: contain; |
| 271 | 271 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/evaluateDetails.vue
| ... | ... | @@ -7,7 +7,7 @@ |
| 7 | 7 | <view class="evaluate-content flex-items flex-row flex-sp-between"> |
| 8 | 8 | <view class="flex-items"> |
| 9 | 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 | 11 | <label class="fs28 mar-left-20" v-if="commentVOList.name">{{commentVOList.name}}</label> |
| 12 | 12 | <label class="fs28 mar-left-20" v-else>匿名</label> |
| 13 | 13 | </view> |
| ... | ... | @@ -48,19 +48,19 @@ |
| 48 | 48 | <view class="linkBox"> |
| 49 | 49 | <view class="butBox flex-row-plus" v-if="commentVOList.addComment != ''"> |
| 50 | 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 | 53 | <label :class="['mar-left-10',commentVOList.ifLike?'font-color-FFEBC4':'font-color-DDD']">点赞</label> |
| 54 | 54 | </view> |
| 55 | 55 | </view> |
| 56 | 56 | <view class="butBox flex-row-plus" v-else> |
| 57 | 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 | 59 | <label class="mar-left-10 font-color-333">追加评价</label> |
| 60 | 60 | </view> |
| 61 | 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 | 64 | <label :class="['mar-left-10',commentVOList.ifLike?'font-color-FFEBC4':'font-color-DDD']">点赞</label> |
| 65 | 65 | </view> |
| 66 | 66 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/evaluateList.vue
| ... | ... | @@ -40,9 +40,9 @@ |
| 40 | 40 | <text class="font-color-999 fs22">{{item.createTime}}</text> |
| 41 | 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 | 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 | 46 | <text class="mar-left-10 font-color-999">{{item.likes}}</text> |
| 47 | 47 | </view> |
| 48 | 48 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/goodsDetails.vue
| ... | ... | @@ -34,7 +34,7 @@ |
| 34 | 34 | <!-- 发货 --> |
| 35 | 35 | <view class="express-box flex-items flex-row fs24 u-skeleton-fillet"> |
| 36 | 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 | 38 | v-if="productData.receive && productData.receive.receiveAdress"></image> |
| 39 | 39 | <label class="mar-left-10 mapName mar-right-30" |
| 40 | 40 | v-if="productData.receive && productData.receive.receiveAdress">{{ |
| ... | ... | @@ -58,7 +58,7 @@ |
| 58 | 58 | </view> |
| 59 | 59 | </view> |
| 60 | 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 | 62 | </image> |
| 63 | 63 | </view> |
| 64 | 64 | </view> |
| ... | ... | @@ -75,7 +75,7 @@ |
| 75 | 75 | <view class="allMore" @click="handleOpenGroupBookingList">查看全部 |
| 76 | 76 | </view> |
| 77 | 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 | 79 | </image> |
| 80 | 80 | </view> |
| 81 | 81 | </view> |
| ... | ... | @@ -139,13 +139,13 @@ |
| 139 | 139 | <view class="btns_container"> |
| 140 | 140 | <view class="btns flex-column-plus" @click="handleJumpToStore"> |
| 141 | 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 | 143 | </image> |
| 144 | 144 | <label class="fs22">店铺</label> |
| 145 | 145 | </view> |
| 146 | 146 | <view class="btns flex-column-plus" @click="kefu"> |
| 147 | 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 | 149 | </image> |
| 150 | 150 | <label class="fs22">客服</label> |
| 151 | 151 | </view> |
| ... | ... | @@ -156,7 +156,7 @@ |
| 156 | 156 | <view class="cartAllNum" v-if="allCartNum>0">{{ allCartNum }} |
| 157 | 157 | </view> |
| 158 | 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 | 160 | </image> |
| 161 | 161 | <label class="fs22">购物车</label> |
| 162 | 162 | </view> |
| ... | ... | @@ -185,7 +185,7 @@ |
| 185 | 185 | <view class="returnTop-box flex-items-plus flex-column" @click="handleReturnTop" |
| 186 | 186 | :style="{'display':(returnTopFlag===true? 'flex':'none')}"> |
| 187 | 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 | 189 | </view> |
| 190 | 190 | </view> |
| 191 | 191 | <!-- SKU选择器 --> |
| ... | ... | @@ -1169,7 +1169,7 @@ |
| 1169 | 1169 | width: 36rpx; |
| 1170 | 1170 | height: 36rpx; |
| 1171 | 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 | 1173 | background-size: contain; |
| 1174 | 1174 | } |
| 1175 | 1175 | } |
| ... | ... | @@ -1374,7 +1374,7 @@ |
| 1374 | 1374 | |
| 1375 | 1375 | .sceneMarketingBox { |
| 1376 | 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 | 1378 | ) no-repeat center; |
| 1379 | 1379 | padding: 20rpx 30rpx; |
| 1380 | 1380 | background-size: cover; | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/goodsList.vue
| ... | ... | @@ -14,7 +14,7 @@ |
| 14 | 14 | <view class="searchImg-box flex-items-plus"> |
| 15 | 15 | <image |
| 16 | 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 | 18 | ></image> |
| 19 | 19 | <input |
| 20 | 20 | class="search-box" |
| ... | ... | @@ -116,37 +116,37 @@ |
| 116 | 116 | <image |
| 117 | 117 | class="iconImg" |
| 118 | 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 | 120 | ></image> |
| 121 | 121 | <image |
| 122 | 122 | class="iconImg" |
| 123 | 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 | 125 | ></image> |
| 126 | 126 | <image |
| 127 | 127 | class="iconImg" |
| 128 | 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 | 130 | ></image> |
| 131 | 131 | <image |
| 132 | 132 | class="iconImg" |
| 133 | 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 | 135 | ></image> |
| 136 | 136 | <image |
| 137 | 137 | class="iconImg" |
| 138 | 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 | 140 | ></image> |
| 141 | 141 | <image |
| 142 | 142 | class="iconImg" |
| 143 | 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 | 145 | ></image> |
| 146 | 146 | <image |
| 147 | 147 | class="iconImg" |
| 148 | 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 | 150 | ></image> |
| 151 | 151 | <view class="font-color-C83732 flex-row-plus"> |
| 152 | 152 | <b>¥</b> |
| ... | ... | @@ -170,7 +170,7 @@ |
| 170 | 170 | > |
| 171 | 171 | <image |
| 172 | 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 | 174 | ></image> |
| 175 | 175 | <label class="font-color-999 fs26 mar-top-30">搜索不到你要找的宝贝呢</label> |
| 176 | 176 | <label class="font-color-999 fs26 mar-top-10">换个词试试吧~</label> |
| ... | ... | @@ -182,7 +182,7 @@ |
| 182 | 182 | > |
| 183 | 183 | <image |
| 184 | 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 | 186 | mode="widthFix" |
| 187 | 187 | ></image> |
| 188 | 188 | <text class="reach-text">这里到底了哦~~</text> | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/inviteSpell.vue
| ... | ... | @@ -500,7 +500,7 @@ page{background-color: #F7F7F7;} |
| 500 | 500 | flex-direction: column; |
| 501 | 501 | } |
| 502 | 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 | 504 | background-size: contain; |
| 505 | 505 | .grouped { |
| 506 | 506 | text-align: center; | ... | ... |
ceres-uniapp-master/pages_category_page1/goodsModule/userEvaluate.vue
| ... | ... | @@ -32,7 +32,7 @@ |
| 32 | 32 | <view class="evaluate-content flex-items flex-row flex-sp-between "> |
| 33 | 33 | <view class="flex-items"> |
| 34 | 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 | 36 | <view class="skuValue u-skeleton-fillet"> |
| 37 | 37 | <label class="fs28" v-if="item.name">{{item.name}}</label> |
| 38 | 38 | <label class="fs28" v-else>匿名</label> |
| ... | ... | @@ -72,9 +72,9 @@ |
| 72 | 72 | <!-- <view class="flex-items flex-row mar-top-30 flex-sp-between"> |
| 73 | 73 | <view class="font-color-999 fs22">{{item.createTime}}</view> |
| 74 | 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 | 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 | 78 | v-else></image> |
| 79 | 79 | <label class="mar-left-10">{{item.likes}}</label> |
| 80 | 80 | </view> |
| ... | ... | @@ -82,7 +82,7 @@ |
| 82 | 82 | </view> |
| 83 | 83 | </template> |
| 84 | 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 | 86 | <label class="font-color-999 fs26 mar-top-30">你还没有评论哦~</label> |
| 87 | 87 | </view> |
| 88 | 88 | </view> |
| ... | ... | @@ -96,7 +96,7 @@ |
| 96 | 96 | <view class="evaluate-content flex-column" @click="commentDetails(index)" > |
| 97 | 97 | <view class="flex-items"> |
| 98 | 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 | 100 | <label class="fs28 mar-left-20" v-if="item.name">{{item.name}}</label> |
| 101 | 101 | <label class="fs28 mar-left-20" v-else>匿名</label> |
| 102 | 102 | </view> |
| ... | ... | @@ -122,9 +122,9 @@ |
| 122 | 122 | <view class="flex-items flex-row mar-top-30 flex-sp-between"> |
| 123 | 123 | <view class="font-color-999 fs22">{{item.createTime}}</view> |
| 124 | 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 | 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 | 128 | v-else></image> |
| 129 | 129 | <label class="mar-left-10">{{item.likes}}</label> |
| 130 | 130 | </view> |
| ... | ... | @@ -133,7 +133,7 @@ |
| 133 | 133 | </view> |
| 134 | 134 | </template> |
| 135 | 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 | 137 | <label class="font-color-999 fs26 mar-top-30">你还没有评论哦~</label> |
| 138 | 138 | </view> |
| 139 | 139 | </view> |
| ... | ... | @@ -183,13 +183,10 @@ |
| 183 | 183 | name:'', |
| 184 | 184 | comment:'' |
| 185 | 185 | }] |
| 186 | - // this.getMyCommentList() | |
| 187 | - }, | |
| 188 | - onLoad() { | |
| 189 | 186 | this.getMyCommentList() |
| 190 | 187 | }, |
| 191 | - onShow() { | |
| 192 | - this.getMyCommentList() | |
| 188 | + onLoad() { | |
| 189 | + // this.getMyCommentList() | |
| 193 | 190 | }, |
| 194 | 191 | onReachBottom(){ |
| 195 | 192 | if(this.loadingType == 1){ |
| ... | ... | @@ -218,9 +215,17 @@ |
| 218 | 215 | }); |
| 219 | 216 | }, |
| 220 | 217 | commentImgData(imgData) { |
| 221 | - console.log('现在图片',imgData) | |
| 218 | + // console.log('现在图片',imgData) | |
| 222 | 219 | let imgDataResult = [] |
| 223 | 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 | 229 | return imgDataResult |
| 225 | 230 | }, |
| 226 | 231 | evaluateTitleClick(type) { |
| ... | ... | @@ -253,6 +258,7 @@ |
| 253 | 258 | this.myCommentList = res.data |
| 254 | 259 | this.commentVOList = this.commentVOList.concat(res.data.page.list) |
| 255 | 260 | |
| 261 | + | |
| 256 | 262 | this.commentVOList = this.commentVOList.filter(item=>!item.isLoading) |
| 257 | 263 | if (this.commentVOList.length === 0) { |
| 258 | 264 | this.evaluateEmpty = true | ... | ... |
ceres-uniapp-master/pages_category_page1/homeModule/special.vue
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | </view> |
| 31 | 31 | <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items"> |
| 32 | 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 | 34 | </view> |
| 35 | 35 | </view> |
| 36 | 36 | </view> |
| ... | ... | @@ -39,7 +39,7 @@ |
| 39 | 39 | |
| 40 | 40 | <!-- 为空 --> |
| 41 | 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 | 43 | <label class="font-color-999 fs26 mar-top-30">专题商品为空哦~</label> |
| 44 | 44 | </view> |
| 45 | 45 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/integral/exchangeDetail.vue
| ... | ... | @@ -198,12 +198,12 @@ page { |
| 198 | 198 | padding-bottom: 200rpx; |
| 199 | 199 | background: #F8F8F8; |
| 200 | 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 | 202 | background-size: contain; |
| 203 | 203 | height: 350rpx; |
| 204 | 204 | padding: 40rpx 20rpx 0 20rpx; |
| 205 | 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 | 207 | background-size: contain; |
| 208 | 208 | height: 302rpx; |
| 209 | 209 | border-radius: 16rpx; | ... | ... |
ceres-uniapp-master/pages_category_page1/integral/index.vue
| ... | ... | @@ -57,7 +57,7 @@ |
| 57 | 57 | <view class="signInBox"> |
| 58 | 58 | <view class="signItem flex-items flex-sp-between" v-for="(item, index) of integralRecord" :key="index"> |
| 59 | 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 | 61 | <view class="leftInfo"> |
| 62 | 62 | <label class="fs28 font-color-333">{{item.recordContent}}</label> |
| 63 | 63 | <view class="fs24 font-color-999">{{item.createTime}}</view> |
| ... | ... | @@ -66,7 +66,7 @@ |
| 66 | 66 | <view class="rightBtn">{{item.recordType === 1 ? '+' : '-'}}{{item.credit}}</view> |
| 67 | 67 | </view> |
| 68 | 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 | 70 | <label class="font-color-999 fs26 mar-top-30">暂无记录~</label> |
| 71 | 71 | </view> |
| 72 | 72 | </view> |
| ... | ... | @@ -95,7 +95,7 @@ |
| 95 | 95 | </view> |
| 96 | 96 | </view> |
| 97 | 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 | 99 | <label class="font-color-999 fs26 mar-top-30">暂无优惠券~</label> |
| 100 | 100 | </view> |
| 101 | 101 | </view> |
| ... | ... | @@ -114,7 +114,7 @@ |
| 114 | 114 | </view> |
| 115 | 115 | </view> |
| 116 | 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 | 118 | </view> |
| 119 | 119 | </view> |
| 120 | 120 | </tui-modal> |
| ... | ... | @@ -244,7 +244,7 @@ page { |
| 244 | 244 | } |
| 245 | 245 | .memberCenter { |
| 246 | 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 | 248 | background-size: contain; |
| 249 | 249 | min-height: 800rpx; |
| 250 | 250 | padding: 0 20rpx; |
| ... | ... | @@ -311,7 +311,7 @@ page { |
| 311 | 311 | padding: 0 20rpx; |
| 312 | 312 | .signLeft { |
| 313 | 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 | 315 | background-size: contain; |
| 316 | 316 | height: 120rpx; |
| 317 | 317 | width: 96rpx; |
| ... | ... | @@ -340,22 +340,22 @@ page { |
| 340 | 340 | margin-right: 15rpx; |
| 341 | 341 | } |
| 342 | 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 | 344 | background-size: contain; |
| 345 | 345 | } |
| 346 | 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 | 348 | background-size: contain; |
| 349 | 349 | } |
| 350 | 350 | } |
| 351 | 351 | .active { |
| 352 | 352 | background: #333333; |
| 353 | 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 | 355 | background-size: contain; |
| 356 | 356 | } |
| 357 | 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 | 359 | background-size: contain; |
| 360 | 360 | } |
| 361 | 361 | text { |
| ... | ... | @@ -411,7 +411,7 @@ page { |
| 411 | 411 | color: #FDFED6; |
| 412 | 412 | width: 300rpx; |
| 413 | 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 | 415 | background-size: contain; |
| 416 | 416 | padding: 30rpx 25rpx; |
| 417 | 417 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/integral/sign.vue
| ... | ... | @@ -280,7 +280,7 @@ page { |
| 280 | 280 | .signBox { |
| 281 | 281 | padding-bottom: 50rpx; |
| 282 | 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 | 284 | background-size: contain; |
| 285 | 285 | min-height: 702rpx; |
| 286 | 286 | padding-top: 160rpx; |
| ... | ... | @@ -298,14 +298,14 @@ page { |
| 298 | 298 | .signStateBg { |
| 299 | 299 | width: 300rpx; |
| 300 | 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 | 302 | background-size: contain; |
| 303 | 303 | text { |
| 304 | 304 | color: #C83732; |
| 305 | 305 | } |
| 306 | 306 | } |
| 307 | 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 | 309 | background-size: contain; |
| 310 | 310 | text { |
| 311 | 311 | color: #FFFFFF; |
| ... | ... | @@ -334,7 +334,7 @@ page { |
| 334 | 334 | padding: 0 20rpx; |
| 335 | 335 | .redEnvelopeBg { |
| 336 | 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 | 338 | background-size: contain; |
| 339 | 339 | padding-right: 50rpx; |
| 340 | 340 | .exchangeBtn { | ... | ... |
ceres-uniapp-master/pages_category_page1/memberCenter/activityList.vue
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <view class="originalPrice">原价: ¥{{item.originalPrice}}</view> |
| 46 | 46 | <view class="flex-row-plus flex-items-plus"> |
| 47 | 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 | 49 | </view> |
| 50 | 50 | <view class="flex-row-plus flex-items priceInfo"> |
| 51 | 51 | <label class="fs24">¥</label> |
| ... | ... | @@ -307,7 +307,7 @@ page { |
| 307 | 307 | .discountBg { |
| 308 | 308 | width: 100%; |
| 309 | 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 | 311 | background-size: contain; |
| 312 | 312 | position: relative; |
| 313 | 313 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/memberCenter/index.vue
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | <view class="memberTopInfo"> |
| 18 | 18 | <view class="backBox"> |
| 19 | 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 | 21 | class="back" |
| 22 | 22 | @click="back" |
| 23 | 23 | ></image> |
| ... | ... | @@ -134,7 +134,7 @@ |
| 134 | 134 | <view class="signItem flex-items flex-sp-between"> |
| 135 | 135 | <view class="itemLeft flex-items"> |
| 136 | 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 | 138 | </view> |
| 139 | 139 | <view class="leftInfo"> |
| 140 | 140 | <label class="fs28 font-color-333">购物</label> | ... | ... |
ceres-uniapp-master/pages_category_page1/memberCenter/memberSign.vue
| ... | ... | @@ -34,13 +34,13 @@ |
| 34 | 34 | <view class="signDateList"> |
| 35 | 35 | <view class="signItem" v-for="(item, index) of recordList" :key="item.signinId"> |
| 36 | 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 | 38 | </view> |
| 39 | 39 | <view class="dateInfo">{{ index + 1 }}天</view> |
| 40 | 40 | </view> |
| 41 | 41 | <view class="signItem" v-for="index of noSign" :key="index"> |
| 42 | 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 | 44 | </view> |
| 45 | 45 | <!-- #ifdef MP-WEIXIN --> |
| 46 | 46 | <view class="dateInfo">{{recordList.length+index+1}}天</view> |
| ... | ... | @@ -188,7 +188,7 @@ |
| 188 | 188 | |
| 189 | 189 | .memberCenter { |
| 190 | 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 | 192 | background-size: contain; |
| 193 | 193 | min-height: 900rpx; |
| 194 | 194 | padding: 0 20rpx; | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/Intervene.vue
| ... | ... | @@ -163,7 +163,7 @@ page{ |
| 163 | 163 | content: ''; |
| 164 | 164 | height: 71rpx; |
| 165 | 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 | 167 | display: block; |
| 168 | 168 | background-size: contain; |
| 169 | 169 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/addLogistics.vue
| ... | ... | @@ -9,7 +9,7 @@ |
| 9 | 9 | <view class="l">物流公司</view> |
| 10 | 10 | <view class="r-box"> |
| 11 | 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 | 13 | </view> |
| 14 | 14 | </view> |
| 15 | 15 | |
| ... | ... | @@ -564,7 +564,7 @@ |
| 564 | 564 | content: ''; |
| 565 | 565 | height: 71rpx; |
| 566 | 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 | 568 | display: block; |
| 569 | 569 | background-size: contain; |
| 570 | 570 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/afterSaleApplyRefund.vue
| ... | ... | @@ -46,7 +46,7 @@ |
| 46 | 46 | > |
| 47 | 47 | <text>仅退款</text> |
| 48 | 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 | 50 | class="r" |
| 51 | 51 | ></image> |
| 52 | 52 | </view> |
| ... | ... | @@ -57,7 +57,7 @@ |
| 57 | 57 | > |
| 58 | 58 | <text>退货退款</text> |
| 59 | 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 | 61 | class="r" |
| 62 | 62 | ></image> |
| 63 | 63 | </view> |
| ... | ... | @@ -74,7 +74,7 @@ |
| 74 | 74 | > |
| 75 | 75 | <text>未收到货</text> |
| 76 | 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 | 78 | class="r" |
| 79 | 79 | ></image> |
| 80 | 80 | </view> |
| ... | ... | @@ -85,7 +85,7 @@ |
| 85 | 85 | > |
| 86 | 86 | <text>已收到货</text> |
| 87 | 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 | 89 | class="r" |
| 90 | 90 | ></image> |
| 91 | 91 | </view> |
| ... | ... | @@ -98,7 +98,7 @@ |
| 98 | 98 | <view class="r-box"> |
| 99 | 99 | <text v-model="ReturnMoneyQuery.returnReason">{{ liyoutext }}</text> |
| 100 | 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 | 102 | class="r" |
| 103 | 103 | ></image> |
| 104 | 104 | </view> |
| ... | ... | @@ -179,13 +179,13 @@ |
| 179 | 179 | <text class="status-select-title">仅退款</text> |
| 180 | 180 | <image |
| 181 | 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 | 183 | v-if="afterType == 1" |
| 184 | 184 | class="status-select-img" |
| 185 | 185 | ></image> |
| 186 | 186 | <image |
| 187 | 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 | 189 | v-else |
| 190 | 190 | class="status-select-img" |
| 191 | 191 | ></image> |
| ... | ... | @@ -197,13 +197,13 @@ |
| 197 | 197 | <text class="status-select-title">退货退款</text> |
| 198 | 198 | <image |
| 199 | 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 | 201 | v-if="afterType == 2" |
| 202 | 202 | class="status-select-img" |
| 203 | 203 | ></image> |
| 204 | 204 | <image |
| 205 | 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 | 207 | v-else |
| 208 | 208 | class="status-select-img" |
| 209 | 209 | ></image> |
| ... | ... | @@ -233,13 +233,13 @@ |
| 233 | 233 | <text class="status-select-title">未收到货</text> |
| 234 | 234 | <image |
| 235 | 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 | 237 | v-if="ReturnMoneyQuery.goodsState == 0" |
| 238 | 238 | class="status-select-img" |
| 239 | 239 | ></image> |
| 240 | 240 | <image |
| 241 | 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 | 243 | v-else |
| 244 | 244 | class="status-select-img" |
| 245 | 245 | ></image> |
| ... | ... | @@ -251,13 +251,13 @@ |
| 251 | 251 | <text class="status-select-title">已收到货</text> |
| 252 | 252 | <image |
| 253 | 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 | 255 | v-if="ReturnMoneyQuery.goodsState == 1" |
| 256 | 256 | class="status-select-img" |
| 257 | 257 | ></image> |
| 258 | 258 | <image |
| 259 | 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 | 261 | v-else |
| 262 | 262 | class="status-select-img" |
| 263 | 263 | ></image> |
| ... | ... | @@ -294,13 +294,13 @@ |
| 294 | 294 | <text class="status-select-title">{{ item }}</text> |
| 295 | 295 | <image |
| 296 | 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 | 298 | v-if="ReturnMoneyQuery.returnReason == index" |
| 299 | 299 | class="status-select-img" |
| 300 | 300 | ></image> |
| 301 | 301 | <image |
| 302 | 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 | 304 | v-else |
| 305 | 305 | class="status-select-img" |
| 306 | 306 | ></image> |
| ... | ... | @@ -925,7 +925,7 @@ export default { |
| 925 | 925 | content: ''; |
| 926 | 926 | width: 80rpx; |
| 927 | 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 | 929 | background-size: contain; |
| 930 | 930 | } |
| 931 | 931 | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/afterSaleApplyRetund.vue
| ... | ... | @@ -38,14 +38,14 @@ |
| 38 | 38 | v-model="ReturnMoneyQuery.goodsState" |
| 39 | 39 | v-if="ReturnMoneyQuery.goodsState == 0"> |
| 40 | 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 | 42 | class="r"></image> |
| 43 | 43 | </view> |
| 44 | 44 | <view class="r-box" |
| 45 | 45 | v-model="ReturnMoneyQuery.goodsState" |
| 46 | 46 | v-if="ReturnMoneyQuery.goodsState == 1"> |
| 47 | 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 | 49 | class="r"></image> |
| 50 | 50 | </view> |
| 51 | 51 | </view> |
| ... | ... | @@ -54,7 +54,7 @@ |
| 54 | 54 | <view class="l">退款原因</view> |
| 55 | 55 | <view class="r-box"> |
| 56 | 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 | 58 | class="r"></image> |
| 59 | 59 | </view> |
| 60 | 60 | </view> |
| ... | ... | @@ -122,11 +122,11 @@ |
| 122 | 122 | @click="ReturnMoneyQuery.goodsState = 0"> |
| 123 | 123 | <text class="status-select-title">未收到货</text> |
| 124 | 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 | 126 | v-if="ReturnMoneyQuery.goodsState == 0" |
| 127 | 127 | class="status-select-img"></image> |
| 128 | 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 | 130 | v-else |
| 131 | 131 | class="status-select-img"></image> |
| 132 | 132 | </view> |
| ... | ... | @@ -134,11 +134,11 @@ |
| 134 | 134 | @click="ReturnMoneyQuery.goodsState = 1"> |
| 135 | 135 | <text class="status-select-title">已收到货</text> |
| 136 | 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 | 138 | v-if="ReturnMoneyQuery.goodsState == 1" |
| 139 | 139 | class="status-select-img"></image> |
| 140 | 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 | 142 | v-else |
| 143 | 143 | class="status-select-img"></image> |
| 144 | 144 | </view> |
| ... | ... | @@ -167,11 +167,11 @@ |
| 167 | 167 | :key="index"> |
| 168 | 168 | <text class="status-select-title">{{ item }}</text> |
| 169 | 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 | 171 | v-if="ReturnMoneyQuery.returnReason == index" |
| 172 | 172 | class="status-select-img"></image> |
| 173 | 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 | 175 | v-else |
| 176 | 176 | class="status-select-img"></image> |
| 177 | 177 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/index.vue
| ... | ... | @@ -41,7 +41,7 @@ |
| 41 | 41 | /> |
| 42 | 42 | <text class="shop-name">{{ orderItem.shopName }}</text> |
| 43 | 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 | 45 | class="arrow-img" |
| 46 | 46 | /> |
| 47 | 47 | </view> |
| ... | ... | @@ -126,7 +126,7 @@ |
| 126 | 126 | <NoMore :show="!isEmpty && list.length >=listTotal" /> |
| 127 | 127 | <Empty |
| 128 | 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 | 131 | </Empty> |
| 132 | 132 | </view> |
| ... | ... | @@ -842,7 +842,7 @@ page { |
| 842 | 842 | .delIcon { |
| 843 | 843 | width: 40rpx; |
| 844 | 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 | 846 | background-size: contain; |
| 847 | 847 | } |
| 848 | 848 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/logisticsInfo.vue
| ... | ... | @@ -23,7 +23,7 @@ |
| 23 | 23 | </view> |
| 24 | 24 | </view> --> |
| 25 | 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 | 27 | <label class="font-color-999 fs26 mar-top-30">你还没有物流信息哦~</label> |
| 28 | 28 | </view> |
| 29 | 29 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/orderConfirm.vue
| ... | ... | @@ -6,7 +6,7 @@ |
| 6 | 6 | <view v-if="ifShow"> |
| 7 | 7 | <view class="content"> |
| 8 | 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 | 10 | class="address-img"></image> |
| 11 | 11 | <!-- 有地址的 --> |
| 12 | 12 | <view class="address-r" v-if="userAddressInfo.receiveName"> |
| ... | ... | @@ -22,7 +22,7 @@ |
| 22 | 22 | <view class="address-r" v-else> |
| 23 | 23 | <text>你还没有收货地址哦,点击这里添加</text> |
| 24 | 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 | 26 | class="arrow-right-img"></image> |
| 27 | 27 | </view> |
| 28 | 28 | <view class="order-list-box"> |
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | <view class="order-list-top"> |
| 31 | 31 | <view class="top-l"> |
| 32 | 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 | 34 | class="shop-img"> |
| 35 | 35 | </image> |
| 36 | 36 | <text class="shop-name">{{ item.shopName }}</text> |
| ... | ... | @@ -93,7 +93,7 @@ |
| 93 | 93 | {{ item.currentCoupon.reduceMoney }}折券 |
| 94 | 94 | </view> |
| 95 | 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 | 97 | </image> |
| 98 | 98 | </view> |
| 99 | 99 | |
| ... | ... | @@ -128,7 +128,7 @@ |
| 128 | 128 | <view class="discount-info1" v-else-if="couponId.couponName">{{couponId.couponName}}</view> |
| 129 | 129 | <view class="discount-info1" v-else>暂无选择</view> |
| 130 | 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 | 132 | </image> |
| 133 | 133 | </view> |
| 134 | 134 | </view> |
| ... | ... | @@ -186,7 +186,7 @@ |
| 186 | 186 | <view class="activity-box" style="height: 1000rpx;"> |
| 187 | 187 | <view class="title-box"> |
| 188 | 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 | 190 | </image> |
| 191 | 191 | </view> |
| 192 | 192 | <view class="activity-coupon-box"> |
| ... | ... | @@ -212,10 +212,10 @@ |
| 212 | 212 | <view class="info font-color-999">满{{ usableItem.fullMoney }}元可用</view> |
| 213 | 213 | </view> |
| 214 | 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 | 216 | v-if="usableItem.checked"></image> |
| 217 | 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 | 219 | v-else> |
| 220 | 220 | </image> |
| 221 | 221 | </view> |
| ... | ... | @@ -231,7 +231,7 @@ |
| 231 | 231 | <view class="activity-box"> |
| 232 | 232 | <view class="title-box"> |
| 233 | 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 | 235 | </image> |
| 236 | 236 | </view> |
| 237 | 237 | <view class="activity-coupon-box"> |
| ... | ... | @@ -257,10 +257,10 @@ |
| 257 | 257 | <view class="info font-color-999">满{{ sItem.fullMoney }}元可用</view> |
| 258 | 258 | </view> |
| 259 | 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 | 261 | v-if="sItem.checked"></image> |
| 262 | 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 | 264 | v-else> |
| 265 | 265 | </image> |
| 266 | 266 | </view> |
| ... | ... | @@ -276,7 +276,7 @@ |
| 276 | 276 | <view class="activity-box" style="height: 1000rpx;"> |
| 277 | 277 | <view class="title-box"> |
| 278 | 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 | 280 | </image> |
| 281 | 281 | </view> |
| 282 | 282 | <view class="activity-coupon-box"> |
| ... | ... | @@ -306,10 +306,10 @@ |
| 306 | 306 | </view> |
| 307 | 307 | </view> |
| 308 | 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 | 310 | v-if="usableItem.checked"></image> |
| 311 | 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 | 313 | v-else> |
| 314 | 314 | </image> |
| 315 | 315 | </view> |
| ... | ... | @@ -2203,7 +2203,7 @@ |
| 2203 | 2203 | .coupon-item { |
| 2204 | 2204 | width: 48%; |
| 2205 | 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 | 2207 | margin-top: 20upx; |
| 2208 | 2208 | color: #C5AA7B; |
| 2209 | 2209 | flex-shrink: 0; | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/orderConfirm334.vue
| ... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 | @click="addAddressTap" |
| 11 | 11 | > |
| 12 | 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 | 14 | class="address-img" |
| 15 | 15 | ></image> |
| 16 | 16 | <!-- 有地址的 --> |
| ... | ... | @@ -34,7 +34,7 @@ |
| 34 | 34 | <text>你还没有收货地址哦,点击这里添加</text> |
| 35 | 35 | </view> |
| 36 | 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 | 38 | class="arrow-right-img" |
| 39 | 39 | ></image> |
| 40 | 40 | </view> |
| ... | ... | @@ -47,7 +47,7 @@ |
| 47 | 47 | <view class="order-list-top"> |
| 48 | 48 | <view class="top-l"> |
| 49 | 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 | 51 | class="shop-img" |
| 52 | 52 | > |
| 53 | 53 | </image> |
| ... | ... | @@ -130,7 +130,7 @@ |
| 130 | 130 | </view> |
| 131 | 131 | <image |
| 132 | 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 | 134 | ></image> |
| 135 | 135 | </view> |
| 136 | 136 | |
| ... | ... | @@ -181,7 +181,7 @@ |
| 181 | 181 | </view> |
| 182 | 182 | <image |
| 183 | 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 | 185 | ></image> |
| 186 | 186 | </view> |
| 187 | 187 | </view> |
| ... | ... | @@ -277,7 +277,7 @@ |
| 277 | 277 | <image |
| 278 | 278 | class="close-btn" |
| 279 | 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 | 281 | ></image> |
| 282 | 282 | </view> |
| 283 | 283 | <view class="activity-coupon-box"> |
| ... | ... | @@ -319,12 +319,12 @@ |
| 319 | 319 | </view> |
| 320 | 320 | <image |
| 321 | 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 | 323 | v-if="usableItem.checked" |
| 324 | 324 | ></image> |
| 325 | 325 | <image |
| 326 | 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 | 328 | v-else |
| 329 | 329 | > |
| 330 | 330 | </image> |
| ... | ... | @@ -349,7 +349,7 @@ |
| 349 | 349 | <image |
| 350 | 350 | class="close-btn" |
| 351 | 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 | 353 | ></image> |
| 354 | 354 | </view> |
| 355 | 355 | <view class="activity-coupon-box"> |
| ... | ... | @@ -390,12 +390,12 @@ |
| 390 | 390 | </view> |
| 391 | 391 | <image |
| 392 | 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 | 394 | v-if="sItem.checked" |
| 395 | 395 | ></image> |
| 396 | 396 | <image |
| 397 | 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 | 399 | v-else |
| 400 | 400 | > |
| 401 | 401 | </image> |
| ... | ... | @@ -2019,7 +2019,7 @@ page { |
| 2019 | 2019 | .coupon-item { |
| 2020 | 2020 | width: 48%; |
| 2021 | 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 | 2023 | margin-top: 20upx; |
| 2024 | 2024 | color: #C5AA7B; |
| 2025 | 2025 | flex-shrink: 0; | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/orderDetails.vue
| ... | ... | @@ -81,7 +81,7 @@ |
| 81 | 81 | </view> |
| 82 | 82 | <view class="order-details-info-box"> |
| 83 | 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 | 85 | </image> |
| 86 | 86 | <view class="address-r"> |
| 87 | 87 | <view class="address-name-box"> |
| ... | ... | @@ -92,7 +92,7 @@ |
| 92 | 92 | <text>{{ dataList.receiveAdress }} {{ dataList.address }}</text> |
| 93 | 93 | </view> |
| 94 | 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 | 96 | class="arrow-right-img"></image> |
| 97 | 97 | </view> |
| 98 | 98 | |
| ... | ... | @@ -100,10 +100,10 @@ |
| 100 | 100 | <view class="item"> |
| 101 | 101 | <view class="order-list-top"> |
| 102 | 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 | 104 | class="shop-img"></image> |
| 105 | 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 | 107 | class="arrow-img"> |
| 108 | 108 | </image> |
| 109 | 109 | </view> |
| ... | ... | @@ -268,10 +268,10 @@ |
| 268 | 268 | <text class="line"></text> |
| 269 | 269 | <text>物流信息</text> |
| 270 | 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 | 272 | class="arrow-down-img" style="transform:rotate(180deg);" v-if="isShowWuLiu == true"> |
| 273 | 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 | 275 | class="arrow-down-img" v-else> |
| 276 | 276 | </image> |
| 277 | 277 | </view> |
| ... | ... | @@ -287,7 +287,7 @@ |
| 287 | 287 | <!-- <uni-steps :options="steps" direction="column" :active="0"></uni-steps> --> |
| 288 | 288 | </view> |
| 289 | 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 | 291 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 292 | 292 | </view> |
| 293 | 293 | </view> |
| ... | ... | @@ -320,7 +320,7 @@ |
| 320 | 320 | <view class="pay-type-radio"> |
| 321 | 321 | <view class="pay-type-img"> |
| 322 | 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 | 324 | </view> |
| 325 | 325 | <label class="pay-type-label">支付宝支付</label> |
| 326 | 326 | <radio class="pay-type-radio-item" style="transform:scale(0.7)" :checked="paymentMode == 2" |
| ... | ... | @@ -329,7 +329,7 @@ |
| 329 | 329 | <view class="pay-type-radio"> |
| 330 | 330 | <view class="pay-type-img"> |
| 331 | 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 | 333 | </view> |
| 334 | 334 | <label class="pay-type-label">花呗分期</label> |
| 335 | 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 | </view> |
| 8 | 8 | <view class="resultCard"> |
| 9 | 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 | 11 | </view> |
| 12 | 12 | <view class="successful">支付成功</view> |
| 13 | 13 | <view class="btnBox fs28 font-color-333"> |
| ... | ... | @@ -16,7 +16,7 @@ |
| 16 | 16 | </view> |
| 17 | 17 | <view class="orderPolite" v-if="orderPolite.growth || orderPolite.couponList"> |
| 18 | 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 | 20 | </view> |
| 21 | 21 | <view class="rightInfo"> |
| 22 | 22 | <view class="growthBox" | ... | ... |
ceres-uniapp-master/pages_category_page1/orderModule/platformJoin.vue
| ... | ... | @@ -504,7 +504,7 @@ const API = require('../../config/api') |
| 504 | 504 | content: ''; |
| 505 | 505 | height: 71rpx; |
| 506 | 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 | 508 | display: block; |
| 509 | 509 | background-size: contain; |
| 510 | 510 | } | ... | ... |
ceres-uniapp-master/pages_category_page1/search/index/index.vue
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | <view> |
| 5 | 5 | <view class="flex-items-plus flex-row mar-top-20"> |
| 6 | 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 | 8 | <input class="search-box" v-model="keyWord" placeholder-class="searchboxPlace" |
| 9 | 9 | placeholder="请输入您想要的宝贝" /> |
| 10 | 10 | |
| ... | ... | @@ -18,9 +18,9 @@ |
| 18 | 18 | <view class="boxTitle mar-leftgetList-30" v-if="hotSearchList.length>0"> |
| 19 | 19 | <label class="fs30 font-color-999 fs-weight-300">热门搜索</label> |
| 20 | 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 | 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 | 24 | </view> |
| 25 | 25 | <view> |
| 26 | 26 | <view class="flex-wrap-1 flex-row" v-if="isSee"> |
| ... | ... | @@ -38,7 +38,7 @@ |
| 38 | 38 | <view class="historyBox tipsBox"> |
| 39 | 39 | <view class="boxTitle mar-leftgetList-30" v-if="historyList.length>0"> |
| 40 | 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 | 42 | </image> |
| 43 | 43 | </view> |
| 44 | 44 | <view class="historySear-box flex-wrap-1 flex-row"> |
| ... | ... | @@ -51,7 +51,7 @@ |
| 51 | 51 | <label class="font-color-DDD fs22 pad-topbot-10 text-align">|</label> |
| 52 | 52 | <view class="historyIconBox" @click="historyDelOne(item.searchId)"> |
| 53 | 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 | 55 | </view> |
| 56 | 56 | </view> |
| 57 | 57 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page1/store/index.vue
| ... | ... | @@ -5,9 +5,9 @@ |
| 5 | 5 | <!-- 店铺首页 --> |
| 6 | 6 | <view class="content" v-if="id"> |
| 7 | 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 | 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 | 11 | </image> |
| 12 | 12 | <text class="fs24 font-color-999 mar-left-10" style="color:#fff !important">请输入您想要的宝贝</text> |
| 13 | 13 | </view> |
| ... | ... | @@ -24,7 +24,7 @@ |
| 24 | 24 | <!-- #ifdef MP-WEIXIN --> |
| 25 | 25 | <view v-if="hasService" class="btns flex-column-plus mar-left-10" @click="flyToService"> |
| 26 | 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 | 28 | <text>客服</text> |
| 29 | 29 | </view> |
| 30 | 30 | <!-- #endif --> |
| ... | ... | @@ -33,10 +33,10 @@ |
| 33 | 33 | <view class="contentRight"> |
| 34 | 34 | <view class="favorites-box cur-poi" @click="collectToggle"> |
| 35 | 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 | 37 | </image> |
| 38 | 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 | 40 | <text class="text">{{ifCollect === 0? '收藏' : '取消'}}</text> |
| 41 | 41 | </view> |
| 42 | 42 | </view> |
| ... | ... | @@ -44,13 +44,13 @@ |
| 44 | 44 | <!-- <view class="distributorBox flex-items flex-sp-between" @click="applyForRecruit"> |
| 45 | 45 | <view class="distributor"> |
| 46 | 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 | 48 | mode="widthFix"></image> |
| 49 | 49 | <view>成为分销员</view> |
| 50 | 50 | </view> |
| 51 | 51 | </view> |
| 52 | 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 | 54 | </view> |
| 55 | 55 | </view> --> |
| 56 | 56 | <!-- <scroll-view style="white-space: nowrap;width: 100%;" scroll-x="true"> |
| ... | ... | @@ -114,18 +114,18 @@ |
| 114 | 114 | <view class="nav-item-sort" @click="sortTap(2)"> |
| 115 | 115 | <text class="nav-title" :class="{'active' : sortIndex == 2}">价格</text> |
| 116 | 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 | 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 | 120 | v-if="type == 2" class="arrow-img padd-b"></image> |
| 121 | 121 | </view> |
| 122 | 122 | </view> |
| 123 | 123 | <view class="nav-item-sort" @click="sortTap(3)"> |
| 124 | 124 | <text class="nav-title" :class="{'active' : sortIndex == 3}">销量</text> |
| 125 | 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 | 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 | 129 | v-if="volume == 2" class="arrow-img padd-b"></image> |
| 130 | 130 | </view> |
| 131 | 131 | </view> |
| ... | ... | @@ -141,25 +141,25 @@ |
| 141 | 141 | </view> |
| 142 | 142 | <view class="product-price-box"> |
| 143 | 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 | 145 | alt="拼团icon"></image> |
| 146 | 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 | 148 | </image> |
| 149 | 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 | 151 | alt="限时折扣活动"></image> |
| 152 | 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 | 154 | </image> |
| 155 | 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 | 157 | alt="平台折扣"></image> |
| 158 | 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 | 160 | alt="会员价"></image> |
| 161 | 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 | 163 | alt="场景营销"></image> |
| 164 | 164 | <text |
| 165 | 165 | class="price-box fs40 font-color-C83732 mar-right-20">¥{{cItem.price}}</text> |
| ... | ... | @@ -670,7 +670,7 @@ |
| 670 | 670 | margin-top: 20rpx; |
| 671 | 671 | padding: 10rpx; |
| 672 | 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 | 674 | background-repeat: no-repeat; |
| 675 | 675 | background-size: contain; |
| 676 | 676 | background-position: right top; | ... | ... |
ceres-uniapp-master/pages_category_page2/channelCoupon/index.vue
| ... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 | <view class="info"> |
| 11 | 11 | <view class="price-box"> |
| 12 | 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 | 14 | </view> |
| 15 | 15 | <label class="price">¥{{channelCouponData.price}}</label> |
| 16 | 16 | <label class="original-price">¥{{channelCouponData.originalPrice}}</label> |
| ... | ... | @@ -38,7 +38,7 @@ |
| 38 | 38 | </view> |
| 39 | 39 | <div class="pro-list" v-if="productList && productList.length > 0"> |
| 40 | 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 | 42 | </div> |
| 43 | 43 | <div class="product-list"> |
| 44 | 44 | <div class="product-list-box" > |
| ... | ... | @@ -59,12 +59,12 @@ |
| 59 | 59 | <label class="buy-count">{{item.users?item.users: 0}}人付款</label> |
| 60 | 60 | </div> |
| 61 | 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 | 68 | <div class="price"> |
| 69 | 69 | ¥ {{item.price}} |
| 70 | 70 | </div> |
| ... | ... | @@ -258,7 +258,7 @@ export default { |
| 258 | 258 | .coupon{ |
| 259 | 259 | margin: 32rpx 20rpx; |
| 260 | 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 | 262 | display: flex; |
| 263 | 263 | .price{ |
| 264 | 264 | position: relative; | ... | ... |
ceres-uniapp-master/pages_category_page2/distributionModule/distributionOrder.vue
| ... | ... | @@ -12,8 +12,8 @@ |
| 12 | 12 | </view> |
| 13 | 13 | </view> |
| 14 | 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 | 17 | </view> |
| 18 | 18 | </view> |
| 19 | 19 | <view class="upBox" v-if="item.ifOpen == true"> |
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | </view> |
| 31 | 31 | </view> |
| 32 | 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 | 34 | <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label> |
| 35 | 35 | </view> |
| 36 | 36 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page2/livePage/components/liveBox.vue
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | <image class="cover-img" :src="liveData.feedsImg" /> |
| 5 | 5 | <view class="status"> |
| 6 | 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 | 8 | </view> |
| 9 | 9 | <!-- <view class="status-num">1000人</view> --> |
| 10 | 10 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page2/livePage/index.vue
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | /> |
| 9 | 9 | </view> |
| 10 | 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 | 12 | <label class="text font-color-999 fs26 mar-top-30">暂无直播~</label> |
| 13 | 13 | </view> |
| 14 | 14 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page2/orderModule/afterSale.vue
| ... | ... | @@ -10,10 +10,10 @@ |
| 10 | 10 | <view class="top-l" @click="goShop(item.shopId)"> |
| 11 | 11 | <image :src="$baseURL+item.shopLogo" class="shop-img"></image> |
| 12 | 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 | 14 | </view> |
| 15 | 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 | 17 | <text class="order-status">{{item.afterType==1?'退款':'退货'}}</text> |
| 18 | 18 | </view> |
| 19 | 19 | </view> |
| ... | ... | @@ -73,7 +73,7 @@ |
| 73 | 73 | </view> |
| 74 | 74 | </view> |
| 75 | 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 | 77 | <label class="font-color-999 fs26 mar-top-30">暂无售后记录~</label> |
| 78 | 78 | </view> |
| 79 | 79 | </view> | ... | ... |
ceres-uniapp-master/pages_category_page2/orderModule/refundDetails.vue
| ... | ... | @@ -265,7 +265,7 @@ page { |
| 265 | 265 | .order-details-status { |
| 266 | 266 | width: 100%; |
| 267 | 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 | 269 | background-size: contain; |
| 270 | 270 | } |
| 271 | 271 | ... | ... |
ceres-uniapp-master/pages_category_page2/orderModule/returnDetails.vue
| ... | ... | @@ -99,7 +99,7 @@ |
| 99 | 99 | <view class="address-box" v-if='status == 10'> |
| 100 | 100 | <view>商家已同意退货申请,请尽早发货。</view> |
| 101 | 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 | 103 | <view class="address-info-r"> |
| 104 | 104 | <view class="item"> |
| 105 | 105 | <text><text class="title">收货人</text>:</text> | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/accountLogin.vue
| ... | ... | @@ -12,7 +12,7 @@ |
| 12 | 12 | <view class="iphoneNum-box flex-row-plus flex-items"> |
| 13 | 13 | <view style="margin-right: 30rpx"> |
| 14 | 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 | 16 | </view> |
| 17 | 17 | <view> |
| 18 | 18 | <input v-model="loginQuery.account" placeholder-class="iphoneNum-input" type="number" maxlength='11' |
| ... | ... | @@ -23,7 +23,7 @@ |
| 23 | 23 | <view class="code-box"> |
| 24 | 24 | <view style="margin-right: 30rpx"> |
| 25 | 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 | 27 | </view> |
| 28 | 28 | <view> |
| 29 | 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 | 18 | <!-- <city-select v-model="locationShowFalg" @city-change="cityChange"></city-select>--> |
| 19 | 19 | <u-picker-cere mode="region" v-model="locationShowFalg" @confirm="cityChange" :default-region='addressData.defaultRegion' title="所在地"></u-picker-cere> |
| 20 | 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 | 22 | </view> |
| 23 | 23 | </view> |
| 24 | 24 | <view class="detailAddress-box"> |
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | <view class="fs28 addressTag">地址标签</view> |
| 31 | 31 | <view class="flex-items"> |
| 32 | 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 | 34 | </view> |
| 35 | 35 | </view> |
| 36 | 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 | 20 | </view> |
| 21 | 21 | </view> |
| 22 | 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 | 24 | <text>你还没有添加地址哦~</text> |
| 25 | 25 | </view> |
| 26 | 26 | <!-- #ifdef MP-WEIXIN --> |
| 27 | 27 | <view class="wxAddressNBox"> |
| 28 | 28 | <view class="flex-items btnBox flex-sp-between"> |
| 29 | 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 | 31 | <text>微信导入</text> |
| 32 | 32 | </view> --> |
| 33 | 33 | <view class="addAddressBtn btn" @click="addAddressClick">添加新地址</view> |
| ... | ... | @@ -341,7 +341,7 @@ |
| 341 | 341 | width: 50rpx; |
| 342 | 342 | height: 50rpx; |
| 343 | 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 | 345 | background-size: contain; |
| 346 | 346 | } |
| 347 | 347 | } | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/bankcard.vue
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | </view> |
| 18 | 18 | </view> |
| 19 | 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 | 21 | <label>你还没有添加银行卡哦~</label> |
| 22 | 22 | </view> |
| 23 | 23 | <view class="addBankcard-box"> |
| ... | ... | @@ -116,7 +116,7 @@ |
| 116 | 116 | <style lang="scss"> |
| 117 | 117 | .container{ |
| 118 | 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 | 120 | background-size: contain; |
| 121 | 121 | display: block; |
| 122 | 122 | padding-bottom: 85px; |
| ... | ... | @@ -158,7 +158,7 @@ |
| 158 | 158 | .bankcard-detail { |
| 159 | 159 | width: 100%; |
| 160 | 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 | 162 | background-size: contain; |
| 163 | 163 | border-radius: 18rpx; |
| 164 | 164 | .bankname { | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/bindPhone.vue
| ... | ... | @@ -19,7 +19,7 @@ |
| 19 | 19 | <view class="phoneVerify" v-if="verifyType == 1"> |
| 20 | 20 | <view class="iphoneNum-box flex-row-plus flex-items"> |
| 21 | 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 | 23 | </view> |
| 24 | 24 | <view> |
| 25 | 25 | <input v-model="phone" placeholder-class="iphoneNum-input" type="number" placeholder="请输入您的手机号" /> |
| ... | ... | @@ -28,7 +28,7 @@ |
| 28 | 28 | <view class="flex-row-plus mar-top-20"> |
| 29 | 29 | <view class="code-box"> |
| 30 | 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 | 32 | </view> |
| 33 | 33 | <view> |
| 34 | 34 | <input v-model="code" placeholder-class="codeNum-input" placeholder="请输入验证码" /> | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/collection.vue
| ... | ... | @@ -11,7 +11,7 @@ |
| 11 | 11 | <view class="wid function-box"> |
| 12 | 12 | <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> |
| 13 | 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 | 15 | </image> |
| 16 | 16 | <text class="mar-left-10">编辑</text> |
| 17 | 17 | </view> |
| ... | ... | @@ -27,10 +27,10 @@ |
| 27 | 27 | <view class="flex-items selctBtn" v-show="allCheckShow"> |
| 28 | 28 | <image mode="aspectFill" v-if="item.selected == 1" |
| 29 | 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 | 31 | class="cart-select-img"></image> |
| 32 | 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 | 34 | class="cart-select-img"></image> |
| 35 | 35 | </view> |
| 36 | 36 | <view class="infoCent flex-items"> |
| ... | ... | @@ -42,13 +42,13 @@ |
| 42 | 42 | <view class="flex-items"> |
| 43 | 43 | <!-- <image v-if="item.activityType" class="iconImg mar-right-10" |
| 44 | 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 | 52 | <text class="fs40 font-color-C83732">¥</text> |
| 53 | 53 | <text class="fs40 font-color-C83732 mar-right-20">{{item.price}}</text> |
| 54 | 54 | <text |
| ... | ... | @@ -65,9 +65,9 @@ |
| 65 | 65 | <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> |
| 66 | 66 | <view class="left"> |
| 67 | 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 | 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 | 71 | class="cart-select-img" @click="allProductSel(1)"></image> |
| 72 | 72 | <text>全选</text> |
| 73 | 73 | </view> |
| ... | ... | @@ -78,7 +78,7 @@ |
| 78 | 78 | <view v-if="allCheckShow" class="pad-bot-140"></view> |
| 79 | 79 | </view> |
| 80 | 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 | 82 | <view class="tohome-box flex-items-plus">暂无收藏</view> |
| 83 | 83 | </view> |
| 84 | 84 | </view> |
| ... | ... | @@ -86,7 +86,7 @@ |
| 86 | 86 | <view v-if="storeCollect.length>0"> |
| 87 | 87 | <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> |
| 88 | 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 | 90 | </image> |
| 91 | 91 | <text class="mar-left-10">编辑</text> |
| 92 | 92 | </view> |
| ... | ... | @@ -98,10 +98,10 @@ |
| 98 | 98 | <view v-show="allCheckShow" class="selctBtn flex-items"> |
| 99 | 99 | <image mode="aspectFill" v-if="item.selected == 1" |
| 100 | 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 | 102 | class="cart-select-img"></image> |
| 103 | 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 | 105 | class="cart-select-img"></image> |
| 106 | 106 | </view> |
| 107 | 107 | <view class="infoCent"> |
| ... | ... | @@ -116,7 +116,7 @@ |
| 116 | 116 | </view> |
| 117 | 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 | 120 | </view> |
| 121 | 121 | </view> |
| 122 | 122 | <view class="shopImgBox" v-if="item.productList.length>0"> |
| ... | ... | @@ -134,9 +134,9 @@ |
| 134 | 134 | <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> |
| 135 | 135 | <view class="left"> |
| 136 | 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 | 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 | 140 | class="cart-select-img" @click="allStoreSel(1)"></image> |
| 141 | 141 | <text>全选</text> |
| 142 | 142 | </view> |
| ... | ... | @@ -147,7 +147,7 @@ |
| 147 | 147 | <view v-if="allCheckShow" class="pad-bot-140"></view> |
| 148 | 148 | </view> |
| 149 | 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 | 151 | <view class="tohome-box flex-items-plus">暂无收藏</view> |
| 152 | 152 | </view> |
| 153 | 153 | </view> |
| ... | ... | @@ -170,7 +170,7 @@ |
| 170 | 170 | </view> |
| 171 | 171 | </view> |
| 172 | 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 | 174 | </view> |
| 175 | 175 | </tui-modal> |
| 176 | 176 | </view> |
| ... | ... | @@ -187,11 +187,11 @@ |
| 187 | 187 | data() { |
| 188 | 188 | return { |
| 189 | 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 | 196 | collectionTypeList: [{ |
| 197 | 197 | name: '商品' |
| ... | ... | @@ -821,7 +821,7 @@ |
| 821 | 821 | width: 60rpx; |
| 822 | 822 | height: 60rpx; |
| 823 | 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 | 825 | background-size: contain; |
| 826 | 826 | } |
| 827 | 827 | </style> | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/coupon.vue
| ... | ... | @@ -18,13 +18,13 @@ |
| 18 | 18 | </view> |
| 19 | 19 | </view> |
| 20 | 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 | 22 | <label class="font-color-999 fs26 mar-top-30">你还没有优惠券哦~</label> |
| 23 | 23 | </view> |
| 24 | 24 | </view> |
| 25 | 25 | <!-- 触底 --> |
| 26 | 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 | 28 | <text class="reach-text">这里到底了哦~~</text> |
| 29 | 29 | </view> |
| 30 | 30 | </view> |
| ... | ... | @@ -103,7 +103,7 @@ |
| 103 | 103 | .item { |
| 104 | 104 | width: 50%; |
| 105 | 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 | 107 | border-radius: 10rpx; |
| 108 | 108 | margin-top: 20rpx; |
| 109 | 109 | display: flex; | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/footprintList.vue
| ... | ... | @@ -11,7 +11,7 @@ |
| 11 | 11 | <view class="wid function-box"> |
| 12 | 12 | <view class="finishbox" @click="finishClick" v-if="allCheckShow">完成</view> |
| 13 | 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 | 15 | <label class="mar-left-10">编辑</label> |
| 16 | 16 | </view> |
| 17 | 17 | </view> |
| ... | ... | @@ -25,21 +25,21 @@ |
| 25 | 25 | <view class="itemBox"> |
| 26 | 26 | <view @click.stop="toGoodsDetails(item.productId,item.shopId,item.skuId)" class="item wid flex-display"> |
| 27 | 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 | 30 | </view> |
| 31 | 31 | <image class="product-img default-img" mode="aspectFill" :src="$baseURL+item.image" /> |
| 32 | 32 | <!-- 此层wrap在此为必写的,否则可能会出现标题定位错误 --> |
| 33 | 33 | <view class="title-wrap mar-left-20"> |
| 34 | 34 | <text class="title u-line-2 fs28">{{ item.productName }}</text> |
| 35 | 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 | 43 | <label class="fs40 mar-right-20 font-color-C83732">¥{{ item.price }}</label> |
| 44 | 44 | <label class="font-color-CCC discountsPriceLine fs24">¥{{ item.originalPrice }}</label> |
| 45 | 45 | </view> |
| ... | ... | @@ -51,8 +51,8 @@ |
| 51 | 51 | </view> |
| 52 | 52 | <view v-show="allCheckShow" class="allcheck-box flex-row-plus flex-sp-between flex-items"> |
| 53 | 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 | 56 | <text>全选</text> |
| 57 | 57 | </view> |
| 58 | 58 | <view class="right"> |
| ... | ... | @@ -62,7 +62,7 @@ |
| 62 | 62 | <view v-if="allCheckShow" class="pad-bot-140"></view> |
| 63 | 63 | </view> |
| 64 | 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 | 66 | <view class="tohome-box flex-items-plus">去首页逛逛</view> |
| 67 | 67 | </view> |
| 68 | 68 | |
| ... | ... | @@ -78,7 +78,7 @@ |
| 78 | 78 | <view class="btn submit" @click="footprintDel">确定</view> |
| 79 | 79 | </view> |
| 80 | 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 | 82 | </view> |
| 83 | 83 | </tui-modal> |
| 84 | 84 | </view> |
| ... | ... | @@ -497,7 +497,7 @@ page { |
| 497 | 497 | width: 60rpx; |
| 498 | 498 | height: 60rpx; |
| 499 | 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 | 501 | background-size: contain; |
| 502 | 502 | } |
| 503 | 503 | </style> | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/login.vue
| ... | ... | @@ -43,7 +43,7 @@ |
| 43 | 43 | <!-- <view class="iphoneNum-box flex-row-plus flex-items"> |
| 44 | 44 | <view style="margin-right: 30rpx"> |
| 45 | 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 | 47 | </view> |
| 48 | 48 | <view> |
| 49 | 49 | <input v-model="loginQuery.account" placeholder-class="iphoneNum-input" type="number" maxlength='11' |
| ... | ... | @@ -54,7 +54,7 @@ |
| 54 | 54 | <view class="code-box"> |
| 55 | 55 | <view style="margin-right: 30rpx"> |
| 56 | 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 | 58 | </image> |
| 59 | 59 | </view> |
| 60 | 60 | <view> | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/memberAccount.vue
| ... | ... | @@ -14,9 +14,9 @@ |
| 14 | 14 | </view> |
| 15 | 15 | <view class="balance-operation"> |
| 16 | 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 | 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 | 20 | </view> |
| 21 | 21 | </view> |
| 22 | 22 | </view> |
| ... | ... | @@ -94,14 +94,14 @@ page { |
| 94 | 94 | .balance{ |
| 95 | 95 | display: block; |
| 96 | 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 | 98 | background-size: cover; |
| 99 | 99 | text-align:center; |
| 100 | 100 | padding: 100rpx 20rpx 0 20rpx; |
| 101 | 101 | } |
| 102 | 102 | .balanceInfo { |
| 103 | 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 | 105 | height: 342rpx; |
| 106 | 106 | background-size: cover; |
| 107 | 107 | margin: -300rpx auto 0 auto; | ... | ... |
ceres-uniapp-master/pages_category_page2/userModule/messageCenter.vue
| ... | ... | @@ -17,14 +17,14 @@ |
| 17 | 17 | <view class="messageType"> |
| 18 | 18 | <view v-if="item.noticeType == 1" class="messageTypeL"> |
| 19 | 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 | 21 | <view class="redBox" v-if="item.ifRead ===0"></view> |
| 22 | 22 | </view> |
| 23 | 23 | <span>订单消息</span> |
| 24 | 24 | </view> |
| 25 | 25 | <view v-else class="messageTypeL"> |
| 26 | 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 | 28 | </view> |
| 29 | 29 | <span>系统公告</span> |
| 30 | 30 | </view> |
| ... | ... | @@ -42,7 +42,7 @@ |
| 42 | 42 | </u-swipe-action> |
| 43 | 43 | </view> |
| 44 | 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 | 46 | <view class="tohome-box flex-items-plus">暂无消息</view> |
| 47 | 47 | </view> |
| 48 | 48 | </view> |
| ... | ... | @@ -371,7 +371,7 @@ |
| 371 | 371 | display: block; |
| 372 | 372 | width: 28upx; |
| 373 | 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 | 375 | background-size: contain; |
| 376 | 376 | } |
| 377 | 377 | } | ... | ... |