zhanghua
2022-10-20 7380328b0a5ac263cc75a2daed06f7a8eaeef0e4
src/views/operate/fivepack/shop/components/createUser/index.vue
@@ -22,7 +22,7 @@
                    <!-- 店铺描述 -->
                    <el-form-item class="optionItem" label="店铺描述:" prop="storedesc">
                        <el-input type="textarea" :autosize="{ minRows: 2, maxRows: 4}" maxlength="300" show-word-limit
                            v-model="store.storedesc" placeholder="输入部门描述"></el-input>
                            v-model="store.storedesc" placeholder="输入店铺描述"></el-input>
                        <!-- <el-input type="textarea" v-model="user.storedesc" placeholder="输入部门描述"></el-input> -->
                    </el-form-item>
                    <!-- 联系方式 -->
@@ -142,7 +142,7 @@
        }
    },
    created() {
        const that = this;
        this.getCodeList();
    },
    methods: {
        handleUser() {
@@ -184,6 +184,16 @@
        },
        handleBack(){
            this.$emit('sendDialog',{flag:false})
        },
        // 获取字典
        getCodeList(){
            this.$axios({
                method:'get',
                url:'sccg/dict/queryByCode?code='+"03"
            })
            .then(res=>{
                console.log(res);
            })
        }
    },
    props: ['sendDialog']