12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <div class="cmain">
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
- <el-form-item label="标题" prop="title">
- <el-input v-model="form.title" placeholder="请输入标题" clearable/>
- </el-form-item>
- <el-form-item label="介绍" prop="context">
- <editor v-model="form.context" :min-height="192"/>
- </el-form-item>
- </el-form>
- <div class="mfooter">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="$layer.close(layerid)">取 消</el-button>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- form: {},
- rules: {
- }
- };
- },
- props: {
- param: {
- type: Object,
- default: () => {
- return {};
- }
- },
- layerid: {
- type: String
- }
- },
- mounted() {
- if (this.param.id) {
- this.ajax({ url: '/work/introduction/detail/' + this.param.id }).then(response => {
- this.form = response.data;
- });
- }
- },
- methods: {
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id) {
- this.ajax({method: 'post',url: '/work/introduction/edit', data: this.form }).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.$layer.close(this.layerid);
- this.$parent.getList();
- });
- } else {
- this.ajax({method: 'post',url: '/work/introduction/add', data: this.form }).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.$layer.close(this.layerid);
- this.$parent.getList();
- });
- }
- }
- });
- }
- }
- };
- </script>
|