| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- <template>
- <div class="person-msg">
- <Form ref="thirdForm" :model="form" :rules="rules" :label-width="140">
- <h4>基础信息</h4>
- <FormItem prop="storeName" label="店铺名称">
- <Input
- type="text"
- v-model="form.storeName"
- placeholder="请填写店铺名称"
- />
- </FormItem>
- <FormItem prop="storeLogo" label="店铺logo">
- <Upload
- ref="uploadLogo"
- :show-upload-list="false"
- :on-success="handleSuccess"
- :format="['jpg', 'jpeg', 'png', 'gif']"
- :max-size="2048"
- :before-upload="beforeUpload"
- :on-format-error="handleFormatError"
- :on-exceeded-size="handleMaxSize"
- :on-error="uploadErr"
- multiple
- :action="action"
- :headers="accessToken"
- >
- <Button type="info" :loading="uploadLoading">上传logo</Button>
- </Upload>
- <div class="describe">请压缩图片在2M以内,格式为gif,jpg,png</div>
- <div
- class="img-list"
- v-for="(item, index) in form.storeLogo"
- :key="index"
- >
- <img :src="item" width="100" height="" alt="" />
- <div class="cover">
- <Icon
- type="ios-eye-outline"
- @click.native="handleView(item)"
- ></Icon>
- <Icon
- type="ios-trash-outline"
- @click.native="handleRemove(index, 'storeLogo')"
- ></Icon>
- </div>
- </div>
- </FormItem>
- <FormItem prop="goodsManagementCategory" label="店铺经营类目">
- <Select
- v-model="form.goodsManagementCategory"
- multiple
- style="width: 300px"
- >
- <Option
- v-for="item in categoryList"
- :value="item.id"
- :key="item.id"
- >{{ item.name }}</Option
- >
- </Select>
- </FormItem>
- <FormItem prop="storeCenter" label="经纬度">
- <Input
- type="text"
- v-model="form.storeCenter"
- readonly
- placeholder="点击右侧按钮选择店铺位置"
- />
- <Button
- icon="ios-locate-outline"
- @click="$refs.liliMap.showMap = true"
- ></Button>
- </FormItem>
- <FormItem prop="storeDesc" label="店铺简介">
- <Input
- type="textarea"
- v-model="form.storeDesc"
- maxlength="300"
- show-word-limit
- :rows="4"
- placeholder="请输入店铺简介"
- />
- </FormItem>
- <FormItem>
- <Button @click="$emit('change', 1)">返回</Button>
- <Button type="primary" :loading="loading" @click="next"
- >提交平台审核</Button
- >
- </FormItem>
- </Form>
- <Modal title="View Image" v-model="visible">
- <img :src="previewPicture" v-if="visible" style="width: 100%" />
- </Modal>
- <lili-map ref="liliMap" @getAddress="getAddress" :useApi="false"></lili-map>
- </div>
- </template>
- <script>
- import { applyThird } from '@/api/shopentry';
- import { getCategory } from '@/api/goods';
- import Map from '@/components/map/index';
- import storage from '@/plugins/storage';
- import { commonUrl } from '@/plugins/request.js';
- export default {
- props: {
- content: {
- default: {},
- type: Object
- }
- },
- components: { liliMap: Map },
- data () {
- return {
- loading: false, // 加载状态
- uploadLoading: false, // 上传加载状态
- action: commonUrl + '/common/upload/file', // 上传地址
- accessToken: {}, // 验证token
- previewPicture: '', // 预览图片
- visible: false, // 图片预览
- form: { // 表单数据
- storeLogo: []
- },
- rules: { // 验证规则
- goodsManagementCategory: [
- { required: true, message: '请选择店铺经营类目' }
- ],
- storeName: [{ required: true, message: '请填写店铺名称' }],
- storeLogo: [{ required: true, message: '请上传店铺logo' }],
- storeDesc: [{ required: true, message: '请填写店铺简介' }],
- storeCenter: [{ required: true, message: '请选择店铺位置' }]
- },
- categoryList: [] // 分类数据
- };
- },
- methods: {
- next () {
- this.$refs.thirdForm.validate((valid) => {
- if (valid) {
- this.loading = true;
- let params = JSON.parse(JSON.stringify(this.form));
- params.storeLogo = this.form.storeLogo.toString();
- params.goodsManagementCategory = this.form.goodsManagementCategory.toString();
- applyThird(params)
- .then((res) => {
- this.loading = false;
- if (res.success) this.$emit('change', 3);
- })
- .catch(() => {
- this.loading = false;
- });
- } else {
- console.log('error');
- }
- });
- },
- beforeUpload () {
- this.uploadLoading = true;
- },
- handleSuccess (res, file) {
- this.uploadLoading = false;
- this.form.storeLogo.push(res.result);
- },
- handleFormatError (file) {
- this.uploadLoading = false;
- this.$Notice.warning({
- title: 'The file format is incorrect',
- desc: '上传文件格式不正确'
- });
- },
- handleMaxSize (file) {
- this.uploadLoading = false;
- this.$Notice.warning({
- title: 'Exceeding file size limit',
- desc: '文件大小不能超过2M'
- })
- },
- uploadErr () {
- this.uploadLoading = false;
- },
- handleView (item) {
- this.previewPicture = item;
- this.visible = true;
- },
- handleRemove (index, listName) {
- this.form[listName].splice(index, 1);
- },
- getAddress (item) {
- console.log(item);
- this.$set(
- this.form,
- 'storeCenter',
- item.position.lng + ',' + item.position.lat
- );
- },
- getCategoryList () {
- getCategory(0).then((res) => {
- if (res.success) this.categoryList = res.result;
- });
- }
- },
- mounted () {
- this.accessToken.accessToken = storage.getItem('accessToken');
- this.getCategoryList();
- if (this.content != {}) {
- this.form = JSON.parse(JSON.stringify(this.content));
- if (this.form.storeLogo) {
- this.form.storeLogo = this.content.storeLogo.split(',');
- this.form.goodsManagementCategory = this.content.goodsManagementCategory.split(
- ','
- );
- } else {
- this.form.storeLogo = [];
- }
- this.$forceUpdate();
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- h4 {
- margin-bottom: 10px;
- padding: 0 10px;
- border: 1px solid #ddd;
- background-color: #f8f8f8;
- font-weight: bold;
- color: #333;
- font-size: 14px;
- line-height: 40px;
- text-align: left;
- }
- .ivu-input-wrapper {
- width: 300px;
- }
- .img-list {
- display: inline-block;
- margin: 10px;
- width: 100px;
- height: auto;
- position: relative;
- .cover {
- display: none;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.6);
- width: inherit;
- height: inherit;
- align-items: center;
- justify-content: space-around;
- i {
- color: #fff;
- font-size: 30px;
- cursor: pointer;
- }
- }
- &:hover .cover {
- display: flex;
- }
- }
- .describe {
- font-size: 12px;
- color: #999;
- }
- </style>
|