From 91ca5d3a9d43f1b73fe6ff1b8a0d5dda599fbb7d Mon Sep 17 00:00:00 2001 From: zhouhao <787329763@qq.com> Date: Wed, 03 Nov 2021 14:03:07 +0800 Subject: [PATCH] 代理新增编辑门店信息功能完成 --- src/store/mutations.js | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/store/mutations.js b/src/store/mutations.js index eff7d55..18ea2d5 100644 --- a/src/store/mutations.js +++ b/src/store/mutations.js @@ -18,7 +18,8 @@ SET_BCJBCOLORF, SET_BCJBCOLORB, SET_DEFAULT_BG_COLOR, - SET_LAST_COLOR + SET_LAST_COLOR, + HNORNX_TYPE } from "./mutations-types"; //使用 ES2015 风格的计算属性命名功能来使用一个常量作为函数名 @@ -31,6 +32,9 @@ [SET_INVITE_CODE](state, val) { state.inviteCode = val; }, + [HNORNX_TYPE](state, val) { + state.hnOrnxtype = val; + }, [SET_AREA_LIST](state, val) { state.areaList = val; }, -- Gitblit v1.8.0