|
|
@ -19,6 +19,7 @@ |
|
|
|
<div class="listconadd"> |
|
|
|
<el-form ref="form_obj" :model="formobj" :rules="rules" label-position="right" class="formadd"> |
|
|
|
<div class="wlInfo" style="text-align: center;"><span style="font-size:28px;">外采申请表</span></div> |
|
|
|
<div class="wlInfo" style="text-align: right;"><span style="font-size:14px;">金额单位:元</span></div> |
|
|
|
<br><br> |
|
|
|
<el-row style="border-left: none;"> |
|
|
|
<el-col :span="3" class="tleftb"> |
|
|
@ -88,7 +89,7 @@ |
|
|
|
<span><span class="icon">*</span>销售指导价</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="9" class="trightb"> |
|
|
|
<el-form-item v-show="formobj.externalMiningTypeKey==1" prop="guidedPrice"><el-input size="small" v-model="formobj.guidedPrice" placeholder="销售指导价" class="addinputw" clearable /></el-form-item> |
|
|
|
<el-form-item v-show="formobj.externalMiningTypeKey==1" prop="guidedPrice">{{formobj.guidedPrice}}</el-form-item> |
|
|
|
<el-form-item v-show="formobj.externalMiningTypeKey==2" prop="guidedPrice">{{formobj.guidedPrice}}</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="3" class="tleftb"> |
|
|
@ -163,7 +164,7 @@ |
|
|
|
</el-row> |
|
|
|
<el-row style="border-left: none;"> |
|
|
|
<el-col :span="3" class="tleftb"> |
|
|
|
<span><span class="icon">*</span>备注</span> |
|
|
|
<span>备注</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="21" class="trightb"> |
|
|
|
<el-form-item prop="remarks"><el-input size="small" v-model="formobj.remarks" placeholder="备注" class="addinputw" clearable /></el-form-item> |
|
|
@ -482,7 +483,17 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
showAdd() { |
|
|
|
var nowDate = new Date() |
|
|
|
var date = { |
|
|
|
year: nowDate.getFullYear(), |
|
|
|
month: nowDate.getMonth() + 1, |
|
|
|
day: nowDate.getDate() |
|
|
|
} |
|
|
|
var dayDate = date.year + '-' + (date.month >= 10 ? date.month : '0' + date.month) + '-' + (date.day >= 10 ? date.day : '0' + date.day) |
|
|
|
this.formobj.applicationDate = dayDate |
|
|
|
this.formobj.contract={} |
|
|
|
this.formobj.depositBankName="" |
|
|
|
this.formobj.bankAccount="" |
|
|
|
this.fileList=[] |
|
|
|
this.$nextTick(() => { |
|
|
|
this.$refs['form_obj'].clearValidate() |
|
|
|