Commit a3a0ce2c authored by 罗成兵's avatar 罗成兵

申请记录发放可修改

parent 8dac47b0
......@@ -65,7 +65,7 @@
<div class="item_box">
<span>*</span>
<van-field type="number" v-model.trim="formData.height" @blur="onBlur(1,formData.height)" label="身高(cm)"
placeholder="请输入身高,1000以内数值"/>
placeholder="请输入身高,范围100cm-200cm"/>
</div>
<div class="item_box">
<span>*</span>
......@@ -361,8 +361,8 @@ export default {
this.formData.womenIdCard = null;
}
}
if (isEmpty(this.formData.height) || this.formData.height < 0 || this.formData.height > 1000) {
this.$toast.tips('请输入身高,1000以内的数值');
if (isEmpty(this.formData.height) || this.formData.height < 100 || this.formData.height > 200) {
this.$toast.tips('请输入身高,范围100cm-200cm');
return false;
}
if (isEmpty(this.formData.weight) || this.formData.weight < 0 || this.formData.weight > 1000) {
......
......@@ -386,7 +386,7 @@ export default {
this.modelType = this.routerParams.routerFlag;
if (this.modelType == 'applyGrant' || this.modelType == 'updateRecord') {//从申请过来的发放
if (this.modelType == 'applyGrant') {
this.disabled = true;
//this.disabled = true;
this.getApplyDetail()
} else {
this.getStockListDetail()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment