Merge remote-tracking branch 'origin/master'

master
schry 2 years ago
commit 69315d9432

@ -62,7 +62,7 @@
</el-button </el-button
> >
<el-button type="primary" icon="el-icon-plus" @click="add(null,'add')" <el-button type="primary" icon="el-icon-plus" @click="add(null,'add')"
>新增 >新增接口分类
</el-button </el-button
> >
</el-button-group> </el-button-group>
@ -77,7 +77,7 @@
</el-table-column> </el-table-column>
<el-table-column label="更新时间" prop="updateTime" show-overflow-tooltip> <el-table-column label="更新时间" prop="updateTime" show-overflow-tooltip>
</el-table-column> </el-table-column>
<el-table-column label="备注" prop="reemark" show-overflow-tooltip> <el-table-column label="备注" prop="remark" show-overflow-tooltip>
</el-table-column> </el-table-column>
<el-table-column label="操作" width="120" fixed="right"> <el-table-column label="操作" width="120" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
@ -233,6 +233,70 @@
:before-close="hideForm" :before-close="hideForm"
width="60%" width="60%"
top="5vh" top="5vh"
>
<el-form
:model="subData"
ref="dataForm"
:rules="formRules"
label-width="130px"
>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<el-form-item label="接口名称" prop="name" class="query-form-item">
<el-input
v-model="subData.name"
style="width: 80%"
auto-complete="off"
placeholder="请输入接口分类名称"
></el-input>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="创建时间" prop="createTime">
<el-date-picker clearable size="small"
v-model="subData.createTime"
type="datetime"
style="width: 80%"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="选择创建时间">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<el-form-item
label="备注"
prop="remark"
class="query-form-item"
>
<el-input
v-model="subData.remark"
style="width: 80%"
placeholder="请输入接口备注"
auto-complete="off"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button>
<el-button type="primary" @click.native="forInvSubmit()"
>提交
</el-button>
</div>
</el-dialog>
<el-dialog
:title="formMap[formName]"
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="subFormVisible1"
:before-close="hideForm1"
width="60%"
top="5vh"
> >
<el-form <el-form
:model="subData" :model="subData"
@ -326,14 +390,13 @@
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button> <el-button @click.native="hideForm1">取消</el-button>
<el-button type="primary" @click.native="forInvSubmit()" <el-button type="primary" @click.native="forInvSubmit1()"
>提交 >提交
</el-button> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
@ -356,6 +419,7 @@ export default {
subData: {}, subData: {},
formName: null, formName: null,
subFormVisible: false, subFormVisible: false,
subFormVisible1: false,
showSearch: true, showSearch: true,
currentRow: null, currentRow: null,
filterQuery: { filterQuery: {
@ -599,13 +663,13 @@ export default {
this.formName = formName; this.formName = formName;
this.check = row; this.check = row;
this.subData = row; this.subData = row;
this.subFormVisible = true; this.subFormVisible1 = true;
}, },
reviewOrder(row, formName) { reviewOrder(row, formName) {
this.formName = formName; this.formName = formName;
this.check = row; this.check = row;
this.subData = row; this.subData = row;
this.subFormVisible = true; this.subFormVisible1 = true;
}, },
@ -613,17 +677,66 @@ export default {
this.formName = formName; this.formName = formName;
this.check = row; this.check = row;
this.subData = {}; this.subData = {};
this.subFormVisible = true; this.subFormVisible1 = true;
}, },
add(data, formName) { add(data, formName) {
this.subFormVisible = true;
this.subData = {};
this.formName = formName; this.formName = formName;
this.subData = {};
this.check = data; this.check = data;
this.subFormVisible = true;
}, },
hideForm() { hideForm() {
this.subFormVisible = false; this.subFormVisible = false;
},
hideForm1() {
this.subFormVisible1 = false;
},
forInvSubmit1() {
if (this.formName === "add" && this.check == null) {
//
this.subData.parentId = 0;
insertLicense(this.subData)
.then((res) => {
if (res.code == 20000) {
this.$message.success("添加成功!")
this.subFormVisible1 = false;
this.getList();
}
})
} else if (this.formName === "add" && this.check != null) {
//
this.subData.parentId = this.check.id;
insertLicense(this.subData)
.then((res) => {
if (res.code == 20000) {
this.$message.success("添加成功!")
this.subFormVisible1 = false;
this.getList();
}
})
} else if (this.formName === "edit" && this.check.parentId == 0) {
//
updateLicense(this.subData).then((res) => {
if (res.code == 20000) {
this.$message.success("修改成功!")
this.subFormVisible1 = false;
this.getList();
}
})
} else {
updateLicense(this.subData).then((res) => {
if (res.code == 20000) {
this.$message.success("修改成功!")
this.subFormVisible1 = false;
this.getlower();
}
})
}
}, },
forInvSubmit() { forInvSubmit() {
if (this.formName === "add" && this.check == null) { if (this.formName === "add" && this.check == null) {

@ -261,7 +261,7 @@
</el-dialog> </el-dialog>
<el-tabs type="border-card" style="margin: 15px"> <el-tabs type="border-card" style="margin: 15px">
<el-tab-pane> <el-tab-pane>
<span slot="label">单据 {{ currentRow == null ? '' : currentRow.billNo }}-业务扫码校验结果</span> <span slot="label">单据 {{ currentRow == null ? '' : currentRow.billNo }}-业务详情</span>
<el-table v-loading="manuCodeRelLoading" :data="listCodeRel" <el-table v-loading="manuCodeRelLoading" :data="listCodeRel"
style="width: 100%" style="width: 100%"
highlight-current-row border> highlight-current-row border>

@ -248,6 +248,7 @@
:visible.sync="centerDialogVisible" :visible.sync="centerDialogVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
:before-close="Refresh"
width="60%" width="60%"
center center
> >
@ -593,6 +594,11 @@ export default {
this.filterQuery.page = 1; this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
Refresh(){
this.centerDialogVisible=false;
this.getList();
},
getList() { getList() {
this.loading = true; this.loading = true;
selectReslist(this.filterQuery) selectReslist(this.filterQuery)
@ -795,7 +801,7 @@ export default {
type: "success", type: "success",
message: "审核成功!", message: "审核成功!",
}); });
this.centerDialogVisible = false; this.Refresh();
}else{ }else{
this.$message.error(res.message); this.$message.error(res.message);
} }

Loading…
Cancel
Save