|
@@ -20,7 +20,7 @@
|
|
|
<div style="margin-top: 4px">
|
|
|
<el-form-item label="" prop="hshipperDetails">
|
|
|
<el-input type="textarea" style="width: 100%;" v-model="assemblyForm.hshipperDetails"
|
|
|
- size="small" autocomplete="off" :disabled="detailData.seeDisabled" rows="5"
|
|
|
+ size="small" autocomplete="off" :disabled="detailData.seeDisabled" :rows="textareaNumber"
|
|
|
clearable placeholder="请输入发货人提单描述"
|
|
|
@change="textareaBlur('hshipperDetails')"></el-input>
|
|
|
</el-form-item>
|
|
@@ -52,7 +52,7 @@
|
|
|
<div>
|
|
|
<el-form-item label="" prop="hconsigneeDetails">
|
|
|
<el-input type="textarea" style="width: 100%;" v-model="assemblyForm.hconsigneeDetails"
|
|
|
- size="small" autocomplete="off" :disabled="detailData.seeDisabled" rows="5"
|
|
|
+ size="small" autocomplete="off" :disabled="detailData.seeDisabled" :rows="textareaNumber"
|
|
|
clearable placeholder="请输入收货人提单描述"
|
|
|
@change="textareaBlur('hconsigneeDetails')"></el-input>
|
|
|
</el-form-item>
|
|
@@ -73,7 +73,7 @@
|
|
|
<div>
|
|
|
<el-form-item label="" prop="hnotifyDetails">
|
|
|
<el-input type="textarea" style="width: 100%;" v-model="assemblyForm.hnotifyDetails"
|
|
|
- size="small" autocomplete="off" :disabled="detailData.seeDisabled" rows="5"
|
|
|
+ size="small" autocomplete="off" :disabled="detailData.seeDisabled" :rows="textareaNumber"
|
|
|
clearable placeholder="请输入通知人提单描述"
|
|
|
@change="textareaBlur('hnotifyDetails')"></el-input>
|
|
|
</el-form-item>
|
|
@@ -688,6 +688,7 @@ import { NdayDate } from "@/util/date";
|
|
|
import { getBunitsList } from "@/api/iosBasicData/bunits";
|
|
|
import { getWorkDicts } from "@/api/system/dictbiz";
|
|
|
import { regularFloating, regularInteger } from "@/util/regularJudgment";
|
|
|
+import { isProcurement } from "@/api/basicData/configuration";
|
|
|
import dicSelect from "@/components/dicSelect/main";
|
|
|
import _ from "lodash";
|
|
|
export default {
|
|
@@ -715,6 +716,7 @@ export default {
|
|
|
components: { bcorps, SearchQuery, precontainers, bcorpstypedefine, dicSelect },
|
|
|
data() {
|
|
|
return {
|
|
|
+ textareaNumber:5,
|
|
|
// 设置当前时间选择的范围
|
|
|
etdPickerOptions: {
|
|
|
disabledDate(time) {
|
|
@@ -798,6 +800,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
+ isProcurement({ "param": "textarea.number" }).then(res => {
|
|
|
+ if(res.data.data){
|
|
|
+ this.textareaNumber = res.data.data
|
|
|
+ }
|
|
|
+ })
|
|
|
// // 航空公司
|
|
|
this.carrierBcorpslistByTypefun()
|
|
|
},
|