123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <div id="detail">
- <el-row>
- <el-col :span="24" class="main" v-loading="loadings" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading">
- <el-col :span="24" style="margin: 0 0 10px 0">
- <el-col :span="2"><el-button type="primary" size="mini" @click="toBack()">返回</el-button></el-col>
- </el-col>
- <el-col :span="24">
- <data-form :fields="infoFields" :rules="rules" v-model="form" labelWidth="150px" @save="toSave">
- <template #goods>
- <el-select
- v-model="form.goods"
- filterable
- remote
- reserve-keyword
- placeholder="请选择商品名称"
- :remote-method="querySearch"
- :loading="loading"
- @change="handleSelect"
- style="width: 100%"
- >
- <el-option v-for="item in goodsList" :key="item._id" :label="item.name" :value="item._id"> </el-option>
- </el-select>
- <p style="color: red">输入商品名称查询</p>
- </template>
- <template #spec>
- <el-option v-for="i in specList" :key="i._id" :label="i.name" :value="i._id"></el-option>
- </template>
- </data-form>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- const { mapActions: goodsConfig } = createNamespacedHelpers('goodsConfig');
- const { mapActions: goods } = createNamespacedHelpers('goods');
- const { mapActions: goodsSpec } = createNamespacedHelpers('goodsSpec');
- export default {
- name: 'detail',
- props: { id: { type: String } },
- components: {},
- data: function () {
- return {
- loadings: true,
- // info部分
- infoFields: [
- { label: '商品名称', model: 'goods', custom: true },
- { label: '商品规格', model: 'spec', type: 'select' },
- { label: '团长价', model: 'leader_price', type: 'number' },
- { label: '团购价', model: 'price', type: 'number' },
- { label: '团长提成金额', model: 'leader_get', type: 'number' },
- ],
- rules: {
- goods: [{ required: true, message: '商品名称', trigger: 'change' }],
- spec: [{ required: true, message: '商品规格', trigger: 'change' }],
- leader_price: [{ required: true, message: '团长价', trigger: 'blur' }],
- price: [{ required: true, message: '团购价', trigger: 'blur' }],
- leader_get: [{ required: true, message: '团长提成金额', trigger: 'blur' }],
- },
- form: {},
- // 加载
- loading: false,
- // 远程搜索商品列表
- goodsList: [],
- // 规格列表
- specList: [],
- };
- },
- created() {
- this.search();
- },
- methods: {
- ...goods({ goodsQuery: 'query', goodsFetch: 'fetch' }),
- ...goodsSpec({ specQuery: 'query', specFetch: 'fetch' }),
- ...goodsConfig(['query', 'delete', 'fetch', 'update', 'create']),
- // 查询
- async search() {
- if (this.id) {
- const res = await this.fetch(this.id);
- if (this.$checkRes(res)) {
- let arr = await this.goodsFetch(res.data.goods);
- if (this.$checkRes(arr)) this.goodsList.push(arr.data);
- let aee = await this.specFetch(res.data.spec);
- if (this.$checkRes(aee)) this.specList.push(aee.data);
- this.$set(this, `form`, res.data);
- }
- } else {
- const obj = { shop: _.get(this.user.shop, '_id') };
- this.$set(this, 'form', obj);
- }
- this.loadings = false;
- },
- // 远程查询
- async querySearch(value) {
- this.loading = true;
- let res = await this.goodsQuery({ name: value });
- if (this.$checkRes(res)) this.$set(this, 'goodsList', res.data);
- this.loading = false;
- },
- // 选择-查询规格
- async handleSelect(value) {
- let res = await this.specQuery({ goods: value });
- if (this.$checkRes(res)) this.$set(this, 'specList', res.data);
- },
- // 保存
- async toSave({ data }) {
- let res;
- if (data._id) res = await this.update(data);
- else res = await this.create(data);
- if (this.$checkRes(res)) {
- this.$message({ type: `success`, message: `维护信息成功` });
- this.toBack();
- }
- },
- // 返回
- toBack() {
- this.$emit('toBack');
- },
- },
- computed: {
- ...mapState(['user']),
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- watch: {
- test: {
- deep: true,
- immediate: true,
- handler(val) {},
- },
- },
- };
- </script>
- <style lang="less" scoped></style>
|