|
@@ -15,7 +15,7 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :xs="24" :sm="12" :lg="8">
|
|
|
<el-form-item label="选择仓库" prop="warehouse">
|
|
|
- <el-select v-model="mainForm.warehouse" placeholder="请选择仓库" style="width: 100%" :disabled="listItem">
|
|
|
+ <el-select v-model="mainForm.warehouse" placeholder="请选择仓库" style="width: 100%" :disabled="!!listItem">
|
|
|
<el-option
|
|
|
:label="item.name"
|
|
|
:value="item.id"
|
|
@@ -26,7 +26,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :lg="8">
|
|
|
- <el-button size="small" type="primary" :disabled="listItem" @click="getDeliverList">确定</el-button>
|
|
|
+ <el-button size="small" type="primary" :disabled="!!listItem" @click="getDeliverList">确定</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="20">
|
|
@@ -925,6 +925,9 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.logistics-title{
|
|
|
+ padding-bottom: 10px;
|
|
|
+}
|
|
|
.tip {
|
|
|
height: 200px;
|
|
|
text-align: center;
|