apply-clients 3.4.89-23 → 3.4.89-25

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "3.4.89-23",
3
+ "version": "3.4.89-25",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -701,7 +701,9 @@
701
701
  let num = row.f_material_price * (row.f_material_number - row.f_quantity_payable )
702
702
  s += num
703
703
  }
704
- this.pricesum = Math.round(s)
704
+ //保留一位小数
705
+ this.pricesum = parseFloat(s.toFixed(1))
706
+
705
707
  }else {
706
708
  this.pricesum = 0
707
709
  }
@@ -12,7 +12,7 @@
12
12
  :class="item.label_bootstraped ? item.label_bootstraped+' control-label-justify control-label' : 'control-label-justify control-label col-sm-6'">{{item.label}}</label>
13
13
  <div :style="item.value_style ? item.value_style:''"
14
14
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
15
- <input class="form-control input_view" style=""
15
+ <input class="form-control input_view" style="font-weight: bolder"
16
16
  :type="item.type"
17
17
  v-model="data.fields[index].value"
18
18
  :placeholder="item.placeholder"
@@ -34,7 +34,7 @@
34
34
  :class="item.label_bootstraped ? item.label_bootstraped+' control-label-justify control-label' : 'control-label-justify control-label col-sm-6'">{{item.label}}</label>
35
35
  <div :style="item.value_style ? item.value_style:''"
36
36
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
37
- <input class="form-control input_view" style=""
37
+ <input class="form-control input_view" style="font-weight: bolder"
38
38
  :type="item.type"
39
39
  v-model="data.fields[index].value"
40
40
  :placeholder="item.placeholder"
@@ -55,7 +55,7 @@
55
55
  :class="item.label_bootstraped ? item.label_bootstraped+' control-label-justify control-label' : 'control-label-justify control-label col-sm-6'">{{item.label}}</label>
56
56
  <div :style="item.value_style ? item.value_style:''"
57
57
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
58
- <input class="form-control input_view" style=""
58
+ <input class="form-control input_view" style="font-weight: bolder;color: black"
59
59
  :type="item.type"
60
60
  maxlength="18"
61
61
  v-model="data.fields[index].value"
@@ -79,7 +79,7 @@
79
79
  :class="item.label_bootstraped ? item.label_bootstraped+' control-label-justify control-label' : 'control-label-justify control-label col-sm-6'">{{item.label}}</label>
80
80
  <div :style="item.value_style ? item.value_style:''"
81
81
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
82
- <input class="form-control input_view" style=""
82
+ <input class="form-control input_view" style="font-weight: bolder;color: black"
83
83
  type="number"
84
84
  oninput="if(value.length > 11) value=value.slice(0,11)"
85
85
  v-validate:f_user_phone="{minlength: 7, maxlength: 11 }"
@@ -128,7 +128,7 @@
128
128
  :class="item.label_bootstraped ? item.label_bootstraped + ' control-label-justify control-label' : 'control-label-justify control-label col-sm-3'">{{item.label}}</label>
129
129
  <div :style="item.value_style ? item.value_style:''"
130
130
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-10'">
131
- <textarea
131
+ <textarea style="font-weight: bolder;color: black"
132
132
  :readonly="item.readonly"
133
133
  :disabled="item.disabled"
134
134
  class="form-control input_view"
@@ -152,7 +152,7 @@
152
152
  :class="item.label_bootstraped ? item.label_bootstraped+' control-label control-label-justify':'control-label-justify control-label col-sm-6'">{{item.label}}</label>
153
153
  <div :style="item.value_style ? item.value_style:''"
154
154
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
155
- <input-select
155
+ <input-select style="font-weight: bolder;color: black"
156
156
  class="select select_list"
157
157
  @blur="onblur(index)"
158
158
  @change="onchange(index)"
@@ -173,7 +173,7 @@
173
173
  :class="item.label_bootstraped ? item.label_bootstraped+' control-label control-label-justify':'control-label-justify control-label col-sm-6'">{{item.label}}</label>
174
174
  <div :style="item.value_style ? item.value_style:''"
175
175
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
176
- <v-select
176
+ <v-select style="font-weight: bolder;color: black"
177
177
  class="select select_list"
178
178
  :value.sync="data.fields[index].value"
179
179
  v-model="data.fields[index].value"
@@ -191,7 +191,7 @@
191
191
  <div :style="item.value_style ? item.value_style:''"
192
192
  :class="item.value_bootstraped ? item.value_bootstraped : 'col-sm-6'">
193
193
  <label class="checkbox-inline" v-for="(index2,row) in item.options">
194
- <input type="checkbox" class=""
194
+ <input type="checkbox" class="" style="font-weight: bolder;color: black"
195
195
  :readonly="data.fields[index].readonly"
196
196
  :disabled="data.fields[index].disabled"
197
197
  v-model="data.fields[index].value"
@@ -976,7 +976,7 @@ res.then((res) => {
976
976
  }
977
977
  .datepicker-input:disabled{
978
978
  border: 1px solid #DDD!important;
979
- color: #ACA899!important;
979
+ color: black!important;
980
980
  width: 100%!important;
981
981
  }
982
982
  </style>
@@ -1008,11 +1008,11 @@ th{
1008
1008
 
1009
1009
  .input_view[readonly]{
1010
1010
  border: 1px solid #DDD!important;
1011
- color:#ACA899!important;
1011
+ color:black!important;
1012
1012
  }
1013
1013
  .input_view:disabled{
1014
1014
  border: 1px solid #DDD!important;
1015
- color:#ACA899!important;
1015
+ color:black!important;
1016
1016
  }
1017
1017
 
1018
1018
  .control-label-justify {