HolyKnightIX vor 2 Jahren
Ursprung
Commit
ffc1840af4
2 geänderte Dateien mit 9 neuen und 1 gelöschten Zeilen
  1. +7
    -1
      pages/index/searchbar/detail/index.js
  2. +2
    -0
      pages/specialcourtesy/specialcourtesy.wxss

+ 7
- 1
pages/index/searchbar/detail/index.js Datei anzeigen

@@ -258,12 +258,18 @@ Page({
url: config.api.checkPhoneStatus, url: config.api.checkPhoneStatus,
}) })
.then(res => { .then(res => {
// just a test
// setTimeout(() => {
// wx.redirectTo({
// url: `/pages/getphoneInfo/index?path=searchbarDetail&id=${that.data.id}`,
// })
// }, 2000);
}) })
.catch(err => { .catch(err => {
if (err.code == 11005) { if (err.code == 11005) {
// 手机号没有授权,将值传到用户手机号授权的页面 // 手机号没有授权,将值传到用户手机号授权的页面
wx.redirectTo({ wx.redirectTo({
url: "/pages/getphoneInfo/index?path=searchbarDetail",
url: `/pages/getphoneInfo/index?path=searchbarDetail&id=${that.data.id}`,
}) })
} else { } else {
wx.showToast({ wx.showToast({


+ 2
- 0
pages/specialcourtesy/specialcourtesy.wxss Datei anzeigen

@@ -2,12 +2,14 @@


page { page {
background: linear-gradient(180deg, #FD832D 0%, #FE4A16 100%); background: linear-gradient(180deg, #FD832D 0%, #FE4A16 100%);
padding-bottom: 0;
} }


.codeBox { .codeBox {
background: linear-gradient(180deg, #FD832D 0%, #FE4A16 100%); background: linear-gradient(180deg, #FD832D 0%, #FE4A16 100%);
height: 100%; height: 100%;
overflow: auto; overflow: auto;
padding-bottom: 160rpx;
} }


.none { .none {


Laden…
Abbrechen
Speichern