|
@@ -28,7 +28,7 @@
|
|
<el-form-item label="状态" prop="examineStatus">
|
|
<el-form-item label="状态" prop="examineStatus">
|
|
<el-select v-model="mainForm.examineStatus" style="width: 100%;" disabled>
|
|
<el-select v-model="mainForm.examineStatus" style="width: 100%;" disabled>
|
|
<el-option
|
|
<el-option
|
|
- v-for="(item, index) in statusList"
|
|
|
|
|
|
+ v-for="(item, index) in statusList"
|
|
:key="index"
|
|
:key="index"
|
|
:label="item.label"
|
|
:label="item.label"
|
|
:value="item.value">
|
|
:value="item.value">
|
|
@@ -55,7 +55,7 @@
|
|
<el-form-item label="销售单类型" prop="orderType">
|
|
<el-form-item label="销售单类型" prop="orderType">
|
|
<el-select v-model="mainForm.orderType" style="width: 100%;" disabled>
|
|
<el-select v-model="mainForm.orderType" style="width: 100%;" disabled>
|
|
<el-option
|
|
<el-option
|
|
- v-for="(item, index) in orderTypeList"
|
|
|
|
|
|
+ v-for="(item, index) in orderTypeList"
|
|
:key="index"
|
|
:key="index"
|
|
:label="item.label"
|
|
:label="item.label"
|
|
:value="item.value">
|
|
:value="item.value">
|
|
@@ -67,7 +67,7 @@
|
|
<el-form-item label="调拨类型" prop="type">
|
|
<el-form-item label="调拨类型" prop="type">
|
|
<el-select v-model="mainForm.type" style="width: 100%;" disabled>
|
|
<el-select v-model="mainForm.type" style="width: 100%;" disabled>
|
|
<el-option
|
|
<el-option
|
|
- v-for="(item, index) in typeList"
|
|
|
|
|
|
+ v-for="(item, index) in typeList"
|
|
:key="index"
|
|
:key="index"
|
|
:label="item.label"
|
|
:label="item.label"
|
|
:value="item.value">
|
|
:value="item.value">
|
|
@@ -187,7 +187,7 @@
|
|
<el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
|
|
<el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
|
|
+
|
|
<div class="page-footer">
|
|
<div class="page-footer">
|
|
<div class="footer" :class="classObj">
|
|
<div class="footer" :class="classObj">
|
|
<el-button type="primary" @click="clickSubmitForm('SAVE')">保 存</el-button>
|
|
<el-button type="primary" @click="clickSubmitForm('SAVE')">保 存</el-button>
|
|
@@ -214,7 +214,7 @@ export default {
|
|
{ label: '已保存', value: 'SAVE' },
|
|
{ label: '已保存', value: 'SAVE' },
|
|
{ label: '待审核', value: 'WAIT' },
|
|
{ label: '待审核', value: 'WAIT' },
|
|
{ label: '审核通过', value: 'OK' },
|
|
{ label: '审核通过', value: 'OK' },
|
|
- { label: '审核驳回', value: 'FAIL' },
|
|
|
|
|
|
+ // { label: '审核驳回', value: 'FAIL' },,
|
|
{ label: '已关闭', value: 'CLOSE' },
|
|
{ label: '已关闭', value: 'CLOSE' },
|
|
],
|
|
],
|
|
orderTypeList: [
|
|
orderTypeList: [
|
|
@@ -241,7 +241,7 @@ export default {
|
|
warehouseList2: [],
|
|
warehouseList2: [],
|
|
positionList1: [],
|
|
positionList1: [],
|
|
positionList2: [],
|
|
positionList2: [],
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
@@ -383,4 +383,4 @@ export default {
|
|
padding-left: 10px;
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-</style>
|
|
|
|
|
|
+</style>
|