apply-clients 4.1.38-weinan → 4.1.40-weinan
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
|
@@ -194,16 +194,22 @@ export default {
|
|
|
194
194
|
this.typeNumberList = this.$appdata.getParam(val)
|
|
195
195
|
},
|
|
196
196
|
setmaterialprice(val){
|
|
197
|
-
|
|
197
|
+
if(val==null){
|
|
198
|
+
this.addItem.f_material_price = 0
|
|
199
|
+
}
|
|
198
200
|
this.addItem.f_material_price = this.$appdata.getSingleValue(val)
|
|
199
|
-
console.log("单价信息",this.addItem.f_material_price)
|
|
200
201
|
}
|
|
201
202
|
},
|
|
202
203
|
watch: {
|
|
203
204
|
'typeNumberList'(){
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
}
|
|
205
|
+
this.addItem.f_typenumber=null
|
|
206
|
+
this.addItem.f_material_price = 0
|
|
207
|
+
},
|
|
208
|
+
'typeNameList'() {
|
|
209
|
+
this.addItem.f_typename = null
|
|
210
|
+
this.addItem.f_typenumber = null
|
|
211
|
+
this.addItem.f_material_price = 0
|
|
212
|
+
}
|
|
207
213
|
}
|
|
208
214
|
}
|
|
209
215
|
|