|
@@ -1,111 +1,92 @@
|
|
|
-<template>
|
|
|
- <div class="app-container">
|
|
|
- <!-- 对话框(添加 / 修改) -->
|
|
|
- <el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="45%" v-dialogDrag append-to-body>
|
|
|
- <el-form ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-width="100px">
|
|
|
- <el-form-item label="商品分类名称" prop="goodsTypeName">
|
|
|
- <el-input v-model="formData.goodsTypeName" placeholder="请输入商品分类名称" />
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <!-- 子表的表单 -->
|
|
|
- <el-tabs v-model="subTabsName">
|
|
|
- <el-tab-pane label="商品" name="">
|
|
|
- <Form ref="FormRef" :goodsTypeId="formData.id" />
|
|
|
- </el-tab-pane>
|
|
|
- </el-tabs>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm" :disabled="formLoading">确 定</el-button>
|
|
|
- <el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
- import * as TypeApi from '@/api/restaurant/type';
|
|
|
- import Form from './components/Form.vue'
|
|
|
- export default {
|
|
|
- name: "TypeForm",
|
|
|
- components: {
|
|
|
- Form,
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- // 弹出层标题
|
|
|
- dialogTitle: "",
|
|
|
- // 是否显示弹出层
|
|
|
- dialogVisible: false,
|
|
|
- // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
- formLoading: false,
|
|
|
- // 表单参数
|
|
|
- formData: {
|
|
|
- goodsTypeName: undefined,
|
|
|
- },
|
|
|
- // 表单校验
|
|
|
- formRules: {
|
|
|
- },
|
|
|
- /** 子表的表单 */
|
|
|
- subTabsName: ''
|
|
|
- };
|
|
|
- },
|
|
|
- methods: {
|
|
|
- /** 打开弹窗 */
|
|
|
- async open(id) {
|
|
|
- this.dialogVisible = true;
|
|
|
- this.reset();
|
|
|
- // 修改时,设置数据
|
|
|
- if (id) {
|
|
|
- this.formLoading = true;
|
|
|
- try {
|
|
|
- const res = await TypeApi.getType(id);
|
|
|
- this.formData = res.data;
|
|
|
- this.title = "修改商品分类";
|
|
|
- } finally {
|
|
|
- this.formLoading = false;
|
|
|
- }
|
|
|
- }
|
|
|
- this.title = "新增商品分类";
|
|
|
- },
|
|
|
- /** 提交按钮 */
|
|
|
- async submitForm() {
|
|
|
- // 校验主表
|
|
|
- await this.$refs["formRef"].validate();
|
|
|
- // 校验子表
|
|
|
- try {
|
|
|
- await this.$refs['FormRef'].validate();
|
|
|
- } catch (e) {
|
|
|
- this.subTabsName = '';
|
|
|
- return;
|
|
|
- }
|
|
|
- this.formLoading = true;
|
|
|
- try {
|
|
|
- const data = this.formData;
|
|
|
- // 拼接子表的数据
|
|
|
- data.goodss = this.$refs['FormRef'].getData();
|
|
|
- // 修改的提交
|
|
|
- if (data.id) {
|
|
|
- await TypeApi.updateType(data);
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.dialogVisible = false;
|
|
|
- this.$emit('success');
|
|
|
- return;
|
|
|
- }
|
|
|
- // 添加的提交
|
|
|
- await TypeApi.createType(data);
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.dialogVisible = false;
|
|
|
- this.$emit('success');
|
|
|
- } finally {
|
|
|
- this.formLoading = false;
|
|
|
- }
|
|
|
- },
|
|
|
- /** 表单重置 */
|
|
|
- reset() {
|
|
|
- this.formData = {
|
|
|
- goodsTypeName: undefined,
|
|
|
- };
|
|
|
- this.resetForm("formRef");
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-</script>
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <!-- 对话框(添加 / 修改) -->
|
|
|
+ <el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="45%" v-dialogDrag append-to-body>
|
|
|
+ <el-form ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-width="100px">
|
|
|
+ <el-form-item label="商品分类名称" prop="goodsTypeName">
|
|
|
+ <el-input v-model="formData.goodsTypeName" placeholder="请输入商品分类名称" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm" :disabled="formLoading">确 定</el-button>
|
|
|
+ <el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import * as TypeApi from '@/api/restaurant/type';
|
|
|
+ export default {
|
|
|
+ name: "TypeForm",
|
|
|
+ components: {
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 弹出层标题
|
|
|
+ dialogTitle: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ dialogVisible: false,
|
|
|
+ // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
+ formLoading: false,
|
|
|
+ // 表单参数
|
|
|
+ formData: {
|
|
|
+ goodsTypeName: undefined,
|
|
|
+ },
|
|
|
+ // 表单校验
|
|
|
+ formRules: {
|
|
|
+ },
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 打开弹窗 */
|
|
|
+ async open(id) {
|
|
|
+ this.dialogVisible = true;
|
|
|
+ this.reset();
|
|
|
+ // 修改时,设置数据
|
|
|
+ if (id) {
|
|
|
+ this.formLoading = true;
|
|
|
+ try {
|
|
|
+ const res = await TypeApi.getType(id);
|
|
|
+ this.formData = res.data;
|
|
|
+ this.title = "修改商品分类";
|
|
|
+ } finally {
|
|
|
+ this.formLoading = false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.title = "新增商品分类";
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ async submitForm() {
|
|
|
+ // 校验主表
|
|
|
+ await this.$refs["formRef"].validate();
|
|
|
+ this.formLoading = true;
|
|
|
+ try {
|
|
|
+ const data = this.formData;
|
|
|
+ // 修改的提交
|
|
|
+ if (data.id) {
|
|
|
+ await TypeApi.updateType(data);
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.$emit('success');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 添加的提交
|
|
|
+ await TypeApi.createType(data);
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.$emit('success');
|
|
|
+ } finally {
|
|
|
+ this.formLoading = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /** 表单重置 */
|
|
|
+ reset() {
|
|
|
+ this.formData = {
|
|
|
+ goodsTypeName: undefined,
|
|
|
+ };
|
|
|
+ this.resetForm("formRef");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+</script>
|