|
@@ -3,6 +3,7 @@
|
|
v-loading="loading"
|
|
v-loading="loading"
|
|
:model="ruleForm"
|
|
:model="ruleForm"
|
|
:rules="rules"
|
|
:rules="rules"
|
|
|
|
+ :size="'mini'"
|
|
status-icon
|
|
status-icon
|
|
ref="ruleForm"
|
|
ref="ruleForm"
|
|
label-width="90px"
|
|
label-width="90px"
|
|
@@ -13,13 +14,11 @@
|
|
<el-form-item label="发货总数" prop="send_num" required>
|
|
<el-form-item label="发货总数" prop="send_num" required>
|
|
<el-input
|
|
<el-input
|
|
disabled
|
|
disabled
|
|
- placeholder="物流单号"
|
|
|
|
|
|
+ placeholder="发货总数"
|
|
v-model="ruleForm.send_num"
|
|
v-model="ruleForm.send_num"
|
|
maxlength="100"
|
|
maxlength="100"
|
|
/>
|
|
/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- </el-col>
|
|
|
|
- <el-col :span="8">
|
|
|
|
<el-form-item label="物流公司" prop="post_name">
|
|
<el-form-item label="物流公司" prop="post_name">
|
|
<search-express
|
|
<search-express
|
|
:value="ruleForm.post_name"
|
|
:value="ruleForm.post_name"
|
|
@@ -30,15 +29,7 @@
|
|
/>
|
|
/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="物流单号" prop="post_code">
|
|
|
|
- <el-input
|
|
|
|
- placeholder="物流单号"
|
|
|
|
- v-model="ruleForm.post_code"
|
|
|
|
- maxlength="100"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
|
|
+
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
<el-form-item label="物流费用" prop="post_fee">
|
|
<el-form-item label="物流费用" prop="post_fee">
|
|
<el-input
|
|
<el-input
|
|
@@ -49,13 +40,19 @@
|
|
<template slot="append">元</template>
|
|
<template slot="append">元</template>
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <el-form-item label="物流单号" prop="post_code">
|
|
|
|
+ <el-input
|
|
|
|
+ placeholder="物流单号"
|
|
|
|
+ v-model="ruleForm.post_code"
|
|
|
|
+ maxlength="100"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
- <el-col
|
|
|
|
- :span="16"
|
|
|
|
- style="text-align: right"
|
|
|
|
- >
|
|
|
|
- <el-button type="primary" :size="'mini'" @click="submitForm">保 存 </el-button>
|
|
|
|
|
|
+ <el-col :span="8" style="text-align: right">
|
|
|
|
+ <el-button type="primary" :size="'mini'" @click="submitForm"
|
|
|
|
+ >保 存
|
|
|
|
+ </el-button>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</el-form>
|
|
</el-form>
|
|
@@ -135,8 +132,6 @@ export default {
|
|
this.initForm();
|
|
this.initForm();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
-
|
|
|
|
-
|
|
|
|
async initForm() {
|
|
async initForm() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
await this.resetForm();
|
|
await this.resetForm();
|