Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
aixianling
2022-07-29 09:14:14 +08:00
3 changed files with 27 additions and 10 deletions

View File

@@ -81,6 +81,7 @@
:limit="9" :limit="9"
action="/app/wxcp/upload/uploadFile" action="/app/wxcp/upload/uploadFile"
accept=".jpg,.png,.jpeg" accept=".jpg,.png,.jpeg"
:on-exceed="onExceed"
:http-request="v => submitUpload(v, '1')"> :http-request="v => submitUpload(v, '1')">
<div class="content-item" trigger> <div class="content-item" trigger>
<img src="https://cdn.cunwuyun.cn/dvcp/announce/big-img.png" /> <img src="https://cdn.cunwuyun.cn/dvcp/announce/big-img.png" />
@@ -96,6 +97,7 @@
:limit="9" :limit="9"
action="/app/wxcp/upload/uploadFile" action="/app/wxcp/upload/uploadFile"
accept=".mp4" accept=".mp4"
:on-exceed="onExceed"
:http-request="v => submitUpload(v, '2')"> :http-request="v => submitUpload(v, '2')">
<div class="content-item" trigger> <div class="content-item" trigger>
<img src="https://cdn.cunwuyun.cn/dvcp/announce/big-video.png" /> <img src="https://cdn.cunwuyun.cn/dvcp/announce/big-video.png" />
@@ -109,6 +111,7 @@
:show-file-list="false" :show-file-list="false"
:before-upload="v => handleChange(v, 20, '.zip,.rar,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.pdf,.txt')" :before-upload="v => handleChange(v, 20, '.zip,.rar,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.pdf,.txt')"
:limit="9" :limit="9"
:on-exceed="onExceed"
action="/app/wxcp/upload/uploadFile" action="/app/wxcp/upload/uploadFile"
accept=".zip,.rar,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.pdf,.txt" accept=".zip,.rar,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.pdf,.txt"
:http-request="v => submitUpload(v, '3')"> :http-request="v => submitUpload(v, '3')">
@@ -245,6 +248,7 @@
v-model="dateForm.choiceTime" v-model="dateForm.choiceTime"
type="datetime" type="datetime"
size="small" size="small"
:picker-options="pickerOptions"
value-format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择定时发送时间"> placeholder="请选择定时发送时间">
</el-date-picker> </el-date-picker>
@@ -319,7 +323,12 @@
}, },
girdNames: '', girdNames: '',
id: '', id: '',
tagsList: [] tagsList: [],
pickerOptions: {
disabledDate: e => {
return e.getTime() < (Date.now() - 60 * 1000 * 60 * 24)
}
}
} }
}, },
@@ -523,6 +532,10 @@
return true return true
}, },
onExceed () {
this.$message.error(`最多上传9个附件`)
},
submitUpload (file, type) { submitUpload (file, type) {
const fileType = { const fileType = {
'1': 'image', '1': 'image',
@@ -553,7 +566,11 @@
onDateForm () { onDateForm () {
this.$refs.dateForm.validate((valid) => { this.$refs.dateForm.validate((valid) => {
if (valid) { if (valid) {
this.confirm(1) if (new Date(this.dateForm.choiceTime).getTime() < Date.now()) {
return this.$message.error('定时发送时间不得早于当前时间')
} else {
this.confirm(1)
}
} }
}) })
}, },

View File

@@ -180,9 +180,9 @@
<div class="bottom-search"> <div class="bottom-search">
<div class="left"> <div class="left">
<el-radio-group v-model="search2.sendStatus" size="small" @change="search2.current = 1, getGroupInfo()"> <el-radio-group v-model="search2.sendStatus" size="small" @change="search2.current = 1, getGroupInfo()">
<el-radio-button size="small" label="0">执行</el-radio-button> <el-radio-button size="small" label="0">送达</el-radio-button>
<el-radio-button size="small" label="1">执行</el-radio-button> <el-radio-button size="small" label="1">送达</el-radio-button>
<el-radio-button size="small" label="2">无法执行</el-radio-button> <el-radio-button size="small" label="2">无法送达</el-radio-button>
</el-radio-group> </el-radio-group>
<div class="userSelcet" placeholder="请选择创建人"> <div class="userSelcet" placeholder="请选择创建人">
<span v-if="search2.deptartId"><ai-open-data type="departmentName" :openid="search2.deptartId"></ai-open-data></span> <span v-if="search2.deptartId"><ai-open-data type="departmentName" :openid="search2.deptartId"></ai-open-data></span>
@@ -388,13 +388,12 @@
const nowTime = this.$moment(new Date()) const nowTime = this.$moment(new Date())
const min = nowTime.diff(this.info.remindTime, 'minute') const min = nowTime.diff(this.info.remindTime, 'minute')
this.min = (60 - min) this.min = (60 - min)
console.log(nowTime.diff(this.info.remindTime, 'minute'))
if (this.min <= 0) { if (this.min <= 0) {
this.isDisabled = false this.isDisabled = false
clearInterval(this.timer)
} else { } else {
this.isDisabled = true this.isDisabled = true
clearInterval(this.timer)
} }
}, 1000) }, 1000)
}, },

View File

@@ -262,6 +262,7 @@
this.isEffectTimeSelect = true this.isEffectTimeSelect = true
this.dialogDate = true this.dialogDate = true
}else { }else {
this.effectType = type
this.getEffect() this.getEffect()
} }
}, },
@@ -327,6 +328,7 @@
this.isEffectTimeSelect = false this.isEffectTimeSelect = false
this.dialogDate = true this.dialogDate = true
}else { }else {
this.departType = type
this.getDepart() this.getDepart()
} }
}, },
@@ -383,10 +385,9 @@
axisPointer: { axisPointer: {
type: 'shadow' type: 'shadow'
}, },
formatter: function(data) { formatter: (data) => {
var index = data[0].dataIndex var index = data[0].dataIndex
let name = `<ai-open-data type="departmentName" openid="${this.departBarData[index].deptId}" class="name"></ai-open-data><br/>宣发任务数:${this.departBarData[index].taskCount}` return `<ww-open-data type="departmentName" openid="${this.departBarData[index].deptId}"></ww-open-data><br/>宣发任务数:${data[0].value}`
return name
} }
}, },
dataZoom: [ dataZoom: [