You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
349 B
19 lines
349 B
4 years ago
|
export default {
|
||
|
namespaced: true,
|
||
|
state: {
|
||
|
deliverRecordId: '', // 交付物记录id
|
||
|
},
|
||
|
getters: {},
|
||
|
mutations: {
|
||
|
/**
|
||
|
* 设置交付物记录id
|
||
|
* @param {object} state
|
||
|
* @param {string} recordId
|
||
|
*/
|
||
|
setDeliverRecordId(state, recordId) {
|
||
|
state.deliverRecordId = recordId;
|
||
|
},
|
||
|
},
|
||
|
actions: {},
|
||
|
};
|