许宏杰 2 years ago
commit 825557bca6

@ -11,7 +11,7 @@ ENV = 'development'
# VUE_APP_BASE_API = 'http://39.101.188.84:9027'
#局域网
VUE_APP_BASE_API = 'http://localhost:9027'
VUE_APP_BASE_API = 'http://192.168.0.106:9027'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -201,6 +201,16 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="动态名称" prop="name">
<el-input
v-model="form.name"
placeholder="请输入动态名称"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="材料文件" prop="materialsFileUrl">
@ -246,6 +256,10 @@
<el-descriptions-item label="发布时间">{{
form.fabuTime
}}</el-descriptions-item>
<el-descriptions-item label="动态名称">{{
form.name
}}</el-descriptions-item>
</el-descriptions>
<FileView :fileList="fileList" />
</el-dialog>
@ -366,6 +380,8 @@ export default {
updateTime: null,
remark: null,
name: null,
};
this.fileList = [];
this.resetForm("form");

Loading…
Cancel
Save