apply-clients 4.1.61-weinan → 4.1.62-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
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<input type="number" class="form-control" v-model="addItem.f_material_price">
|
|
51
51
|
</div>
|
|
52
52
|
<div class="from-group">
|
|
53
|
-
<label>数量</label>
|
|
53
|
+
<label style="color: red">数量</label>
|
|
54
54
|
<input type="number" class="form-control" v-model="addItem.f_material_number">
|
|
55
55
|
</div>
|
|
56
56
|
<div class="from-group">
|
|
@@ -120,12 +120,12 @@ export default {
|
|
|
120
120
|
},
|
|
121
121
|
// 模态框确定按钮保存数据
|
|
122
122
|
async addpaydipetail() {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
throw null
|
|
123
|
+
if(this.addItem.f_material_number==''||this.addItem.f_material_number==null||this.addItem.f_material_number==0){
|
|
124
|
+
//提示数量不能为空
|
|
125
|
+
this.$showMessage('请输入数量必须大于0', 'warning')
|
|
126
|
+
return
|
|
128
127
|
}
|
|
128
|
+
let http = new HttpResetClass()
|
|
129
129
|
this.addItem.f_process_id = this.selectdata.f_process_id
|
|
130
130
|
this.addItem.f_apply_num = this.selectdata.f_apply_num
|
|
131
131
|
this.addItem.f_operator = this.$login.f.name
|