|
|
@@ -7,7 +7,12 @@ export default {
|
|
|
data() {
|
|
|
return {};
|
|
|
},
|
|
|
- props: {},
|
|
|
+ props: {
|
|
|
+ user:{
|
|
|
+ type:'String',
|
|
|
+ default:''
|
|
|
+ }
|
|
|
+ },
|
|
|
computed: {
|
|
|
// 表格列配置
|
|
|
seekList() {
|
|
|
@@ -31,8 +36,8 @@ export default {
|
|
|
placeholder: ''
|
|
|
},
|
|
|
{
|
|
|
- label: '领用人:',
|
|
|
- value: 'recipientName',
|
|
|
+ label: this.user == 'recycleName'?'回收人':'领用人',
|
|
|
+ value: this.user == 'recycleName'?'recycleName':'recipientName',
|
|
|
type: 'input',
|
|
|
placeholder: ''
|
|
|
},
|