sale-client 3.5.270 → 3.5.271
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/build/dev-server.js +1 -1
- package/package.json +3 -3
- package/src/components/common/userinfo_detail/ic_detail/HandQueryUser.vue +1 -1
- package/src/filiale/ningjin/FileUserFiles.vue +3 -0
- package/src/filiale/shanxian/components/FilesManage/UserEssentialInfoTest.vue +3 -2
- package/src/filiale/shexian/MeterinfoTest.vue +990 -0
- package/src/filiale/shexian/sale.js +7 -0
- package/src/filiale/wenxi/UserGeneralInfoTest.vue +93 -88
- package/src/filiale/yuansheng/meterinfodetail.vue +8 -8
- package/src/filiale/zhongyi/FileUserFiles.vue +3 -0
- package/src/main.js +1 -1
package/build/dev-server.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
|
-
const [localUrl, serverRul] = ['http://
|
|
2
|
+
const [localUrl, serverRul] = ['http://101.200.150.80:8400/', 'http://101.200.150.80:8400/']
|
|
3
3
|
var merge = require('webpack-merge')
|
|
4
4
|
var baseConfig = require('./webpack.dev.conf')
|
|
5
5
|
var devConfig = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sale-client",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.271",
|
|
4
4
|
"description": "收费模块前台组件",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"karma-sourcemap-loader": "^0.3.7",
|
|
75
75
|
"karma-spec-reporter": "0.0.31",
|
|
76
76
|
"karma-webpack": "^2.0.2",
|
|
77
|
-
"ldap-clients": "3.0.
|
|
77
|
+
"ldap-clients": "3.0.62",
|
|
78
78
|
"less": "^2.7.3",
|
|
79
79
|
"manage-client": "3.1.8-88",
|
|
80
80
|
"mkdirp": "^0.5.1",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"sinon-chai": "^2.8.0",
|
|
90
90
|
"style": "0.0.3",
|
|
91
91
|
"style-loader": "^0.20.3",
|
|
92
|
-
"system-clients": "3.2.
|
|
92
|
+
"system-clients": "3.2.64",
|
|
93
93
|
"url-loader": "^0.5.7",
|
|
94
94
|
"vue-client": "1.24.79",
|
|
95
95
|
"vue-clipboard2": "0.3.1",
|
|
@@ -96,8 +96,8 @@
|
|
|
96
96
|
<tr>
|
|
97
97
|
<td style="text-align:center" v-show="false">{{row.f_hand_date.substring(0,7)}}</td>
|
|
98
98
|
<th v-show="false"><nobr >{{row.datas}}</nobr></th>
|
|
99
|
-
<td style="text-align:center">{{row.f_input_date}}</td>
|
|
100
99
|
<td style="text-align:center">{{row.f_hand_date}}</td>
|
|
100
|
+
<td style="text-align:center">{{row.f_input_date}}</td>
|
|
101
101
|
<td style="text-align:center">{{row.f_last_tablebase}}</td>
|
|
102
102
|
<td style="text-align:center">{{row.f_tablebase}}</td>
|
|
103
103
|
<td style="text-align:center">{{row.f_balance}}</td>
|
|
@@ -957,6 +957,9 @@ let loadParamGem = async function (self) {
|
|
|
957
957
|
self.$showMessage(`本次批量建档共上传${res.data.totalCount}条数据,符合条件的共${res.data.totalsum}条,不符合条件的共${res.data.totalCount -res.data.totalsum}条, 建档成功${res.data.successsum}条,建档失败${res.data.errorsum}条,具体失败数据请在稽查查询错误查询中查看!!`)
|
|
958
958
|
self.iswork = false
|
|
959
959
|
// this.$showAlert('导入成功','success',2000)
|
|
960
|
+
} else {
|
|
961
|
+
self.$showMessage(`建档失败,具体失败数据请在稽查查询错误查询中查看!!`)
|
|
962
|
+
self.iswork = false
|
|
960
963
|
}
|
|
961
964
|
})
|
|
962
965
|
} catch (error) {
|
|
@@ -8,10 +8,11 @@
|
|
|
8
8
|
<input type="text" v-model="baseinfo.base.f_user_name" v-validate:f_user_name='{required: true }'
|
|
9
9
|
class="input_search" style="width:60%" placeholder="客户名称" v-next-el="phone">
|
|
10
10
|
</div>
|
|
11
|
-
<div style="" class="col-sm-4 form-group">
|
|
11
|
+
<div style="" class="col-sm-4 form-group" :class="[$v.f_user_phone.minlength || $v.f_user_phone.maxlength ? 'has-error' : '']">
|
|
12
12
|
<label for="f_user_phone" class="font_normal_body">*客户电话</label>
|
|
13
13
|
<input type="text" maxlength="11" v-model="baseinfo.base.f_user_phone"
|
|
14
14
|
class="input_search" style="width:60%"
|
|
15
|
+
v-validate:f_user_phone="{minlength: 11, maxlength: 11 }"
|
|
15
16
|
placeholder="客户电话" v-el:phone v-next-el="area">
|
|
16
17
|
<button type="button" class="glyphicon glyphicon-plus" @click.stop="phoneManage()"></button>
|
|
17
18
|
</div>
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
v-if="baseinfo.base.f_credentials === '身份证'">
|
|
40
41
|
<label for="f_idnumber" class="font_normal_body">*证件号码</label>
|
|
41
42
|
<input type="text" maxlength="18" v-model="baseinfo.base.f_idnumber"
|
|
42
|
-
class="input_search" style="width:80%"
|
|
43
|
+
class="input_search" style="width:80%" v-validate:f_idnumber2='{identityCardValid: true}'
|
|
43
44
|
placeholder="证件号码">
|
|
44
45
|
</div>
|
|
45
46
|
<div style="" class="col-sm-8 form-group" v-if="baseinfo.base.f_credentials !== '身份证'">
|