|
|
@@ -1918,7 +1918,7 @@
|
|
|
<el-tab-pane label="公司销售角色默认生成配置" name="companymenu.config">
|
|
|
<companyMenuConfig></companyMenuConfig>
|
|
|
</el-tab-pane>
|
|
|
- <el-tab-pane label="APP推广" name="app.config">
|
|
|
+ <el-tab-pane label="APP配置" name="app.config">
|
|
|
<el-form ref="form25" :model="form25" :rules="rules25" label-width="160px">
|
|
|
<el-form-item label="APP推广图片" prop="images">
|
|
|
<Material v-model="appImages" type="image" :num="10" :width="150" :height="150"/>
|
|
|
@@ -1939,6 +1939,14 @@
|
|
|
<video :src="form25.videoUrl" controls style="max-width: 400px; max-height: 400px;"></video>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="应用appId" prop="appId">
|
|
|
+ <el-input
|
|
|
+ v-model="form25.appId"
|
|
|
+ style="width: 300px"
|
|
|
+ placeholder="请输入应用appId"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
<div class="footer">
|
|
|
<el-button type="primary" @click="submitForm25">提 交</el-button>
|
|
|
</div>
|
|
|
@@ -3131,6 +3139,9 @@ export default {
|
|
|
this.configId = response.data.configId
|
|
|
this.configKey = response.data.configKey
|
|
|
this.form25 = JSON.parse(response.data.configValue)
|
|
|
+ if (this.form25.appId == null) {
|
|
|
+ this.$set(this.form25, 'appId', '')
|
|
|
+ }
|
|
|
if (this.form25.images != null) {
|
|
|
this.appImages = this.form25.images.split(',')
|
|
|
}
|