/ig, ' ') : ''
}}
-
+
{{ standShowItemEO.comparedWithPrevious }}
-
+
{{ standShowItemEO.complianceRequire ? (standShowItemEO.complianceRequire === '1' ? '是' : '否') : '-' }}
-
+
-
+
@@ -408,7 +409,7 @@
-
+
@@ -471,6 +472,20 @@
}
},
methods: {
+ sortChange({ column, prop, order }){
+ if(order === "descending"){
+ // 降序
+ this.querySarProStateZero('desc')
+ }
+ if(order === 'ascending'){
+ // 升序
+ this.querySarProStateZero('asc')
+ }
+ if(order === null){
+ // 不排序
+ this.querySarProStateZero()
+ }
+ },
// ...
handleCommand(command) {
switch (command[1]) {
@@ -629,13 +644,14 @@
this.querySarProStateZero()
},
// 查看项目符合性
- querySarProStateZero () {
+ querySarProStateZero (order) {
var form = this.sarProStateEO
form.position = this.sarProject.position
form.standId = this.standId
form.current = this.sarProStateTotalPage
form.size = this.sarProStatePageSize
// form.interpretationTime = this.interpretationTime
+ form.order = order
form.prcNum = this.prcNum
this.$http.get('sarStandardComplianceAssessResult/interpretation', form, {
_this: this,