问题修改
This commit is contained in:
parent
f8bf51983e
commit
857f5201a8
|
|
@ -76,7 +76,7 @@
|
|||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!-- <el-col :span="12">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="原料进价" prop="unitPrice">
|
||||
<el-input
|
||||
v-model="form.unitPrice"
|
||||
|
|
@ -88,6 +88,7 @@
|
|||
</el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!--
|
||||
<el-col :span="12">
|
||||
<el-form-item label="条码" prop="barCode">
|
||||
<el-input
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<span class="item-label">采购计划参考价:</span>
|
||||
<el-select v-model="purchase_plan_reference_price" placeholder="请选择" style="width: 240px;">
|
||||
<el-option label="参考上次采购价格" value="0"></el-option>
|
||||
<el-option label="参考采集的市场价格" value="1"></el-option>
|
||||
<el-option label="参考原料进价" value="1"></el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div style="color: #999;font-size: 14px;margin-top: 10px">采购计划中将按照设定的方式展示货品的参考价</div>
|
||||
|
|
|
|||
|
|
@ -86,11 +86,11 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="供应商名称" align="center" prop="supplierName" :show-overflow-tooltip="true"/>
|
||||
<el-table-column label="最近一次供货时间" align="center" prop="lastOrderGoodsDate" :show-overflow-tooltip="true">
|
||||
<el-table-column label="最近一次供货时间" align="center" prop="purchaseGoodsTime" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
<el-table-column label="价格" align="center" prop="lastOrderGoodsPrice" width="120" :show-overflow-tooltip="true" >
|
||||
<el-table-column label="价格" align="center" prop="singlePrice" width="120" :show-overflow-tooltip="true" >
|
||||
<template slot-scope="scope">
|
||||
<!-- <span>{{ (scope.row.lastOrderGoodsPrice/100).toFixed(2)||0 }}</span> -->
|
||||
<span>{{ (scope.row.singlePrice/100).toFixed(2)||0 }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
|
@ -340,13 +340,13 @@ export default {
|
|||
systemMaterialTreeApi(param).then((response) => {
|
||||
this.treeTypeOptions = response.data;
|
||||
});
|
||||
},
|
||||
},
|
||||
/** 查询供应商下拉结构 */
|
||||
getSupplierData() {
|
||||
supplierPageApi({ isPaging:1,areaIdList:[] }).then((response) => {
|
||||
this.supplierOptions = response.rows||[];
|
||||
});
|
||||
},
|
||||
},
|
||||
handleTabClick(){
|
||||
if(this.activeName=='material'){
|
||||
this.queryParams={
|
||||
|
|
@ -385,7 +385,7 @@ export default {
|
|||
}
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
},
|
||||
/** 查询列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
|
|
@ -566,7 +566,7 @@ export default {
|
|||
}
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
//弹窗select操作
|
||||
dialogChangeSupplier(e){
|
||||
console.log(e)
|
||||
|
|
|
|||
Loading…
Reference in New Issue