add:新增需求
This commit is contained in:
@@ -64,7 +64,7 @@ export default {
|
||||
default: false
|
||||
},
|
||||
openParam: {
|
||||
type: String
|
||||
type: Object
|
||||
}
|
||||
},
|
||||
data() {
|
||||
@@ -98,7 +98,8 @@ export default {
|
||||
this.$emit('update:dialogShow', false)
|
||||
},
|
||||
open() {
|
||||
this.crud.query.id = this.openParam
|
||||
this.crud.query.contract_no = this.openParam.contract_no
|
||||
this.crud.query.item_id = this.openParam.item_id
|
||||
this.crud.toQuery()
|
||||
},
|
||||
formatStatusName(row, column) {
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
<el-table-column label="合同内容" align="center">
|
||||
<el-table-column prop="subscribedate" label="签订时间" width="150px" show-overflow-tooltip />
|
||||
<el-table-column prop="contract_no" label="合同编码" width="120px" show-overflow-tooltip/>
|
||||
<el-table-column prop="proc_status" label="处理状态" width="120px" :formatter="formaterStatus" show-overflow-tooltip/>
|
||||
<el-table-column prop="proc_status" label="处理状态" width="120px" show-overflow-tooltip/>
|
||||
<el-table-column prop="supp_name" label="供应商" min-width="220" show-overflow-tooltip/>
|
||||
<el-table-column prop="material_code" label="物料编码" min-width="150" show-overflow-tooltip />
|
||||
<el-table-column prop="material_name" label="物料名称" min-width="150" show-overflow-tooltip />
|
||||
@@ -194,7 +194,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
procStatusList: [],
|
||||
openParam: '',
|
||||
openParam: null,
|
||||
receiveDialog: false,
|
||||
remarkDaing: false
|
||||
}
|
||||
@@ -220,7 +220,7 @@ export default {
|
||||
}
|
||||
},
|
||||
openReceive(index, row) {
|
||||
this.openParam = row.id
|
||||
this.openParam = row
|
||||
this.receiveDialog = true
|
||||
},
|
||||
openRemarkDaing(row) {
|
||||
|
||||
Reference in New Issue
Block a user