sale-client 4.2.98 → 4.2.99
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 +4 -4
- package/package.json +1 -1
- package/src/components/common/userinfo_detail/ic_detail/WebHandQueryUser.vue +2 -2
- package/src/components/revenue/machineHandManage/machineDown.vue +10 -0
- package/src/main.js +1 -1
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/.npmignore +0 -12
- package/src/.npmignore +0 -1
- package/yarn.lock +0 -12221
package/build/dev-server.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
2
|
var checkVersion = require('./versionCheck.js')
|
|
3
3
|
checkVersion()
|
|
4
|
-
const [ serverRul, localUrl ] = ['http://
|
|
4
|
+
const [ serverRul, localUrl ] = ['http://121.36.106.17:31467/', 'http://121.36.106.17:31467/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -47,9 +47,9 @@ var devConfig = {
|
|
|
47
47
|
// },
|
|
48
48
|
// target: localUrl
|
|
49
49
|
// },
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
'/rs/pay': {
|
|
51
|
+
target: 'http://localhost:8080'
|
|
52
|
+
},
|
|
53
53
|
// '/api/af-revenue': {
|
|
54
54
|
// pathRewrite: {
|
|
55
55
|
// '/api/af-revenue': '/af-revenue'
|
package/package.json
CHANGED
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
all: [],
|
|
200
200
|
// row数据
|
|
201
201
|
rowsdata: [],
|
|
202
|
-
sqlname: `${this.row.f_meter_type === '物联网表'?'sale_WebHandplanQuery':'sale_HandplanQuery'}`,
|
|
202
|
+
sqlname: `${this.row.f_meter_type === '物联网表' ? 'sale_WebHandplanQuery' : 'sale_HandplanQuery'}`,
|
|
203
203
|
searchValue: this.$appdata.getSingleValue('综合条件查询') ? this.$appdata.getSingleValue('综合条件查询') : 'f_userfiles_id',
|
|
204
204
|
starthead: '',
|
|
205
205
|
fields: {
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
// this.model.search(this.condition, this.model)
|
|
278
278
|
// },
|
|
279
279
|
async search () {
|
|
280
|
-
this.condition = `${this.$refs.paged.$refs.criteria.condition} and ${this.searchValue} = '${this.row[this.searchValue]}'`
|
|
280
|
+
this.condition = `${this.$refs.paged.$refs.criteria.condition} and ${this.searchValue} = '${this.row[this.searchValue]}' and f_orgid = '${this.$login.f.orgid}'`
|
|
281
281
|
this.model.search(this.condition, this.model)
|
|
282
282
|
let http = new HttpResetClass()
|
|
283
283
|
let res = await http.load('POST', `${this.row.f_meter_type === '物联网表'?'api/af-revenue/sql/sale_WebHandplanQuery':'api/af-revenue/sql/sale_HandplanQuery'}`, {
|
|
@@ -33,6 +33,12 @@
|
|
|
33
33
|
condition="f_userinfo_code='{}'" placeholder='客户编号'>
|
|
34
34
|
</div>
|
|
35
35
|
|
|
36
|
+
<div class="col-sm-2 form-group">
|
|
37
|
+
<label class="font_normal_body">旧客户编号</label>
|
|
38
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
|
|
39
|
+
condition="f_olduserinfo_code='{}'" placeholder='客户编号'>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
36
42
|
<div class="span" style="float:right;">
|
|
37
43
|
<button class="button_search button_spacing" @click="$parent.$parent.search()">查询</button>
|
|
38
44
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
@@ -189,6 +195,9 @@
|
|
|
189
195
|
:order.sync="$parent.$parent.$parent.orderFields.f_userinfo_code"></data-order>
|
|
190
196
|
</nobr>
|
|
191
197
|
</th>
|
|
198
|
+
<th>
|
|
199
|
+
<nobr>旧用户编号</nobr>
|
|
200
|
+
</th>
|
|
192
201
|
<!-- <th>-->
|
|
193
202
|
<!-- <nobr>表编号</nobr>-->
|
|
194
203
|
<!-- </th>-->
|
|
@@ -249,6 +258,7 @@
|
|
|
249
258
|
<!--</td>-->
|
|
250
259
|
<td style="text-align: center;">{{$index + 1}}</td>
|
|
251
260
|
<td style="text-align: center;">{{row.f_userinfo_code}}</td>
|
|
261
|
+
<td style="text-align: center;">{{row.f_olduserinfo_code}}</td>
|
|
252
262
|
<!-- <td style="text-align: center;">{{row.f_olduserinfo_code}}</td>-->
|
|
253
263
|
<!-- <td>{{row.f_user_id}}</td>-->
|
|
254
264
|
<td style="text-align: center;">{{row.f_user_name}} {{row.f_address}}</td>
|
package/src/main.js
CHANGED
|
@@ -2,7 +2,7 @@ import Vue from 'vue'
|
|
|
2
2
|
import all from 'vue-client/src/all'
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
|
-
import FilialeSale from './filiale/
|
|
5
|
+
import FilialeSale from './filiale/TaiYuan/sale'
|
|
6
6
|
import sale from './sale'
|
|
7
7
|
import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
package/.npmignore
DELETED
package/src/.npmignore
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|