-fix APP版本时间问题,微信消息修改时间问题
parent
48b3e3246c
commit
bf58711c88
|
@ -281,6 +281,9 @@ export default {
|
||||||
wechatFormDataEdit() {
|
wechatFormDataEdit() {
|
||||||
this.$refs['wechatFormData'].validate((valid) => {
|
this.$refs['wechatFormData'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
if(!this.wechatFormData.updateTime){
|
||||||
|
this.wechatFormData.updateTime = ''
|
||||||
|
}
|
||||||
editWechatMessageTemplate(this.id, this.wechatFormData).then(res => {
|
editWechatMessageTemplate(this.id, this.wechatFormData).then(res => {
|
||||||
if (res.message === 'success') {
|
if (res.message === 'success') {
|
||||||
this.$Message.success('微信模板修改成功');
|
this.$Message.success('微信模板修改成功');
|
||||||
|
|
|
@ -342,11 +342,13 @@ export default {
|
||||||
this.$refs.form.validate((valid) => {
|
this.$refs.form.validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.submitLoading = true;
|
this.submitLoading = true;
|
||||||
|
if(JSON.stringify(this.form.versionUpdateDate).includes('T')){
|
||||||
const versionUpdateDate = this.$options.filters.unixToDate(
|
const versionUpdateDate = this.$options.filters.unixToDate(
|
||||||
this.form.versionUpdateDate / 1000
|
this.form.versionUpdateDate / 1000
|
||||||
);
|
);
|
||||||
this.form.versionUpdateDate = versionUpdateDate;
|
this.form.versionUpdateDate = versionUpdateDate;
|
||||||
this.form.updateTime = versionUpdateDate;
|
this.form.updateTime = versionUpdateDate;
|
||||||
|
}
|
||||||
if (this.modalType == 0) {
|
if (this.modalType == 0) {
|
||||||
// 添加 避免编辑后传入id等数据 记得删除
|
// 添加 避免编辑后传入id等数据 记得删除
|
||||||
delete this.form.id;
|
delete this.form.id;
|
||||||
|
|
Loading…
Reference in New Issue