sale-client 4.2.83 → 4.2.85
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/fileHashes/fileHashes.lock +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 +1 -1
- package/.gradle/file-system.probe +0 -0
- package/build/dev-server.js +3 -3
- package/package.json +1 -1
- package/src/filiale/yangchun/BlackList/BlackListList.vue +26 -4
- package/src/filiale/yuncheng/ChangeMeter.vue +1 -0
- package/src/main.js +1 -1
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Thu Oct 30 09:31:24 CST 2025
|
|
2
2
|
gradle.version=5.2.1
|
|
Binary file
|
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://192.168.50.67:
|
|
4
|
+
const [ serverRul, localUrl ] = ['http://192.168.50.67:31467/', 'http://192.168.50.67:31467/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -52,9 +52,9 @@ var devConfig = {
|
|
|
52
52
|
},
|
|
53
53
|
'/api/af-revenue': {
|
|
54
54
|
pathRewrite: {
|
|
55
|
-
'/api/af-revenue': '
|
|
55
|
+
'/api/af-revenue': ''
|
|
56
56
|
},
|
|
57
|
-
target: "http://localhost:
|
|
57
|
+
target: "http://localhost:9026"
|
|
58
58
|
},
|
|
59
59
|
'/api': {
|
|
60
60
|
target: serverRul
|
package/package.json
CHANGED
|
@@ -105,6 +105,23 @@
|
|
|
105
105
|
condition="f_last_check_date >= '{} 00:00:00'"
|
|
106
106
|
></datepicker>
|
|
107
107
|
</div>
|
|
108
|
+
<div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
|
|
109
|
+
<label class="font_normal_body">  至  </label>
|
|
110
|
+
<datepicker placeholder="结束日期"
|
|
111
|
+
style="width:60%"
|
|
112
|
+
class="datepicker"
|
|
113
|
+
v-model="model.end_check_date"
|
|
114
|
+
:value.sync="model.end_check_date"
|
|
115
|
+
:format="'yyyy-MM-dd'"
|
|
116
|
+
condition="f_last_check_date <= '{} 23:59:59'"
|
|
117
|
+
></datepicker>
|
|
118
|
+
</div>
|
|
119
|
+
<div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
|
|
120
|
+
<label class="font_normal_body">操 作 人</label>
|
|
121
|
+
<input :size="model.f_operator ? model.f_operator.length * 2 : 4" class="input_search" condition="f_operator like '%{}%'" placeholder='操作人' style="width:60%"
|
|
122
|
+
type="text"
|
|
123
|
+
v-model="model.f_operator">
|
|
124
|
+
</div>
|
|
108
125
|
<div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
|
|
109
126
|
<label class="font_normal_body">限购日期</label>
|
|
110
127
|
<datepicker placeholder="开始日期"
|
|
@@ -117,10 +134,15 @@
|
|
|
117
134
|
></datepicker>
|
|
118
135
|
</div>
|
|
119
136
|
<div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
|
|
120
|
-
<label class="font_normal_body"
|
|
121
|
-
<
|
|
122
|
-
|
|
123
|
-
|
|
137
|
+
<label class="font_normal_body">  至  </label>
|
|
138
|
+
<datepicker placeholder="结束日期"
|
|
139
|
+
style="width:60%"
|
|
140
|
+
class="datepicker"
|
|
141
|
+
v-model="model.end_parameter_value"
|
|
142
|
+
:value.sync="model.end_parameter_value"
|
|
143
|
+
:format="'yyyy-MM-dd'"
|
|
144
|
+
condition="f_parameter_value <= '{} 23:59:59'"
|
|
145
|
+
></datepicker>
|
|
124
146
|
</div>
|
|
125
147
|
<div class="col-sm-2 form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
|
|
126
148
|
<label class="font_normal_body">审核状态</label>
|
|
@@ -246,6 +246,7 @@
|
|
|
246
246
|
</div>
|
|
247
247
|
<div v-if="config.aroundmeter" class="col-sm-4 form-group" :class="[$v.f_newaroundmeter.required ? 'has-error' : '']">
|
|
248
248
|
<label class="font_normal_body">新表表向</label>
|
|
249
|
+
<input type="text" v-show="false" v-model="model.f_newaroundmeter" v-validate:f_newaroundmeter='{required: true }'>
|
|
249
250
|
<v-select :value.sync="model.f_newaroundmeter" :options='aroundmeters' placeholder='新表表向'
|
|
250
251
|
:value-single="true"
|
|
251
252
|
close-on-select
|
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/yangchun/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'
|