|
@@ -193,7 +193,7 @@ export default {
|
|
return (h, { row, index, column }) => {
|
|
return (h, { row, index, column }) => {
|
|
return (
|
|
return (
|
|
<div class="operation-btns">
|
|
<div class="operation-btns">
|
|
- {row.examineStatus == '保存' ? (
|
|
|
|
|
|
+ {row.examineStatus == 'SAVE' ? (
|
|
<el-button
|
|
<el-button
|
|
size="mini"
|
|
size="mini"
|
|
type="text"
|
|
type="text"
|
|
@@ -220,7 +220,7 @@ export default {
|
|
详情
|
|
详情
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
|
- {row.examineStatus == '待审核' && this.$checkBtnRole('examine', this.$route.meta.roles) ? (
|
|
|
|
|
|
+ {row.examineStatus == 'WAIT' && this.$checkBtnRole('examine', this.$route.meta.roles) ? (
|
|
<el-button
|
|
<el-button
|
|
size="mini"
|
|
size="mini"
|
|
type="text"
|
|
type="text"
|
|
@@ -237,7 +237,7 @@ export default {
|
|
''
|
|
''
|
|
)}
|
|
)}
|
|
|
|
|
|
- {row.examineStatus == '保存' ? (
|
|
|
|
|
|
+ {row.examineStatus == 'SAVE' ? (
|
|
<el-popconfirm
|
|
<el-popconfirm
|
|
onOnConfirm={async () => {
|
|
onOnConfirm={async () => {
|
|
this.handlesubmit(row)
|
|
this.handlesubmit(row)
|
|
@@ -252,7 +252,7 @@ export default {
|
|
''
|
|
''
|
|
)}
|
|
)}
|
|
|
|
|
|
- {row.examineStatus == '审核通过' && row.status ? (
|
|
|
|
|
|
+ {row.examineStatus == 'OK' && row.status ? (
|
|
<el-popconfirm
|
|
<el-popconfirm
|
|
onOnConfirm={async () => {
|
|
onOnConfirm={async () => {
|
|
this.handleNullify(row)
|
|
this.handleNullify(row)
|
|
@@ -267,7 +267,7 @@ export default {
|
|
''
|
|
''
|
|
)}
|
|
)}
|
|
|
|
|
|
- {row.examineStatus == '审核通过' ? (
|
|
|
|
|
|
+ {row.examineStatus == 'OK' ? (
|
|
<el-popconfirm
|
|
<el-popconfirm
|
|
onOnConfirm={async () => {
|
|
onOnConfirm={async () => {
|
|
this.handleClone(row)
|
|
this.handleClone(row)
|
|
@@ -282,7 +282,7 @@ export default {
|
|
''
|
|
''
|
|
)}
|
|
)}
|
|
|
|
|
|
- {row.examineStatus != '审核通过' ? (
|
|
|
|
|
|
+ {row.examineStatus != 'OK' ? (
|
|
<el-popconfirm
|
|
<el-popconfirm
|
|
onOnConfirm={async () => {
|
|
onOnConfirm={async () => {
|
|
this.hanleDelete(row.id)
|
|
this.hanleDelete(row.id)
|
|
@@ -297,7 +297,7 @@ export default {
|
|
''
|
|
''
|
|
)}
|
|
)}
|
|
|
|
|
|
- {row.examineStatus == '审核通过' ? (
|
|
|
|
|
|
+ {row.examineStatus == 'OK' ? (
|
|
<el-popconfirm
|
|
<el-popconfirm
|
|
onOnConfirm={async () => {
|
|
onOnConfirm={async () => {
|
|
this.hanleAbandon(row.id)
|
|
this.hanleAbandon(row.id)
|