|
@@ -151,11 +151,11 @@ export default {
|
|
|
},
|
|
},
|
|
|
// 表格字段配置
|
|
// 表格字段配置
|
|
|
columns: [
|
|
columns: [
|
|
|
|
|
+ { prop: 'nian_du_', label: '年度', width: 80,dateFormat: 'yyyy' },
|
|
|
{ prop: 'fen_lei_', label: '记录表单分类', width: 120 },
|
|
{ prop: 'fen_lei_', label: '记录表单分类', width: 120 },
|
|
|
{ prop: 'biao_dan_ming_che', label: '表单名称', width: 350 },
|
|
{ prop: 'biao_dan_ming_che', label: '表单名称', width: 350 },
|
|
|
{ prop: 'shi_wu_shuo_ming_', label: '事务说明', width: 350 },
|
|
{ prop: 'shi_wu_shuo_ming_', label: '事务说明', width: 350 },
|
|
|
|
|
|
|
|
- { prop: 'nian_du_', label: '年度', width: 80 },
|
|
|
|
|
{ prop: 'bian_zhi_shi_jian', label: '上传时间', width: 100 },
|
|
{ prop: 'bian_zhi_shi_jian', label: '上传时间', width: 100 },
|
|
|
// { prop: 'bm_name', label: '上传部门', width: 120 },
|
|
// { prop: 'bm_name', label: '上传部门', width: 120 },
|
|
|
{ prop: 'ry_name', label: '上传人', width: 100 },
|
|
{ prop: 'ry_name', label: '上传人', width: 100 },
|
|
@@ -212,7 +212,7 @@ export default {
|
|
|
if (this.depth == '0') {
|
|
if (this.depth == '0') {
|
|
|
|
|
|
|
|
let nianduWhere = this.niandu ? (
|
|
let nianduWhere = this.niandu ? (
|
|
|
- startTimeWhere ? ` where nian_du_ = '${this.niandu}' and` + startTimeWhere : ` where nian_du_ = '${this.niandu}'`
|
|
|
|
|
|
|
+ startTimeWhere ? ` where nian_du_ like '%${this.niandu}%' and` + startTimeWhere : ` where nian_du_ like '%${this.niandu}%'`
|
|
|
) : (
|
|
) : (
|
|
|
startTimeWhere ? ' where ' + startTimeWhere : ''
|
|
startTimeWhere ? ' where ' + startTimeWhere : ''
|
|
|
)
|
|
)
|
|
@@ -262,7 +262,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
let nianduWhere = this.niandu ? (
|
|
let nianduWhere = this.niandu ? (
|
|
|
- startTimeWhere ? ` where nian_du_ = '${this.niandu}' and` + startTimeWhere : ` where nian_du_ = '${this.niandu}'`
|
|
|
|
|
|
|
+ startTimeWhere ? ` where nian_du_ like '%${this.niandu}%' and` + startTimeWhere : ` where nian_du_ like '%${this.niandu}%'`
|
|
|
) : (
|
|
) : (
|
|
|
startTimeWhere ? ' where ' + startTimeWhere : ''
|
|
startTimeWhere ? ' where ' + startTimeWhere : ''
|
|
|
)
|
|
)
|