Commit 3bfff9e5de489eabd7192fabef32bd29f4522b96

Authored by 杨鑫
1 parent cbf52ab1

最新1

admin-web-master/src/components/add/addht.vue
... ... @@ -196,7 +196,7 @@ import {
196 196 this.redirectUrl = this.info.redirectUrl
197 197 }
198 198 if(this.info.coverImage){
199   - this.coverImage = this.info.coverImage
  199 + this.coverImage = this.info.coverImage
200 200 }
201 201 },
202 202 methods: {
... ... @@ -271,6 +271,7 @@ import {
271 271 }
272 272 }
273 273 this.formInline.templateInformation = JSON.stringify(this.list1)
  274 +
274 275 let from = {
275 276 ...this.formInline,
276 277 contractChangeReason: this.contractChangeReason,
... ... @@ -289,6 +290,8 @@ import {
289 290 createDate:this.updateCurrentTime(),
290 291 createUser: localStorage.getItem('roleName'),
291 292 }
  293 + // console.log(from)
  294 + // return
292 295 console.error(from)
293 296 let info = await this.culfj()
294 297 console.error(info)
... ... @@ -340,6 +343,7 @@ import {
340 343  
341 344 },
342 345 async add() {
  346 +
343 347 let ismb = false
344 348 await this.$refs.rulesmbinfoForm.validate((valid) => {
345 349 if (valid) {
... ... @@ -398,11 +402,18 @@ import {
398 402 documentAddress: this.templateAttachment,
399 403 insertData: JSON.stringify(info)
400 404 }
  405 +
  406 + if(this.formInline.coverImage){
  407 + this.formInline.coverImage = this.$baseURL+this.formInline.coverImage
  408 + }
  409 + console.log(this.formInline.coverImage,'this.formInline.coverImagethis.formInline.coverImagethis.formInline.coverImage')
  410 + return
401 411 dataInprotDocument(c1).then(res => {
402 412 console.error(res)
403 413 if(res.code == 200 && res.data) {
404 414 this.formInline.appendicesContract = res.data
405 415  
  416 +
406 417 contractinsertAdd({
407 418 ...this.formInline,
408 419 templateInformationUrl:this.templateAttachment,
... ...
admin-web-master/src/components/add/addmap.vue
... ... @@ -26,7 +26,7 @@
26 26 </el-form-item>
27 27 <el-form-item label="轮播图" prop="carouselId" >
28 28 <el-select v-model="formInline.carouselId" placeholder="请选择" style="width: 100%;">
29   - <el-option v-for="(item,index) in tableData" :key="index" :label="'第'+(index+1)+'张'" :value="item.id"></el-option>
  29 + <el-option v-for="(item,index) in tableData" :key="index" :label="'第'+(index+1)+'张'+`${item.type==1?'商城端':'商家端'}`" :value="item.id"></el-option>
30 30 </el-select>
31 31 </el-form-item>
32 32 <el-form-item label="广告尺寸" prop="dimensions" >
... ...
ceres-uniapp-master/components/canvasShow/basics/banner.vue
... ... @@ -42,8 +42,14 @@
42 42 type:1
43 43 }
44 44 NET.request2(API.cereCarouselImage, pagesize, 'POST').then(res => {
45   -
46   - this.bannerList = res.data.content
  45 + res.data.content.map(item=>{
  46 + if(item.state ==1){
  47 + item.imageUrl ='https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/lb/f96559b3-949e-49f3-9db0-72dc59795b0f-0c5150bb-7419-43e2-a8b0-e57c305eb99b-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250110172248.jpg'
  48 + item.jumpUrl = ''
  49 + }
  50 +
  51 + })
  52 + this.bannerList = res.data.content
47 53  
48 54 })
49 55 // uni.request({
... ...
lvdao-miniapp/pages/home/home.vue
... ... @@ -541,6 +541,13 @@
541 541 })
542 542 // 轮播图
543 543 this.$http.sendRequest('/cereCarouselImage/queryByPage', 'POST', this.pageindex, 1).then(res => {
  544 + res.data.data.content.map(item=>{
  545 + if(item.state ==1){
  546 + item.imageUrl ='https://zhgw-uat.028wlkj.com/cdwlMall/zsfwzxt/lb/f96559b3-949e-49f3-9db0-72dc59795b0f-0c5150bb-7419-43e2-a8b0-e57c305eb99b-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20250110172248.jpg'
  547 + item.jumpUrl = ''
  548 + }
  549 +
  550 + })
544 551 this.swiperList = res.data.data.content
545 552 })
546 553 // 营销推广活动
... ...
lvdao-miniapp/pages/propertyPay/payRecord/payRecord.vue
... ... @@ -3,7 +3,7 @@
3 3 <view class="title-top">
4 4 <div class="left" @click="show = true">
5 5 <text>{{year}}年<u-icon name="arrow-down"></u-icon></text>
6   - <u-icon name="arrow-down" style="font-size: 24rpx;margin-left: 10rpx;" />
  6 + <!-- <u-icon name="arrow-down" style="font-size: 24rpx;margin-left: 10rpx;" /> -->
7 7 <u-picker v-model="show" mode="time" :params="{year: true}" @confirm ="change"></u-picker>
8 8 </div>
9 9 <div class="right"><u-icon name="rmb" class="price" /><text class="price">{{allnum}}</text></div>
... ...