|
@@ -504,18 +504,13 @@
|
|
<el-form-item label="仓储业务" prop="fFeeid">
|
|
<el-form-item label="仓储业务" prop="fFeeid">
|
|
<el-select
|
|
<el-select
|
|
v-model="TWareHouseFees.fBilltype"
|
|
v-model="TWareHouseFees.fBilltype"
|
|
- filterable
|
|
|
|
- :disabled="browseStatus"
|
|
|
|
- remote
|
|
|
|
size="small"
|
|
size="small"
|
|
style="width:200px"
|
|
style="width:200px"
|
|
- :remote-method="fWRemoteMethod"
|
|
|
|
|
|
+ @change="changefBilltype"
|
|
placeholder="请选择仓储业务"
|
|
placeholder="请选择仓储业务"
|
|
- multiple
|
|
|
|
>
|
|
>
|
|
<el-option label="入库" value="SJRK"></el-option>
|
|
<el-option label="入库" value="SJRK"></el-option>
|
|
- <el-option label="实际出库" value="SJCK"></el-option>
|
|
|
|
- <el-option label="调拨" value="CKDB"></el-option>
|
|
|
|
|
|
+ <el-option label="出库" value="SJCK"></el-option>
|
|
<el-option label="货权转移" value="HQZY"></el-option>
|
|
<el-option label="货权转移" value="HQZY"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -539,7 +534,6 @@
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
-
|
|
|
|
<el-form-item label="审核日期" prop="timeExamine">
|
|
<el-form-item label="审核日期" prop="timeExamine">
|
|
<el-date-picker
|
|
<el-date-picker
|
|
style="width: 240px"
|
|
style="width: 240px"
|
|
@@ -1405,6 +1399,22 @@ export default {
|
|
this.getList();
|
|
this.getList();
|
|
// this.searchFee()
|
|
// this.searchFee()
|
|
},
|
|
},
|
|
|
|
+ changefBilltype(){
|
|
|
|
+ this.businessTypeOption = []
|
|
|
|
+ if (this.TWareHouseFees.fBilltype == 'SJRK'){
|
|
|
|
+ this.getDicts("st_in_type").then((response) => {
|
|
|
|
+ this.businessTypeOption = response.data;
|
|
|
|
+ });
|
|
|
|
+ }else if (this.TWareHouseFees.fBilltype == 'SJCK'){
|
|
|
|
+ this.getDicts("st_out_type").then((response) => {
|
|
|
|
+ this.businessTypeOption = response.data;
|
|
|
|
+ });
|
|
|
|
+ }else if(this.TWareHouseFees.fBilltype == 'HQZY'){
|
|
|
|
+ this.getDicts("st_trans_type").then((response) => {
|
|
|
|
+ this.businessTypeOption = response.data;
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ },
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
resetQuery() {
|
|
// this.resetForm("queryParams_s");
|
|
// this.resetForm("queryParams_s");
|