|
@@ -70,7 +70,9 @@
|
|
|
effect="dark"
|
|
|
content="申请导出"
|
|
|
placement="top"
|
|
|
- v-if="powers.some((item) => item == '049')&& scope.row.status !== '1'"
|
|
|
+ v-if="
|
|
|
+ powers.some((item) => item == '049') && scope.row.status !== '1'
|
|
|
+ "
|
|
|
>
|
|
|
<i class="el-icon-thumb tb-icon" @click="setStatus(scope.row.id)"></i>
|
|
|
</el-tooltip>
|
|
@@ -152,28 +154,40 @@ export default {
|
|
|
{
|
|
|
prop: "name",
|
|
|
label: "业务表名称",
|
|
|
+ "min-width":"145px"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: "apply_name",
|
|
|
+ label: "申请人",
|
|
|
+ width:"80px"
|
|
|
},
|
|
|
{
|
|
|
prop: "status",
|
|
|
label: "状态",
|
|
|
_slot_: "status",
|
|
|
+ "min-width":"100px"
|
|
|
},
|
|
|
+
|
|
|
{
|
|
|
prop: "remark",
|
|
|
label: "下载反馈备注",
|
|
|
+ "min-width":"145px"
|
|
|
},
|
|
|
|
|
|
{
|
|
|
prop: "expiretime",
|
|
|
label: "文件过期时间",
|
|
|
+ "width":"145px"
|
|
|
},
|
|
|
{
|
|
|
prop: "updatetime",
|
|
|
label: "更新时间",
|
|
|
+ "width":"145px"
|
|
|
},
|
|
|
{
|
|
|
prop: "addtime",
|
|
|
label: "创建时间",
|
|
|
+ "width":"145px"
|
|
|
},
|
|
|
{
|
|
|
prop: "",
|
|
@@ -222,8 +236,8 @@ export default {
|
|
|
id: id,
|
|
|
};
|
|
|
const res = await asyncRequest.download(model);
|
|
|
+
|
|
|
if (res && res.code === 0) {
|
|
|
- this.loading = false;
|
|
|
this.$notify.success({
|
|
|
title: "申请成功,请等待系统执行完成!",
|
|
|
message: "",
|
|
@@ -234,6 +248,7 @@ export default {
|
|
|
} else {
|
|
|
this.$message.warning(res.message);
|
|
|
}
|
|
|
+ this.loading = false;
|
|
|
}
|
|
|
},
|
|
|
async searchList() {
|