apply-clients 3.4.33 → 3.4.35
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
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<script>
|
|
18
18
|
import Vue from 'vue'
|
|
19
19
|
import {HttpResetClass} from 'vue-client'
|
|
20
|
-
import {isEmpty} from "
|
|
20
|
+
import {isEmpty} from "../../../../../components/Util";
|
|
21
21
|
// Date格式化
|
|
22
22
|
Date.prototype.Format = function (fmt) {
|
|
23
23
|
var o = {
|
|
@@ -1197,7 +1197,7 @@ export default {
|
|
|
1197
1197
|
this.setLabelValue('价格', stairPrice.f_price)
|
|
1198
1198
|
this.setLabelValue('客户类型', stairPrice.f_user_type)
|
|
1199
1199
|
|
|
1200
|
-
this.show_data.f_price_id = stairPrice.
|
|
1200
|
+
this.show_data.f_price_id = stairPrice.id
|
|
1201
1201
|
this.show_data.f_price_name = stairPrice.f_price_name
|
|
1202
1202
|
},
|
|
1203
1203
|
// 是否购买保险
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
|
|
1
3
|
let specialComp = {
|
|
2
4
|
|
|
3
5
|
'app-add-material-science': (resolve) => { require(['./android/Process/Processes/AppAddMaterialScience'], resolve) },
|
|
4
|
-
'app-service-view': (resolve) => { require(['./android/Process/Processes/AppServiceView'], resolve) }
|
|
6
|
+
'app-service-view': (resolve) => { require(['./android/Process/Processes/AppServiceView'], resolve) },
|
|
7
|
+
'app-service-control': (resolve) => { require(['./android/Process/Processes/AppServiceControl'], resolve) }
|
|
5
8
|
}
|
|
6
9
|
exports.specialComp = specialComp
|
|
@@ -1080,8 +1080,7 @@
|
|
|
1080
1080
|
this.setLabelValue('用气性质', stairPrice.f_gasproperties)
|
|
1081
1081
|
this.setLabelValue('价格', stairPrice.f_price)
|
|
1082
1082
|
this.setLabelValue('客户类型', stairPrice.f_user_type)
|
|
1083
|
-
|
|
1084
|
-
this.show_data.f_price_id = stairPrice.f_price_id
|
|
1083
|
+
this.show_data.f_price_id = stairPrice.id
|
|
1085
1084
|
this.show_data.f_price_name = stairPrice.f_price_name
|
|
1086
1085
|
},
|
|
1087
1086
|
// 选择开发商
|