|
@@ -818,7 +818,7 @@ export default {
|
|
|
},
|
|
|
/** 提交按钮操作 */
|
|
|
handleQuery() {
|
|
|
- for(let item of this.queryData.columns){
|
|
|
+ for(let item of this.queryData.showData){
|
|
|
if(item.htmlType == 'checkbox' || item.htmlType == 'imageUpload' || item.htmlType == 'fileUpload'){
|
|
|
this.form[item.columnName] = this.$refs[item.columnName][0].config
|
|
|
} else{
|
|
@@ -830,9 +830,9 @@ export default {
|
|
|
this.forme.table = 'sys_schedule'
|
|
|
this.forme.objId = -1
|
|
|
this.forme.fixedData = this.form
|
|
|
- if(this.forme.fixedData.remind_type !== undefined){
|
|
|
- this.forme.fixedData.remind_type = this.forme.fixedData.remind_type.join(',');
|
|
|
- }
|
|
|
+ // if(this.forme.fixedData.remind_type !== undefined){
|
|
|
+ // this.forme.fixedData.remind_type = this.forme.fixedData.remind_type.join(',');
|
|
|
+ // }
|
|
|
//日历
|
|
|
console.log(this.forme.fixedData,this.forme)
|
|
|
addConfigindex(this.forme).then(response => {
|
|
@@ -846,9 +846,7 @@ export default {
|
|
|
this.forme.table = 'sys_memorandum'
|
|
|
this.forme.objId = -1
|
|
|
this.forme.fixedData = this.form
|
|
|
- if(this.forme.fixedData.remind_type !== undefined){
|
|
|
- this.forme.fixedData.remind_type = this.forme.fixedData.remind_type.join(',');
|
|
|
- }
|
|
|
+
|
|
|
//备忘录
|
|
|
addConfigindex(this.forme).then(response => {
|
|
|
this.msgSuccess("新增成功");
|