| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- export const state = () => ({
- componentGoods: {
- fetching: false,
- data: []
- },
- collectCount: {
- fetching: false,
- data: []
- },
- collectCode: {
- // 类目关注
- fetching: false,
- data: []
- },
- // 当个物料信息
- nowProductInfo: {
- fetching: false,
- data: []
- }
- })
- export const mutations = {
- REQUEST_CMPGOODS (state) {
- state.componentGoods.fetching = true
- },
- GET_CMPGOODS_SUCCESS (state, result) {
- state.componentGoods.fetching = false
- state.componentGoods.data = result
- },
- GET_CMPGOODS_FAILURE (state) {
- state.fetching = false
- },
- REQUEST_COLLECT (state) {
- state.collectCount.fetching = true
- },
- REQUEST_COLLECT_SUCCESS (state, result) {
- state.collectCount.fetching = false
- state.collectCount.data = result
- },
- REQUEST_COLLECT_FAILURE (state) {
- state.fetching = false
- },
- REQUEST_COLLECTCODE (state) {
- state.collectCode.fetching = true
- },
- REQUEST_COLLECTCODE_SUCCESS (state, result) {
- state.collectCode.fetching = false
- state.collectCode.data = result
- },
- REQUEST_COLLECTCODE_FAILURE (state) {
- state.collectCode = false
- },
- REQUEST_NOWPRODUCTINFO (state) {
- state.nowProductInfo.fetching = true
- },
- REQUEST_NOWPRODUCTINFO_SUCCESS (state, result) {
- state.nowProductInfo.fetching = false
- state.nowProductInfo.data = result
- },
- REQUEST_NOWPRODUCTINFO_FAILURE (state) {
- state.nowProductInfo = false
- },
- UpdateOne_PRODUCTINFO(state, resulut) {
- state.collectCode.data.content[resulut.key].status = resulut.status
- }
- }
|