|
@@ -247,7 +247,7 @@
|
|
</el-radio-group> -->
|
|
</el-radio-group> -->
|
|
<!-- <el-button type="primary" size="mini" @click="syncDateFn">同步资料日期</el-button> -->
|
|
<!-- <el-button type="primary" size="mini" @click="syncDateFn">同步资料日期</el-button> -->
|
|
</div>
|
|
</div>
|
|
- <el-form-item label="" class="fr"> > </el-form-item>
|
|
|
|
|
|
+ <el-form-item label="" class="fr"> ></el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</el-form>
|
|
</el-form>
|
|
@@ -267,9 +267,13 @@
|
|
title="批量审核吗?"
|
|
title="批量审核吗?"
|
|
@onConfirm="batchExamine"
|
|
@onConfirm="batchExamine"
|
|
>
|
|
>
|
|
- <el-button slot="reference" size="mini" type="warning" icon="el-icon-finished"
|
|
|
|
- >批量审核工程机已审单据</el-button
|
|
|
|
- >
|
|
|
|
|
|
+ <el-button
|
|
|
|
+ slot="reference"
|
|
|
|
+ size="mini"
|
|
|
|
+ type="warning"
|
|
|
|
+ icon="el-icon-finished"
|
|
|
|
+ >批量审核工程机已审单据
|
|
|
|
+ </el-button>
|
|
</el-popconfirm>
|
|
</el-popconfirm>
|
|
</div>
|
|
</div>
|
|
<div class="fr">
|
|
<div class="fr">
|
|
@@ -554,20 +558,32 @@
|
|
type="text"
|
|
type="text"
|
|
class="textColor"
|
|
class="textColor"
|
|
@click="examineFn(scope.row.depositManageId)"
|
|
@click="examineFn(scope.row.depositManageId)"
|
|
- >审批</el-button
|
|
|
|
- >
|
|
|
|
|
|
+ >审批
|
|
|
|
+ </el-button>
|
|
|
|
|
|
<el-button
|
|
<el-button
|
|
v-if="
|
|
v-if="
|
|
scope.row.examineStatus == 'SAVE' ||
|
|
scope.row.examineStatus == 'SAVE' ||
|
|
- scope.row.examineStatus == 'OK' ||
|
|
|
|
- scope.row.examineStatus == 'FAIL'
|
|
|
|
|
|
+ scope.row.examineStatus == 'OK' ||
|
|
|
|
+ scope.row.examineStatus == 'FAIL'
|
|
"
|
|
"
|
|
type="text"
|
|
type="text"
|
|
class="textColor"
|
|
class="textColor"
|
|
@click="infoFn(scope.row.depositManageId)"
|
|
@click="infoFn(scope.row.depositManageId)"
|
|
- >详情</el-button
|
|
|
|
|
|
+ >详情
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-popconfirm
|
|
|
|
+ style="margin-left: 10px"
|
|
|
|
+ title="二次退押吗?"
|
|
|
|
+ @onConfirm="secondRefund(scope.row)"
|
|
>
|
|
>
|
|
|
|
+ <el-button
|
|
|
|
+ slot="reference"
|
|
|
|
+ type="text"
|
|
|
|
+ size="mini"
|
|
|
|
+ >二次退押
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-popconfirm>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -596,12 +612,14 @@ import {
|
|
examineData,
|
|
examineData,
|
|
getDepositManageList,
|
|
getDepositManageList,
|
|
getDepositManageDate,
|
|
getDepositManageDate,
|
|
- getDepositManagExport
|
|
|
|
|
|
+ getDepositManagExport,
|
|
|
|
+ secondRefund
|
|
} from '@/api/engin_deposit/refund_list'
|
|
} from '@/api/engin_deposit/refund_list'
|
|
import { downloadFiles, handleImport } from '@/utils/util'
|
|
import { downloadFiles, handleImport } from '@/utils/util'
|
|
import ExamineDialog from '@/components/Common/examine-dialog'
|
|
import ExamineDialog from '@/components/Common/examine-dialog'
|
|
|
|
|
|
import RefundListDetail from './components/refund_list-detail.vue'
|
|
import RefundListDetail from './components/refund_list-detail.vue'
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
RefundListDetail,
|
|
RefundListDetail,
|
|
@@ -804,6 +822,14 @@ export default {
|
|
// startDeliverTime: "",
|
|
// startDeliverTime: "",
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ secondRefund(row) {
|
|
|
|
+ delete row.sums1
|
|
|
|
+ delete row.sums2
|
|
|
|
+ secondRefund(row).then(res => {
|
|
|
|
+ this.$successMsg('二次退押成功')
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
// 切换列表
|
|
// 切换列表
|
|
changeEnginOrderTypeFn(v) {
|
|
changeEnginOrderTypeFn(v) {
|
|
// console.log(v);
|
|
// console.log(v);
|
|
@@ -952,12 +978,15 @@ export default {
|
|
.dateStyle {
|
|
.dateStyle {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
+
|
|
.import-btn {
|
|
.import-btn {
|
|
margin-left: 10px;
|
|
margin-left: 10px;
|
|
display: inline-block;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
+
|
|
.fanwei {
|
|
.fanwei {
|
|
display: flex;
|
|
display: flex;
|
|
|
|
+
|
|
span {
|
|
span {
|
|
margin: 0 20px;
|
|
margin: 0 20px;
|
|
}
|
|
}
|