乡村相册登录适应

This commit is contained in:
aixianling
2022-05-31 09:55:33 +08:00
parent df834df92e
commit d395bd4085
4 changed files with 22 additions and 7 deletions

View File

@@ -14,14 +14,23 @@ const getFileInfo = (app, file) => {
if (/^App/.test(app.name)) {
let {name, label} = app,
path = app.path.replace(/.+[\\\/]([^\\\/]+)[\\\/]([^\\\/]+)$/g, `/apps/$1/$2`)
apps.list.push({id: file.replace(/\.\/?(vue)?/g, '')?.replace(/[\\\/]/g,'_'), name, label, path, libPath: file.replace(/\\/g, '/').replace(/^src(\/.+)\.vue/, '$1'), type: 'wxwork'})
apps.list.push({
id: file.replace(/\.\/?(vue)?/g, '')?.replace(/[\\\/]/g, '_'),
name,
label,
path,
libPath: file.replace(/\\/g, '/').replace(/^src(\/.+)\.vue/, '$1'),
type: 'wxwork'
})
}
}
const saveApps = app => {
if (app.list.length > 0) {
axios.post("http://192.168.1.87:12525/node/wechatapps/addOrUpdate", app).then(res => {
axios.post("http://192.168.1.87:12525/node/wechatapps/addOrUpdate", app, {timeout: 1000}).then(res => {
if (res.code == 0) chalkTag.done("产品库目录已同步至后台数据库...")
}).catch(() => 0)
}).catch(err => {
console.log(err)
})
}
}

View File

@@ -10,7 +10,8 @@ let instance = axios.create({
})
instance.interceptors.request.use(config => {
store.commit('initWaterMarker')
if (/AppCountryAlbum/.test(location.pathname)) {
console.log(config)
if (/AppCountryAlbum/.test(location.pathname)||config.module=='AppCountryAlbum') {
config.baseURL = '/aca'
config.url = config.url.replace(/(app|auth|admin)\//, "api/")
} else if (/\/node\//.test(config.url)) {

View File

@@ -32,9 +32,11 @@ export default {
target() {
return decodeURIComponent(this.$route.query.back) || ""
},
currentApp() {
return this.apps.find(e => this.target.indexOf(e.libPath) > -1) || {}
},
appPath() {
let app = this.apps.find(e => this.target.indexOf(e.libPath) > -1)
return app?.label || ""
return this.currentApp?.label || ""
}
},
data() {
@@ -48,7 +50,8 @@ export default {
handleLogin() {
this.$refs.loginForm.validate(v => {
if (v) {
this.getToken(this.form).then(() => {
let {name: module} = this.currentApp
this.getToken({...this.form, module}).then(() => {
this.target ? uni.reLaunch({url: this.target}) : uni.navigateBack({})
}).catch(() => 0)
}

View File

@@ -179,9 +179,11 @@ const store = new Vuex.Store({
return encrypted.toString();
}
}
let {module} = params
return new Promise((resolve, reject) => {
http.post("/auth/oauth/token", null, {
withoutToken: true,
module,
params: {
...params, grant_type: 'password',
password: encryptByDES(params.password)