登录密码框样式修改

This commit is contained in:
zmj 2024-05-15 15:58:08 +08:00
parent d5b4b1c9a1
commit 3b092814a2
4 changed files with 23 additions and 7 deletions

View File

@ -684,4 +684,12 @@ export function getVillageInfo(data) {
return requestb.get(`shop_call/getVillageCompany`, data, {
noAuth: true
});
}
/*
获取店铺资质
*/
export function consultApi(data) {
return request.post(`service/consult`, data)
}

View File

@ -15,9 +15,9 @@ let openPlantGrass = '-openPlantGrass-'
let httpSix, httpApi;
const env = 'dev'; // 开发
// const env = 'dev'; // 开发
// const env = 'prod'; // 生产
// const env = 'prew'; // 预上线
const env = 'prew'; // 预上线
switch (env) {
case 'prod':

View File

@ -841,7 +841,8 @@
import {
getProductDetail,
getPresellProductDetail,
getStoreDetail
getStoreDetail,
consultApi
} from "@/api/store";
import {
getCombinationDetail
@ -1449,6 +1450,10 @@
this.height();
},
sendProduct() {
consultApi({
user_id: this.toUid,
product_id: this.productId
})
if (this.presellId || this.combinationId) {
if (this.presellId) {
this.sendMsg(this.presellId, 7);

View File

@ -51,8 +51,9 @@
<view class="acea-row row-middle">
<image v-if="type1" @click="type1=false" src="/static/images/eye.png"></image>
<image v-else @click="type1=true" src="/static/images/offeye.png"></image>
<input :type="type1?'password':'input'" placeholder="填写登录密码"
placeholder-class="placeholder" v-model="password" required />
<input style="border: none; outline:none;outline:0" :type="type1?'password':'input'"
placeholder="填写登录密码" placeholder-class="placeholder" v-model="password"
required />
<button class="code" @click="formItem=2">
忘记密码
</button>
@ -129,7 +130,8 @@
<image v-if="type2" @click="type2=false" src="/static/images/eye.png"></image>
<image v-else @click="type2=true" src="/static/images/offeye.png"></image>
<input :type="type2?'password':'input'" placeholder="请输入新密码"
placeholder-class="placeholder" v-model="password" />
placeholder-class="placeholder" style="border: none; outline:none;outline:0"
v-model="password" />
</view>
</view>
<view class="item">
@ -137,7 +139,8 @@
<image v-if="type3" @click="type3=false" src="/static/images/eye.png"></image>
<image v-else @click="type3=true" src="/static/images/offeye.png"></image>
<input :type="type3?'password':'input'" placeholder="请再次输入密码"
placeholder-class="placeholder" v-model="confirm_pwd" />
placeholder-class="placeholder" style="border: none; outline:none;outline:0"
v-model="confirm_pwd" />
</view>
</view>