system-phone 1.2.89 → 1.2.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/package.json +1 -1
- package/src/components/LoginApp.vue +11 -0
- package/src/components/LoginAppNew.vue +587 -587
- package/src/components/PhoneSellInfo.vue +5 -2
- package/src/components/userinfo/paymentQuery.vue +189 -189
- package/src/components/userinfo/queryFile.vue +190 -190
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -207,6 +207,17 @@
|
|
|
207
207
|
// 设置登录人
|
|
208
208
|
Vue.user = Util.f = ret.data
|
|
209
209
|
// 对资源菜单进行排序
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
let viewDetails = await Vue.resetpost(`${this.$androidUtil.getProxyUrl()}/rs/search`, {
|
|
213
|
+
source: 'this.getRights().where(row.getType()==$function$ && row.getPath($name$).indexOf($功能权限$) != -1)',
|
|
214
|
+
userid: Vue.user.id
|
|
215
|
+
}, {resolveMsg: null, rejectMsg: null})
|
|
216
|
+
let r = viewDetails.data
|
|
217
|
+
Vue.user.r = []
|
|
218
|
+
r.forEach(x => Vue.user.r.push(x.name))
|
|
219
|
+
|
|
220
|
+
|
|
210
221
|
Vue.functions = this.sortFunctions(ret.data.functions)
|
|
211
222
|
console.log('登陆人信息',JSON.stringify(Vue.user))
|
|
212
223
|
let userStr
|