刘翔宇-旅管家 3 years ago
parent 86cc6e3212
commit 2ee0ba335a

@ -21,7 +21,8 @@
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>网址 <span style="color: red;font-weight: 600;padding-right: 4px;">*</span>网址
</div> </div>
<div class="xy-table-item-content"> <div class="xy-table-item-content">
<el-input clearable placeholder="请输入网址" v-model="detail.url" style="width: 300px;" /> <el-input type="textarea" clearable placeholder="请输入网址" v-model="detail.url" style="width: 300px;" />
需要添加http或者https
</div> </div>
</div> </div>
</template> </template>
@ -52,7 +53,7 @@
<div class="xy-table-item-label">短信接收人 <div class="xy-table-item-label">短信接收人
</div> </div>
<div class="xy-table-item-content"> <div class="xy-table-item-content">
<el-input type="textarea" clearable placeholder="请填写短信接收人手机号英文逗号隔开" v-model="detail.mobile" style="width: 300px;" /> <el-input type="textarea" clearable placeholder="请填写短信接收人手机号英文逗号隔开" v-model="detail.mobile" style="width: 300px;" /> 短信接收人手机号英文逗号隔开
</div> </div>
</div> </div>
</template> </template>

@ -75,6 +75,9 @@
align: 'left', align: 'left',
width: 280, width: 280,
fixed: 'left', fixed: 'left',
formatter: (v1, v2, value) => {
return value.join(',');
}
}, { }, {
prop: 'mobile', prop: 'mobile',
@ -88,13 +91,13 @@
}, { }, {
prop: 'start_time', prop: 'start_time',
label: '项目开始时间', label: '开始时间',
width: 180, width: 180,
align: 'center' align: 'center'
}, { }, {
prop: 'end_time', prop: 'end_time',
label: '项目结束时间', label: '结束时间',
width: 180, width: 180,
align: 'center' align: 'center'
}, },

Loading…
Cancel
Save