Browse Source

修复库存

master
cgx 4 months ago
parent
commit
e3d8f34155
2 changed files with 15 additions and 0 deletions
  1. +10
    -0
      admin-hanhai-vue/src/views/productOrder/TbProductOrderList.vue
  2. +5
    -0
      admin-hanhai-vue/src/views/productOrder/modules/TbProductOrderForm.vue

+ 10
- 0
admin-hanhai-vue/src/views/productOrder/TbProductOrderList.vue View File

@ -9,6 +9,11 @@
<a-input placeholder="请输入供应商名称" v-model="queryParam.companyName"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="审核状态">
<j-dict-select-tag placeholder="请选择审核状态" v-model="queryParam.auditStatus" dictCode="audit_status"/>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="客户名称">
<a-input placeholder="请输入客户名称" v-model="queryParam.userName"></a-input>
@ -185,6 +190,11 @@
align:"center",
dataIndex: 'deposit'
},
{
title:'审核状态',
align:"center",
dataIndex: 'auditStatus_dictText'
},
{
title:'暂定数量',
align:"center",


+ 5
- 0
admin-hanhai-vue/src/views/productOrder/modules/TbProductOrderForm.vue View File

@ -48,6 +48,11 @@
<j-date placeholder="请选择提货时间" v-model="model.takeTime" style="width: 100%" />
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="审核状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="auditStatus">
<j-dict-select-tag type="list" v-model="model.auditStatus" dictCode="audit_status" placeholder="请审核" />
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
</j-form-container>


Loading…
Cancel
Save