|
@@ -1,10 +1,11 @@
|
|
|
<template>
|
|
|
- <el-dialog :title="`上传${mapTitle[type]}方案`" :close-on-click-modal="false" :visible="innerVisible" width="1024px" @close="handleClose" center>
|
|
|
+ <el-dialog :title="`上传${mapTitle[type]}`" :close-on-click-modal="false" :visible="innerVisible" width="1024px" @close="handleClose" center>
|
|
|
|
|
|
|
|
|
<div style="display:flex;">
|
|
|
<div style="display:flex;align-items:center;margin-right:10px" v-if="type === 'budget' || type === 'project'">
|
|
|
- <p style="margin-right:10px">店铺:</p>
|
|
|
+ <p style="margin-right:10px">
|
|
|
+ <span style="color:red"> * </span>店铺:</p>
|
|
|
<search-store size="mini" :value.sync="storeId" />
|
|
|
</div>
|
|
|
|
|
@@ -19,7 +20,9 @@
|
|
|
>
|
|
|
</div>
|
|
|
|
|
|
- <div class="activity-upload" v-if="!file_url && isFile" style="margin:0">
|
|
|
+ <div style="display:flex;align-items:center">
|
|
|
+ <p style="margin-right:10px"><span style="color:red"> * </span>{{mapTitle[type]}}:</p>
|
|
|
+ <div class="activity-upload" v-if="!file_url && isFile" style="margin:0">
|
|
|
<div class="btnupload" style="position: relative">
|
|
|
<i class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
<file-upload-pdf
|
|
@@ -36,6 +39,7 @@
|
|
|
<p>文件格式:.xlsx,.xls,.pdf,.zip,.rar,.7z</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
|