system-phone 3.1.8-1-t7 → 3.1.8-1-t8
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/package.json +1 -1
- package/src/assets//345/205/266/344/273/226/346/224/266/350/264/271.png +0 -0
- package/src/assets//345/205/266/344/273/226/346/224/266/350/264/271/346/212/245/350/241/250.png +0 -0
- package/src/assets//345/206/214/345/206/205/346/216/222/345/272/217/344/277/256/346/224/271.png +0 -0
- package/src/assets//345/256/211/346/243/200/346/203/205/345/206/265/346/237/245/347/234/213.png +0 -0
- package/src/assets//346/212/245/345/273/272/344/270/232/345/212/241.png +0 -0
- package/src/assets//346/212/245/345/273/272/346/224/266/350/264/271/346/237/245/350/257/242.png +0 -0
- package/src/components/LoginAppV4.vue +2 -2
- package/src/components/info/FindUserInfo.vue +11 -0
package/package.json
CHANGED
|
Binary file
|
package/src/assets//345/205/266/344/273/226/346/224/266/350/264/271/346/212/245/350/241/250.png
ADDED
|
Binary file
|
package/src/assets//345/206/214/345/206/205/346/216/222/345/272/217/344/277/256/346/224/271.png
ADDED
|
Binary file
|
package/src/assets//345/256/211/346/243/200/346/203/205/345/206/265/346/237/245/347/234/213.png
ADDED
|
Binary file
|
|
Binary file
|
package/src/assets//346/212/245/345/273/272/346/224/266/350/264/271/346/237/245/350/257/242.png
ADDED
|
Binary file
|
|
@@ -76,9 +76,9 @@ let asyncReady = async function (self, url) {
|
|
|
76
76
|
const dir_module = res.data.global.dir_module
|
|
77
77
|
for(let mod in dir_module) {
|
|
78
78
|
if (dir_module[mod].name !== 'af-safecheck') {
|
|
79
|
-
let mod_url =
|
|
79
|
+
let mod_url = `${url}/api/${dir_module[mod].name}/vue`
|
|
80
80
|
if (!dir_module[mod].name.startsWith('af-')) {
|
|
81
|
-
mod_url =
|
|
81
|
+
mod_url = `${url}/${dir_module[mod].name}/rs/vue`
|
|
82
82
|
}
|
|
83
83
|
const config = await Vue.resetget(mod_url, {data: {}}, {resolveMsg: null, rejectMsg: null})
|
|
84
84
|
vueConfig[dir_module[mod].name] = config.data;
|
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
<!-- </div>-->
|
|
5
5
|
<div class="select-overspread auto" style="padding-bottom:5px;">
|
|
6
6
|
<div class="auto repair-info-content compatible">
|
|
7
|
+
<div class="row" style="display: flex;align-items: center">
|
|
8
|
+
<div class="col-xs-3 col-sm-3 col-md-3 form-input-group">
|
|
9
|
+
模糊查询:
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col-xs-9 col-sm-9 col-md-9 form-input-group mg8">
|
|
12
|
+
<input type="text" class="form-control" v-model="model.f_userinfo" placeholder='模糊查询'>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
7
15
|
<div class="row" style="display: flex;align-items: center">
|
|
8
16
|
<div class="col-xs-3 col-sm-3 col-md-3 form-input-group">
|
|
9
17
|
用户编号:
|
|
@@ -92,6 +100,9 @@ export default {
|
|
|
92
100
|
condition += this.model.f_userid ? ` and ti.f_userinfo_code = '${this.model.f_userid}'` : ' and 1=1'
|
|
93
101
|
condition += this.model.f_username ? ` and ti.f_user_name like '%${this.model.f_username}%'` : ' and 1=1'
|
|
94
102
|
condition += this.model.f_address ? ` and tua.f_address like '%${this.model.f_address}%'` : ' and 1=1'
|
|
103
|
+
if (this.model.f_userinfo){
|
|
104
|
+
condition += ` and (ti.f_userinfo_code like '%${this.model.f_userinfo}%' or ti.f_user_name like '%${this.model.f_userinfo}%' or ti.f_user_phone like '%${this.model.f_userinfo}%' or f_meternumber like '%${this.model.f_userinfo}%' or tua.f_address like '%${this.model.f_userinfo}%')`
|
|
105
|
+
}
|
|
95
106
|
console.log(condition)
|
|
96
107
|
this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/sql/tel_UserInfo`, {
|
|
97
108
|
data: {
|