登录密码框样式修改
This commit is contained in:
parent
d5b4b1c9a1
commit
3b092814a2
@ -684,4 +684,12 @@ export function getVillageInfo(data) {
|
|||||||
return requestb.get(`shop_call/getVillageCompany`, data, {
|
return requestb.get(`shop_call/getVillageCompany`, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
获取店铺资质
|
||||||
|
*/
|
||||||
|
export function consultApi(data) {
|
||||||
|
return request.post(`service/consult`, data)
|
||||||
}
|
}
|
@ -15,9 +15,9 @@ let openPlantGrass = '-openPlantGrass-'
|
|||||||
|
|
||||||
let httpSix, httpApi;
|
let httpSix, httpApi;
|
||||||
|
|
||||||
const env = 'dev'; // 开发
|
// const env = 'dev'; // 开发
|
||||||
// const env = 'prod'; // 生产
|
// const env = 'prod'; // 生产
|
||||||
// const env = 'prew'; // 预上线
|
const env = 'prew'; // 预上线
|
||||||
|
|
||||||
switch (env) {
|
switch (env) {
|
||||||
case 'prod':
|
case 'prod':
|
||||||
|
@ -841,7 +841,8 @@
|
|||||||
import {
|
import {
|
||||||
getProductDetail,
|
getProductDetail,
|
||||||
getPresellProductDetail,
|
getPresellProductDetail,
|
||||||
getStoreDetail
|
getStoreDetail,
|
||||||
|
consultApi
|
||||||
} from "@/api/store";
|
} from "@/api/store";
|
||||||
import {
|
import {
|
||||||
getCombinationDetail
|
getCombinationDetail
|
||||||
@ -1449,6 +1450,10 @@
|
|||||||
this.height();
|
this.height();
|
||||||
},
|
},
|
||||||
sendProduct() {
|
sendProduct() {
|
||||||
|
consultApi({
|
||||||
|
user_id: this.toUid,
|
||||||
|
product_id: this.productId
|
||||||
|
})
|
||||||
if (this.presellId || this.combinationId) {
|
if (this.presellId || this.combinationId) {
|
||||||
if (this.presellId) {
|
if (this.presellId) {
|
||||||
this.sendMsg(this.presellId, 7);
|
this.sendMsg(this.presellId, 7);
|
||||||
|
@ -51,8 +51,9 @@
|
|||||||
<view class="acea-row row-middle">
|
<view class="acea-row row-middle">
|
||||||
<image v-if="type1" @click="type1=false" src="/static/images/eye.png"></image>
|
<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>
|
<image v-else @click="type1=true" src="/static/images/offeye.png"></image>
|
||||||
<input :type="type1?'password':'input'" placeholder="填写登录密码"
|
<input style="border: none; outline:none;outline:0" :type="type1?'password':'input'"
|
||||||
placeholder-class="placeholder" v-model="password" required />
|
placeholder="填写登录密码" placeholder-class="placeholder" v-model="password"
|
||||||
|
required />
|
||||||
<button class="code" @click="formItem=2">
|
<button class="code" @click="formItem=2">
|
||||||
忘记密码
|
忘记密码
|
||||||
</button>
|
</button>
|
||||||
@ -129,7 +130,8 @@
|
|||||||
<image v-if="type2" @click="type2=false" src="/static/images/eye.png"></image>
|
<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>
|
<image v-else @click="type2=true" src="/static/images/offeye.png"></image>
|
||||||
<input :type="type2?'password':'input'" placeholder="请输入新密码"
|
<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>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
@ -137,7 +139,8 @@
|
|||||||
<image v-if="type3" @click="type3=false" src="/static/images/eye.png"></image>
|
<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>
|
<image v-else @click="type3=true" src="/static/images/offeye.png"></image>
|
||||||
<input :type="type3?'password':'input'" placeholder="请再次输入密码"
|
<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>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user