Commit 72990c78 authored by 赵啸非's avatar 赵啸非

添加服务和优势界面

parent b6e236f1
......@@ -5,7 +5,7 @@
:visible.sync="open"
:direction="direction"
:destroy-on-close="true"
size="50%">
size="80%">
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-row>
<Field :span="20" label="类型种类名称" prop="typeName" v-model="form.typeName" placeholder="请输入类型种类名称"/>
......@@ -27,43 +27,39 @@
<el-table-column label="序号" align="center" prop="index" width="50"/>
<el-table-column label="标题" prop="title">
<template slot-scope="scope">
<el-input v-model="scope.row.title" placeholder="请输入标题" />
<el-input v-model="scope.row.title" type="textarea" rows="6" placeholder="请输入标题" />
</template>
</el-table-column>
<el-table-column label="图片" prop="imageUrl1">
<template slot-scope="scope">
<el-input v-model="scope.row.imageUrl1" placeholder="请输入图片" />
<imageUpload v-model="scope.row.imageUrl1" prePath="/file/preview"/>
</template>
</el-table-column>
<el-table-column label="" prop="imageUrl2">
<el-table-column label="图片2" prop="imageUrl2">
<template slot-scope="scope">
<el-input v-model="scope.row.imageUrl2" placeholder="请输入" />
<imageUpload v-model="scope.row.imageUrl2" prePath="/file/preview"/>
</template>
</el-table-column>
<el-table-column label="" prop="imageUrl3">
<el-table-column label="图片3" prop="imageUrl3">
<template slot-scope="scope">
<el-input v-model="scope.row.imageUrl3" placeholder="请输入" />
<imageUpload v-model="scope.row.imageUrl3" prePath="/file/preview"/>
</template>
</el-table-column>
<el-table-column label="" prop="imageUrl4">
<el-table-column label="图片4" prop="imageUrl4">
<template slot-scope="scope">
<el-input v-model="scope.row.imageUrl4" placeholder="请输入" />
<imageUpload v-model="scope.row.imageUrl4" prePath="/file/preview"/>
</template>
</el-table-column>
<el-table-column label="" prop="imageUrl5">
<el-table-column label="图片5" prop="imageUrl5">
<template slot-scope="scope">
<el-input v-model="scope.row.imageUrl5" placeholder="请输入" />
<imageUpload v-model="scope.row.imageUrl5" prePath="/file/preview"/>
</template>
</el-table-column>
<el-table-column label="描述内容" prop="introduction">
<template slot-scope="scope">
<el-input v-model="scope.row.introduction" placeholder="请输入描述内容" />
</template>
</el-table-column>
<el-input v-model="scope.row.introduction" type="textarea" rows="6" placeholder="请输入描述内容" />
<el-table-column label="创建时间" prop="createTime">
<template slot-scope="scope">
<el-input v-model="scope.row.createTime" placeholder="请输入创建时间" />
</template>
</el-table-column>
......
......@@ -39,8 +39,8 @@ module.exports = {
proxy: {
"/m": {
// target: "http://192.168.0.98:11019",
target: 'http://127.0.0.1:18001',
//target: 'http://192.168.0.250:18001',
// target: 'http://127.0.0.1:18001',
target: 'http://192.168.0.250:18001',
changeOrigin: true,
secure: false
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment