|
@@ -421,7 +421,7 @@ func (this *PptV2Controller) DetailPpt() {
|
|
|
condition += ` AND image_type=? `
|
|
|
pars = append(pars, 2)
|
|
|
|
|
|
- condition += ` ORDER BY modify_time DESC `
|
|
|
+ condition += ` ORDER BY create_time asc `
|
|
|
|
|
|
imageConfList, err := models.GetImageConfByCondition(condition, pars)
|
|
|
|
|
@@ -436,7 +436,7 @@ func (this *PptV2Controller) DetailPpt() {
|
|
|
condition += ` AND image_type=? `
|
|
|
pars = append(pars, 3)
|
|
|
|
|
|
- condition += ` ORDER BY modify_time DESC `
|
|
|
+ condition += ` ORDER BY create_time asc `
|
|
|
|
|
|
imageConfList, err := models.GetImageConfByCondition(condition, pars)
|
|
|
|