星油云站
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.

34 lines
704 B

4 years ago
// 全部订单各列表
const temp = {
state: {
tempNo: {},
powerful: false,
locationStr: '0,0',
locationCenter: [11, 3],
order: {},
condition: {}
},
mutations: {
SET_TEMPNO: (state, tempNo) => {
state.tempNo = tempNo
},
SET_POWER: (state, powerful) => {
state.powerful = powerful
},
SET_LOCATION: (state, locationStr) => {
state.locationStr = locationStr
},
SET_ORDERDE: (state, order) => {
state.order = order
},
SET_CONDT: (state, condition) => {
state.condition = condition
},
SET_CENTER: (state, locationCenter) => {
state.locationCenter = locationCenter
}
}
}
export default temp