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.
18 lines
349 B
18 lines
349 B
export default {
|
|
namespaced: true,
|
|
state: {
|
|
deliverRecordId: '', // 交付物记录id
|
|
},
|
|
getters: {},
|
|
mutations: {
|
|
/**
|
|
* 设置交付物记录id
|
|
* @param {object} state
|
|
* @param {string} recordId
|
|
*/
|
|
setDeliverRecordId(state, recordId) {
|
|
state.deliverRecordId = recordId;
|
|
},
|
|
},
|
|
actions: {},
|
|
};
|
|
|