Commit fd2da11e by liupeng

Merge branch 'dev_xzeq' of http://47.92.108.28/changchao/founder_vue into dev_xzeq

parents 38396870 b6791236
......@@ -51,4 +51,17 @@ export const queryByXxzjbh = params =>
// 6.12查询合成研判任务跟踪列表
export const getRwgzByRwxxzjbh = params =>
post(`${base.alyIP}/hcyprw/getRwgzByRwxxzjbh`, params);
\ No newline at end of file
post(`${base.alyIP}/hcyprw/getRwgzByRwxxzjbh`, params);
// 23.1申请专业研判
export const sqzyyp = params =>
post(`${base.alyIP}/hcyprw/sqzyyp`, params);
// 23.1申请专业研判
export const zyyppg = params =>
post(`${base.alyIP}/hcyprw/zyyppg`, params);
// 23.2专业研判审批
export const zyypsp = params =>
post(`${base.alyIP}/hcyprw/zyypsp`, params);
......@@ -12,4 +12,8 @@ export const deleteflws = params =>
post(`${base.alyIP}/flws/delete`, params);
//查询法律文书信息
export const queryByXxzjbh = params =>
post(`${base.alyIP}/flws/queryByXxzjbh`, params);
\ No newline at end of file
post(`${base.alyIP}/flws/queryByXxzjbh`, params);
//回显法律文书详情信息
export const queryByAsjbhAndFlwsdm = params =>
post(`${base.alyIP}/flws/queryByAsjbhAndFlwsdm`, params);
\ No newline at end of file
......@@ -9,7 +9,7 @@ export const updatezp = params =>
postform(`${base.alyIP}/zp/update`, params);
//删除人员照片信息
export const deletezp = params =>
post(`${base.alyIP}/zp/delete`, params);
postform(`${base.alyIP}/zp/delete`, params);
//查询人员照片信息
export const queryZpByXxzjbh = params =>
post(`${base.alyIP}/zp/queryByXxzjbh`, params);
\ No newline at end of file
post(`${base.alyIP}/zp/queryByRybhAndBw`, params);
\ No newline at end of file
......@@ -23,3 +23,7 @@ export const getYhzYh = params =>
export const jsYhzYq = params =>
post(`${base.alyIP}/yhz/jsYhzYq`, params);
// 已完成 , 正在承担工作数
export const getYhCdrw = params =>
post(`${base.alyIP}/yhz/getYhCdrw`, params);
......@@ -360,6 +360,7 @@
pageBs != 'queryDx' &&
pageBs != 'queryZj' &&
pageBs != 'sqqxgl' &&
pageBs != 'hpyprwSp' &&
pageBs != 'queryfzxyr'
"
>
......@@ -662,6 +663,14 @@
v-html="scope.row[columnTitle.prop]"
></span>
</div>
<div v-else-if="columnTitle.toIn">
<span
@click="toIn(scope.row)"
class="edit"
style="margin-right: 16px"
v-html="scope.row[columnTitle.prop]"
></span>
</div>
<div
v-else-if="
columnTitle.prop == 'zpbw' && columnTitle.type == 'select'
......@@ -966,6 +975,7 @@
pageBs == 'yhzyh' ||
pageBs == 'cxyhz' ||
pageBs == 'queryHbyp' ||
pageBs == 'hpyprwSp' ||
pageBs == 'wfqdzczl'
)
"
......@@ -1071,6 +1081,8 @@
pageBs != 'queryRlqbxsSH' &&
pageBs != 'yjrwGl' &&
pageBs != 'wfzdzczl' &&
pageBs != 'queryHbyp' &&
pageBs != 'hpyprwSp' &&
pageBs != 'queryfzxyr'
"
>删除</span
......@@ -1877,6 +1889,9 @@ export default {
toInfor(data) {
this.$emit("toInfor", data);
},
toIn(data) {
this.$emit("toIn", data);
},
toCY(data) {
this.$emit("toCY", data);
},
......
......@@ -880,6 +880,10 @@ export default {
},
propTitle: String,
pageBs: String,
fileLists: {
type: Object,
default: () => {}
}
},
data() {
return {
......@@ -888,7 +892,7 @@ export default {
propFormField: this.formField,
formLabelAlign: this.formLabelAligns,
rules: {},
fileLists: {},
fileLists: this.fileLists,
imageUrl: {},
shade: false,
//电梯
......@@ -1414,15 +1418,14 @@ export default {
// debugger;
if (item.type == "photo") {
if (isJPG) {
debugger
this.$set(self.imageUrl, item.id, file.raw);
this.$set(
self.formLabelAlign,
item.id,
URL.createObjectURL(file.raw)
);
// debugger;
console.log(12);
this.$emit("uploadPhoto", self.imageUrl[item.id]);
this.$emit("uploadPhoto", self.imageUrl[item.id], file, fileList, item,);
} else {
self.$message.error("请上传正确的图片");
}
......@@ -1433,6 +1436,8 @@ export default {
}
if (isLt1M) {
this.fileLists[item.id].push(file);
debugger
this.$emit('handleChange',file, fileList, item)
// this.$refs.formLabelAlign.clearValidate();
} else {
this.$confirm("上传文件不能超过100M", "提示", {
......@@ -1476,17 +1481,20 @@ export default {
this.$emit("flwsInsert", file);
},
flwsRemove(file, fileList, item, parentItem) {
debugger
this.$emit("flwsRemove", file);
this.$set(this.fileLists, item.id, fileList);
console.log(this.fileLists);
},
handleRemove(file, fileList, item, parentItem) {
debugger
this.$emit("handleRemove", file);
this.$set(this.fileLists, item.id, fileList);
console.log(this.fileLists);
},
//子组件调用删除接口后进行前端删除
photoRemove(item) {
debugger
this.$set(this.formLabelAlign, item.id, "");
this.$set(this.imageUrl, item.id, "");
},
......@@ -1498,6 +1506,7 @@ export default {
type: "warning",
})
.then(() => {
debugger
this.$emit("removePhoto", item);
})
.catch(() => {
......@@ -1708,6 +1717,7 @@ export default {
deep: true,
},
fileLists(val) {
debugger
console.log(222, val);
},
"formLabelAlign.jssj"(val) {
......
......@@ -9,6 +9,14 @@ const menuLayouts = [
component: () => import("@/views/hbyprw/hbyprw/queryHbyp.vue")
},
{
path: "/hpyprwSp",
name: "hpyprwSp",
meta: {
title: '合成研判任务'
},
component: () => import("@/views/hbyprw/hpyprwSp/hpyprwSp.vue")
},
{
path: "/queryAdd",
name: "queryAdd",
meta: {
......
......@@ -11663,100 +11663,123 @@ const zbfzxyr_flws = [
name: "呈请拘留报告书:",
id: "cqjlbgs",
type: "file",
fileId: 'cqjlbgs',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
col: "2",
flwsAsjflwsdm: "030501",
fileList: []
},
{
name: "呈请提请批准逮捕报告书:",
id: "cqtqpzdbbgs",
type: "file",
fileId: 'cqtqpzdbbgs',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
col: "2",
fileList: []
},
{
name: "批准逮捕决定书:",
id: "pzdbjds",
fileId: 'pzdbjds',
type: "file",
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "拘留证:",
id: "jlz",
fileId: 'jlz',
type: "file",
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "逮捕证:",
id: "dbz",
type: "file",
fileId: 'dbz',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "取保候审决定执行通知书:",
id: "qbhsjdzxtzs",
fileId: 'qbhsjdzxtzs',
type: "file",
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "监视居住决定书执行通知书:",
id: "jsjzjdszxtzs",
type: "file",
fileId: 'jsjzjdszxtzs',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "死亡证明:",
id: "swzm",
type: "file",
fileId: 'swzm',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "精神病鉴定书:",
id: "jsbjds",
type: "file",
fileId: 'jsbjds',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "户籍证明:",
id: "hjzm",
fileId: 'hjzm',
type: "file",
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
{
name: "提请批准逮捕书:",
id: "tqpzdbs",
type: "file",
fileId: 'tqpzdbs',
value: "",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
placeholder: "请输入",
fileList: [],
col: "2",
},
]
......
......@@ -8,53 +8,71 @@
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
ref="rightContent"
@dele="dele"
@add="add"
@toInfor="toInfor"
>
<template #btnGroup="scope">
<span
v-if="scope.scope.row.sfrlPdbz != 1"
v-if="scope.scope.row.sfkfk == '1'"
class="hbyp"
@click="toFp(scope.scope)"
>分配合并研判</span
>
<span
v-if="scope.scope.row.sfrlPdbz != 1 && scope.scope.row.sfjjPdbz == 0"
v-if="scope.scope.row.sfkrl == 1"
class="hbyp"
@click="toRl(scope.scope)"
>认领合并研判</span
>
<span
v-if="scope.scope.row.sfrlPdbz == 1 && scope.scope.row.sfbjPdbz == 0"
v-if="scope.scope.row.sfkjj == 1"
class="hbyp"
@click="toJj(scope.scope)"
>交接合并研判</span
>
<span
v-if="scope.scope.row.sfrlPdbz == 1 && scope.scope.row.sfbjPdbz == 0"
v-if="scope.scope.row.sfkbj == 1"
class="hbyp"
@click="toBj(scope.scope)"
>办结合并研判</span
>
<span
v-if="scope.scope.row.sfrlPdbz == 1 && scope.scope.row.sfbjPdbz == 0"
v-if="scope.scope.row.sfkdb == 1"
class="hbyp"
@click="toDb(scope.scope)"
>督办合并研判</span
>
<span
v-if="scope.scope.row.sfrlPdbz == 1 && scope.scope.row.sfbjPdbz == 0"
v-if="scope.scope.row.sfkfk == 1"
class="hbyp"
@click="toFk(scope.scope)"
>反馈合并研判</span
>
<span
v-if="scope.scope.row.sfrlPdbz == 1 && scope.scope.row.sfbjPdbz == 0"
v-if="scope.scope.row.sfksq == 1"
class="hbyp"
@click="toSq(scope.scope)"
>申请专业研判</span
>
<span
v-if="scope.scope.row.sfkpg == 1"
class="hbyp"
@click="toYppg(scope.scope)"
>专业研判评估</span
>
<span
v-if="scope.scope.row.sfkxg == 1"
class="hbyp"
@click="edit(scope.scope)"
>修改</span
>
<span
v-if="scope.scope.row.sfksc == 1"
class="hbyp"
@click="dele(scope.scope)"
>删除</span
>
</template>
</right-content>
<!-- 督办合成研判任务 -->
......@@ -184,6 +202,61 @@
<el-button type="primary" @click="addRl">确 定</el-button>
</span>
</el-dialog>
<!-- 申请专业研判 -->
<el-dialog
title="申请专业研判"
:visible.sync="dialogVisibleSq"
width="40%"
center
@closed="closedRl"
>
<el-form :inline="true" :model="examineInfoSq" class="demo-form-inline">
<el-row>
<el-col :span="20" :offset="2">
<el-form-item label="是否快速审批:">
<el-radio v-model="examineInfoSq.sfksspPdbz" label="1"
></el-radio
>
<el-radio v-model="examineInfoSq.sfksspPdbz" label="0"
></el-radio
>
</el-form-item>
</el-col>
</el-row>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisibleSq = false">取 消</el-button>
<el-button type="primary" @click="addSq">确 定</el-button>
</span>
</el-dialog>
<!-- 专业研判评估 -->
<el-dialog
title="专业研判评估"
:visible.sync="dialogVisibleYppg"
width="40%"
center
@closed="closedRl"
>
<el-form :inline="true" :model="examineInfoYppg" class="demo-form-inline">
<el-row>
<el-col :span="20" :offset="2">
<el-form-item label="评估意见:" style="width:100%">
<el-input
type="textarea"
v-model="examineInfoYppg.pgyj"
:autosize="{ minRows: 3 }"
style="width: 300px"
placeholder="评估意见"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisibleYppg = false">取 消</el-button>
<el-button type="primary" @click="addYppg">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
......@@ -195,6 +268,8 @@ import {
fkHcyprw,
bjHcyprw,
rlHcyprw,
sqzyyp,
zyyppg,
} from "@/api/hbyp/hbyp.js";
export default {
name: "queryHbyp",
......@@ -228,6 +303,16 @@ export default {
sfrlPdbz: "1",
xxzjbh: "",
},
dialogVisibleSq: false,
examineInfoSq: {
sfksspPdbz: "",
xxzjbh: "",
},
dialogVisibleYppg: false,
examineInfoYppg: {
pgyj: "",
xxzjbh: "",
},
header: "合成研判任务列表",
pageBs: "queryHbyp",
cxFormData: {
......@@ -464,6 +549,16 @@ export default {
width: "200",
},
{
label: "是否专业研判",
prop: "sfzyypStr",
width: "200",
},
{
label: "是否快速审批",
prop: "sfksspStr",
width: "200",
},
{
label: "接收人身份证号",
prop: "jsrGmsfhm",
width: "200",
......@@ -619,6 +714,14 @@ export default {
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "hpyprwSp",
label: "合成研判任务审批",
index: "hpyprwSp",
auth: "M0102",
className: "iconfont iconrizhi",
disabled: false,
},
],
},
],
......@@ -730,6 +833,36 @@ export default {
this.$set(this.examineInfoFk, "xxzjbh", scope.row.xxzjbh);
this.dialogVisibleFk = true;
},
toSq(scope) {
this.$set(this.examineInfoSq, "xxzjbh", scope.row.xxzjbh);
this.dialogVisibleSq = true;
},
addSq() {
sqzyyp(this.examineInfoSq).then((res) => {
if (res.success && res.code == 200) {
this.$message.success("申请成功");
this.dialogVisibleSq = false;
this.$refs.rightContent.doQuery("yes");
} else {
this.$message.error("申请失败");
}
});
},
toYppg(scope) {
this.$set(this.examineInfoYppg, "xxzjbh", scope.row.xxzjbh);
this.dialogVisibleYppg = true;
},
addYppg() {
zyyppg(this.examineInfoYppg).then((res) => {
if (res.success && res.code == 200) {
this.$message.success("评估成功");
this.dialogVisibleYppg = false;
this.$refs.rightContent.doQuery("yes");
} else {
this.$message.error("评估失败");
}
});
},
closedFk() {
for (let key in this.examineInfoFk) {
this.$set(this.examineInfoFk, key, "");
......
<template>
<div>
<div class="headerTitle">
<img src="~@/assets/img/login/jinhui.png" alt="" /><span>关系人</span>
<img src="~@/assets/img/login/jinhui.png" alt="" /><span>人员使用服务标识号</span>
</div>
<div class="Content rightContent">
<right-content
......@@ -10,6 +10,7 @@
:cxFormData="cxFormData"
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
@edit="edit"
:cxUrl="cxUrl"
ref="rightContent"
></right-content>
......@@ -147,14 +148,14 @@ export default {
// },
// });
// },
// edit(obj) {
// this.$router.pushToTab({
// path: "/addssydtxb",
// query: {
// xxzjbh: obj.row.xxzjbh,
// },
// });
// },
edit(obj) {
this.$router.pushToTab({
path: "/addryfwbshxx",
query: {
xxzjbh: obj.row.xxzjbh,
},
});
},
},
};
</script>
......
......@@ -11,9 +11,6 @@
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
@add="add"
@dele="dele"
@toInfor="toInfor"
@edit="edit"
ref="rightContent"
></right-content>
......@@ -119,14 +116,16 @@ export default {
// },
// });
// },
// edit(obj) {
// this.$router.pushToTab({
// path: "/addssydtxb",
// query: {
// xxzjbh: obj.row.xxzjbh,
// },
// });
// },
edit(obj) {
debugger;
this.$router.pushToTab({
path: "/addzbxyr",
query: {
xxzjbh: obj.row.xxzjbh,
asjxgrybh: obj.row.asjbh,
},
});
},
},
};
</script>
......
......@@ -11,6 +11,7 @@
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
@edit="edit"
ref="rightContent"
></right-content>
</div>
......@@ -114,14 +115,14 @@ export default {
// },
// });
// },
// edit(obj) {
// this.$router.pushToTab({
// path: "/addssydtxb",
// query: {
// xxzjbh: obj.row.xxzjbh,
// },
// });
// },
edit(obj) {
this.$router.pushToTab({
path: "/addrygxr",
query: {
xxzjbh: obj.row.xxzjbh,
},
});
},
},
};
</script>
......
......@@ -10,6 +10,7 @@
:cxFormData="cxFormData"
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
@edit="edit"
:cxUrl="cxUrl"
ref="rightContent"
></right-content>
......@@ -115,14 +116,14 @@ export default {
// },
// });
// },
// edit(obj) {
// this.$router.pushToTab({
// path: "/addssydtxb",
// query: {
// xxzjbh: obj.row.xxzjbh,
// },
// });
// },
edit(obj) {
this.$router.pushToTab({
path: "/addryba",
query: {
xxzjbh: obj.row.xxzjbh,
},
});
},
},
};
</script>
......
......@@ -10,6 +10,7 @@
:cxFormData="cxFormData"
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
@edit="edit"
:cxUrl="cxUrl"
ref="rightContent"
></right-content>
......@@ -115,14 +116,14 @@ export default {
// },
// });
// },
// edit(obj) {
// this.$router.pushToTab({
// path: "/addssydtxb",
// query: {
// xxzjbh: obj.row.xxzjbh,
// },
// });
// },
edit(obj) {
this.$router.pushToTab({
path: "/addrybh",
query: {
xxzjbh: obj.row.xxzjbh,
},
});
},
},
};
</script>
......
......@@ -8,15 +8,147 @@
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
@dele="dele"
@toInfor="toInfor"
@toIn="toIn"
ref="rightContent"
></right-content>
<el-dialog title="已完成工作数" :visible.sync="dialogTableVisible1">
<div>
<el-table
ref="multipleTable"
:data="gridData1"
v-loading="tableLoading1"
element-loading-text="拼命加载中"
center
style="width: 100%"
>
<el-table-column
property="xxzjbh"
label="信息主键编号"
width="300"
></el-table-column>
<el-table-column
property="yprwfldmStr"
label="研判任务分类"
width="200"
></el-table-column>
<el-table-column
property="dqgzJyqk"
label="当前工作简要情况"
width="200"
></el-table-column>
<el-table-column
property="gzyqJyqk"
label="工作要求简要情况"
width="200"
></el-table-column>
<el-table-column
property="gzmbJyqk"
label="工作目标简要情况"
width="200"
></el-table-column>
<el-table-column
property="gzsx"
label="工作期限"
width="200"
></el-table-column>
<el-table-column
property="jzrq"
label="截止日期"
width="200"
></el-table-column>
<el-table-column
property="bjsj"
label="办结时间"
width="200"
></el-table-column>
<el-table-column
property="bjJyqk"
label="办结简要情况"
width="200"
></el-table-column>
</el-table>
<!--分页-->
<el-pagination
background
@size-change="handleSizeChange1"
@current-change="handleCurrentChange1"
:current-page.sync="currentPage11"
:page-sizes="[5, 10, 20, 50]"
:page-size="page_size1"
layout="sizes,prev, pager, next"
:total="tableDataLength1"
>
</el-pagination>
</div>
</el-dialog>
<el-dialog title="正在承担工作数" :visible.sync="dialogTableVisible">
<div>
<el-table
ref="multipleTable"
:data="gridData"
v-loading="tableLoading"
element-loading-text="拼命加载中"
center
style="width: 100%"
>
<el-table-column
property="xxzjbh"
label="信息主键编号"
width="300"
></el-table-column>
<el-table-column
property="yprwfldmStr"
label="研判任务分类"
width="200"
></el-table-column>
<el-table-column
property="dqgzJyqk"
label="当前工作简要情况"
width="200"
></el-table-column>
<el-table-column
property="gzyqJyqk"
label="工作要求简要情况"
width="200"
></el-table-column>
<el-table-column
property="gzmbJyqk"
label="工作目标简要情况"
width="200"
></el-table-column>
<el-table-column
property="gzsx"
label="工作期限"
width="200"
></el-table-column>
<el-table-column
property="jzrq"
label="截止日期"
width="200"
></el-table-column>
</el-table>
<!--分页-->
<el-pagination
background
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page.sync="currentPage1"
:page-sizes="[5, 10, 20, 50]"
:page-size="page_size"
layout="sizes,prev, pager, next"
:total="tableDataLength"
>
</el-pagination>
</div>
</el-dialog>
</div>
</template>
<script>
import rightContent from "@c/ptCxForm_components.vue";
import SelectTreeDialog from "@c/treeCode_components.vue";
import { deleteYhzYh } from "@/api/yhz/yhz.js";
import { deleteYhzYh, getYhCdrw } from "@/api/yhz/yhz.js";
export default {
name: "myyhz",
components: {
......@@ -25,6 +157,19 @@ export default {
},
data() {
return {
fzs: "",
dialogTableVisible: false,
dialogTableVisible1: false,
tableLoading: true, //loading
tableDataLength: 0, //表格总数
currentPage1: 1, //表格页码
page_size: 5, //每页显示多少条
gridData: [],
tableLoading1: true, //loading
tableDataLength1: 0, //表格总数
currentPage11: 1, //表格页码
page_size1: 5, //每页显示多少条
gridData1: [],
examineInfo: {},
header: "用户组用户", //头部标题 (模块第一个页面需要)
pageBs: "yhzyh", //页面名称
......@@ -92,10 +237,20 @@ export default {
label: "用户角色",
prop: "yhJbStr",
},
{
{
label: "用户组组号",
prop: "yhzZh",
},
{
label: "已完成工作数",
prop: "ywcgzs",
toInfor: true,
},
{
label: "正在承担工作数",
prop: "zzcdgzs",
toIn: true,
},
],
cxUrl: "/yhz/getYhzYh", //列表查询接口
Menu: [
......@@ -116,6 +271,68 @@ export default {
},
mounted() {},
methods: {
handleCurrentChange(val) {
this.currentPage1 = val;
this.getYhCdrwza();
},
handleSizeChange(val) {
this.page_size = val;
this.getYhCdrwza();
},
handleCurrentChange1(val) {
this.currentPage11 = val;
this.getYhCdrw();
},
handleSizeChange1(val) {
this.page_size1 = val;
this.getYhCdrw();
},
toInfor(scope) {
debugger;
if (scope.ywcgzs != 0) {
this.dialogTableVisible1 = true;
this.fzs = scope.yhSfzh;
this.gridData1 = [];
this.getYhCdrw();
}
},
getYhCdrw() {
this.tableLoading1 = true;
getYhCdrw({
zjhm: this.fzs,
sfbjPdbz: "1",
page: this.currentPage11,
limit: this.page_size1,
}).then((res) => {
if (res.code == 200) {
this.gridData1 = res.data.rows;
this.tableLoading1 = false;
}
});
},
getYhCdrwza() {
this.tableLoading = true;
getYhCdrw({
zjhm: this.fzs,
sfbjPdbz: "0",
page: this.currentPage1,
limit: this.page_size,
}).then((res) => {
if (res.code == 200) {
this.gridData = res.data.rows;
this.tableLoading = false;
}
});
},
toIn(scope) {
debugger;
if (scope.zzcdgzs != 0) {
this.dialogTableVisible = true;
this.fzs = scope.yhSfzh;
this.gridData = [];
this.getYhCdrwza();
}
},
// 删除 dele
dele(scoped) {
this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment