样式修改

This commit is contained in:
THK3121 2023-06-28 16:19:38 +08:00
parent 75ccbb9427
commit d9b07d8973
10 changed files with 25 additions and 19 deletions

View File

@ -230,13 +230,13 @@
let pages = getCurrentPages(), let pages = getCurrentPages(),
currPage = pages[pages.length - 1]; currPage = pages[pages.length - 1];
this.$emit('authColse', false); this.$emit('authColse', false);
// if (this.isGoIndex) { if (this.isGoIndex) {
// uni.switchTab({ uni.switchTab({
// url: '/pages/index/index' url: '/pages/index/index'
// }); });
// } else { } else {
// this.$emit('authColse', false); this.$emit('authColse', false);
// } }
}, },
} }
} }

View File

@ -132,11 +132,13 @@
el.check = false el.check = false
}) })
this.storeTypeList = [ this.storeTypeList = [
{name: '全部', value: '',check: true}, {name: '全部', value: 'trader',check: true},
{name: '自营', value: 'trader',check: false}, {name: '自营', value: 'trader',check: false},
{name: '非自营', value: 'trader',check: false} {name: '非自营', value: 'trader',check: false}
] ]
this.min = this.max = '' this.min = this.max = ''
this.is_trader=''
this.index=0
this.arrFilter() this.arrFilter()
}, },
confirm(){ confirm(){
@ -146,7 +148,8 @@
price_on:this.min, price_on:this.min,
price_off:this.max, price_off:this.max,
status:false, status:false,
is_trader: this.is_trader is_trader: this.is_trader,
} }
this.showBox = false this.showBox = false
this.$emit('confirm',obj,this.index) this.$emit('confirm',obj,this.index)

View File

@ -22,8 +22,8 @@ if (process.env.NODE_ENV === "development") {
// httpApiThree = 'baseUrlTest' // h5跨域配置 // httpApiThree = 'baseUrlTest' // h5跨域配置
// #endif // #endif
} else if (process.env.NODE_ENV === 'production') { } else if (process.env.NODE_ENV === 'production') {
httpApi = 'https://shop.lihaink.cn' // 生产 // httpApi = 'https://shop.lihaink.cn' // 生产
// httpApi = "https://crmeb-test.shop.lihaink.cn" httpApi = "https://crmeb-test.shop.lihaink.cn"
httpApiTwo = 'https://nk.lihaink.cn' // 生产 httpApiTwo = 'https://nk.lihaink.cn' // 生产
httpApiThree = 'http://ceshi-oa.lihaink.cn' //生产 httpApiThree = 'http://ceshi-oa.lihaink.cn' //生产
} }

View File

@ -2,8 +2,8 @@
"name" : "CRMEB", "name" : "CRMEB",
"appid" : "__UNI__3A527D1", "appid" : "__UNI__3A527D1",
"description" : "", "description" : "",
"versionName" : "1.0.9", "versionName" : "1.0.11",
"versionCode" : 132, "versionCode" : 134,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -948,7 +948,8 @@
{ {
"path": "plant_release/index", "path": "plant_release/index",
"style": { "style": {
"navigationBarTitleText": "内容发布" "navigationBarTitleText": "内容发布",
"enablePullDownRefresh":true
} }
}, },
{ {

View File

@ -1625,7 +1625,7 @@
}, },
//#endif //#endif
async imgToBase(url) { async imgToBase(url) {
let res = await imgToBase({ let res = await imgToBase({
image: url image: url
}) })
return res.data.image return res.data.image

View File

@ -2,7 +2,7 @@
<view :style="viewColor"> <view :style="viewColor">
<form @submit="formSubmit" report-submit='true'> <form @submit="formSubmit" report-submit='true'>
<view class="release_content"> <view class="release_content">
<view v-if="community_app_switch.length == 2" class="release_tab acea-row"> <view v-if="community_app_switch.length == 1" class="release_tab acea-row">
<view class="tab_item" v-for="(item, index) in tabList" :key="item.value" :class="{on:tabActive == item.value}" @click="changeTab(item)"> <view class="tab_item" v-for="(item, index) in tabList" :key="item.value" :class="{on:tabActive == item.value}" @click="changeTab(item)">
<text class="iconfont" :class="item.icon"></text>{{item.name}} <text class="iconfont" :class="item.icon"></text>{{item.name}}
</view> </view>
@ -186,6 +186,7 @@
// #endif // #endif
}, },
onLoad(options) { onLoad(options) {
console.log(this.community_app_switch);
this.id = options.id; this.id = options.id;
this.order_id = options.order_id; this.order_id = options.order_id;
this.tabActive = options.type || 1; this.tabActive = options.type || 1;

View File

@ -720,11 +720,11 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: 2000; z-index: 0;
.iconfont { .iconfont {
color: #ffffff; color: #ffffff;
font-size: 12rpx; font-size: 12rpx ;
} }
} }

View File

@ -235,6 +235,7 @@
methods: { methods: {
getMerchantInfo(id) { getMerchantInfo(id) {
merchantInfoAPI({ id }).then(res => { merchantInfoAPI({ id }).then(res => {
console.log(res);
this.images[0].img = res.data.mer_banner this.images[0].img = res.data.mer_banner
this.images[1].img = res.data.mer_avatar this.images[1].img = res.data.mer_avatar
this.images[2].img = res.data.mini_banner this.images[2].img = res.data.mini_banner

View File

@ -401,7 +401,7 @@
where: { where: {
category_id: -1, category_id: -1,
page: 1, page: 1,
limit: 5 limit: 6
}, },
} }
}, },