sale-client 3.7.32-bayan → 3.7.33-bayan
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
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, v4Url ] = ['http://192.168.50.67:31567/', 'http://localhost:8080/', 'http://192.168.50.67:
|
|
4
|
+
const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.67:31567/', 'http://localhost:8080/', 'http://192.168.50.67:31567']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -21,13 +21,13 @@ var devConfig = {
|
|
|
21
21
|
proxy: {
|
|
22
22
|
|
|
23
23
|
'/rs/file': {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
target:
|
|
24
|
+
pathRewrite: {
|
|
25
|
+
'^/rs/file/': '/api/af-revenue/file/'
|
|
26
|
+
},
|
|
27
|
+
target: serverRul
|
|
28
28
|
},
|
|
29
29
|
'/api': {
|
|
30
|
-
target:
|
|
30
|
+
target: v4Url
|
|
31
31
|
},
|
|
32
32
|
'/sketch': {
|
|
33
33
|
target: serverRul,
|
|
@@ -104,6 +104,9 @@ var devConfig = {
|
|
|
104
104
|
'/rs/logic/webHandReverse': {
|
|
105
105
|
target: 'http://localhost:8085'
|
|
106
106
|
},
|
|
107
|
+
'/rs/sql/address_getAddress': {
|
|
108
|
+
target: 'http://127.0.0.1:8081'
|
|
109
|
+
},
|
|
107
110
|
'/rs/logic': {
|
|
108
111
|
target: localUrl
|
|
109
112
|
},
|
|
@@ -117,7 +120,7 @@ var devConfig = {
|
|
|
117
120
|
target: serverRul
|
|
118
121
|
},
|
|
119
122
|
'/rs': {
|
|
120
|
-
target:
|
|
123
|
+
target: serverRul
|
|
121
124
|
// changeOrigin: true
|
|
122
125
|
}
|
|
123
126
|
}
|
package/package.json
CHANGED
|
@@ -237,6 +237,17 @@
|
|
|
237
237
|
</v-select>
|
|
238
238
|
</div>
|
|
239
239
|
</div>
|
|
240
|
+
<div class="row">
|
|
241
|
+
<div style="" class="col-sm-4 form-group" v-if="getConfigShowItem('f_type')"
|
|
242
|
+
v-show="(formconfig && formconfig.f_type && formconfig.f_type.required) || !onlyshowmust"
|
|
243
|
+
:class="[$v.f_type.required ? 'has-error' : '']">
|
|
244
|
+
<label for="f_zuhu_phone" class="font_normal_body">{{getConfigLabelName('f_type','类型')}}</label>
|
|
245
|
+
<v-select id="f_type" :value.sync="baseinfo.base.f_type" v-model="baseinfo.base.f_type"
|
|
246
|
+
:value-single="true"
|
|
247
|
+
:placeholder="getConfigPlaceholder('f_type','类型')"
|
|
248
|
+
:options='type' style="width: 65%" close-on-select></v-select>
|
|
249
|
+
</div>
|
|
250
|
+
</div>
|
|
240
251
|
<div class="row">
|
|
241
252
|
<a style="text-decoration: none;font-weight: 300;float: left;color: #333;margin-top: 15px;font-weight: 500"
|
|
242
253
|
v-if="baseinfo.base.f_cost_type[0] === '银行代扣'">银行信息</a>
|
|
@@ -334,6 +345,7 @@ export default {
|
|
|
334
345
|
userstates: [{label: '预备', value: '预备'}],
|
|
335
346
|
housetype: this.$appdata.getParam('房屋类型'),
|
|
336
347
|
mgq: this.$appdata.getParam('是否煤改气'),
|
|
348
|
+
type: this.$appdata.getParam('类型'),
|
|
337
349
|
costtype: this.$appdata.getParam('付款类型'),
|
|
338
350
|
printstate: this.$appdata.getParam('建档打印类型') ? [{label: '暂不选择', value: '暂不选择'}, ...this.$appdata.getParam('建档打印类型')] : [{label: '暂不选择', value: '暂不选择'}],
|
|
339
351
|
peopleMax: this.$appdata.getSingleValue('最大人口数'),
|
|
@@ -159,6 +159,15 @@
|
|
|
159
159
|
v-validate:f_zuhu_phone=getConfigValidate("f_zuhu_phone",false)
|
|
160
160
|
:placeholder="getConfigPlaceholder('f_zuhu_phone','租户电话')">
|
|
161
161
|
</div>
|
|
162
|
+
<div style="" class="col-sm-4 form-group" v-if="getConfigShowItem('f_type')"
|
|
163
|
+
v-show="(formconfig && formconfig.f_type && formconfig.f_type.required) || !onlyshowmust"
|
|
164
|
+
:class="[$v.f_type.required ? 'has-error' : '']">
|
|
165
|
+
<label for="f_zuhu_phone" class="font_normal_body">{{getConfigLabelName('f_type','类型')}}</label>
|
|
166
|
+
<v-select id="f_type" :value.sync="baseinfo.base.f_type" v-model="baseinfo.base.f_type"
|
|
167
|
+
:value-single="true"
|
|
168
|
+
:placeholder="getConfigPlaceholder('f_type','类型')"
|
|
169
|
+
:options='type' style="width: 65%" close-on-select></v-select>
|
|
170
|
+
</div>
|
|
162
171
|
</div>
|
|
163
172
|
<div class="row">
|
|
164
173
|
<div style="" class="col-sm-8 form-group"
|
|
@@ -406,6 +415,7 @@
|
|
|
406
415
|
banknames: this.$appdata.getParam('银行名称'),
|
|
407
416
|
userstates: this.$appdata.getParam('用户状态'),
|
|
408
417
|
mgq: this.$appdata.getParam('是否煤改气'),
|
|
418
|
+
type: this.$appdata.getParam('类型'),
|
|
409
419
|
signature: this.$appdata.getParam('是否签署合同'),
|
|
410
420
|
peopleMax: this.$appdata.getSingleValue('最大人口数'),
|
|
411
421
|
pointsMax: this.$appdata.getSingleValue('最大用气点数量'),
|