|
|
@@ -1284,6 +1284,18 @@
|
|
|
<el-input v-model="form18.authDomainName"></el-input>
|
|
|
</el-tooltip>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="短信推送域名">
|
|
|
+ <el-tooltip class="item" effect="dark" content="看课短链域名" placement="top-end">
|
|
|
+ <el-select v-model="form18.smsDomainName" placeholder="请选择看课短链域名">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in smsDomainNameOptions"
|
|
|
+ :key="dict.dictValue"
|
|
|
+ :label="dict.dictLabel"
|
|
|
+ :value="dict.dictValue">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-tooltip>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="公众号appId">
|
|
|
<el-tooltip class="item" effect="dark" content="授权公众号appId" placement="top-end">
|
|
|
<el-input v-model="form18.mpAppId"></el-input>
|
|
|
@@ -2560,6 +2572,7 @@ export default {
|
|
|
videoAccept: 'video/*',
|
|
|
courseMaConfigLoading: false,
|
|
|
courseMaConfigList: [],
|
|
|
+ smsDomainNameOptions:[],//看课短信推送域名
|
|
|
switchDialogVisible: false,
|
|
|
deptLimit: false,
|
|
|
switchForm: {
|
|
|
@@ -2603,6 +2616,7 @@ export default {
|
|
|
form18: {
|
|
|
viewCommentNum: 200,
|
|
|
roomLinkAllow:true,
|
|
|
+ smsDomainName: '', // 初始化为空字符串或其他默认值
|
|
|
},
|
|
|
form19: {},
|
|
|
form20: {
|
|
|
@@ -2784,6 +2798,9 @@ export default {
|
|
|
this.getDicts('sys_integral_log_type').then(response => {
|
|
|
this.integralLogTypeOptions = response.data
|
|
|
})
|
|
|
+ this.getDicts("sys_sms_domain_name_list").then((response) => {
|
|
|
+ this.smsDomainNameOptions = response.data;
|
|
|
+ });
|
|
|
getStoreProductColumns().then( response => {
|
|
|
this.storeProductScrmColumns = response.data
|
|
|
})
|