Commit b84dd8de by wangna

Gitcom、Getamc修改

parent e693323b
...@@ -18515,6 +18515,8 @@ const CodeTable = { ...@@ -18515,6 +18515,8 @@ const CodeTable = {
], ],
typgar: [ typgar: [
{ label: "农民工工资保函", value: "1" }, { label: "农民工工资保函", value: "1" },
{ label: "", value: "P" },
{ label: "", value: "C" },
], ],
gtxinr: [ gtxinr: [
{ label: "Performance Guaratee2", value: "00000008" }, { label: "Performance Guaratee2", value: "00000008" },
...@@ -93,11 +93,14 @@ ...@@ -93,11 +93,14 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Incoming Purpose" prop="gidgrp.rec.purposin"> <el-form-item label="Incoming Purpose" prop="gidgrp.rec.purposin">
<c-input <c-select
v-model="model.gidgrp.rec.purposin" v-model="model.gidgrp.rec.purposin"
placeholder="请输入Incoming Purpose" style="width: 100%"
placeholder="请选择Incoming Purpose "
:code="codes.purposin"
disabled disabled
></c-input> >
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -107,7 +110,8 @@ ...@@ -107,7 +110,8 @@
v-model="model.gidgrp.rec.purpos" v-model="model.gidgrp.rec.purpos"
style="width: 100%" style="width: 100%"
placeholder="请选择Outgoing Purpose" placeholder="请选择Outgoing Purpose"
disabled :code="codes.purpos"
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -119,6 +123,7 @@ ...@@ -119,6 +123,7 @@
v-model="model.gidgrp.rec.gartyp" v-model="model.gidgrp.rec.gartyp"
style="width: 100%" style="width: 100%"
placeholder="请选择Type of Undertaking" placeholder="请选择Type of Undertaking"
:code="codes.typgar"
disabled disabled
> >
</c-select> </c-select>
...@@ -143,12 +148,13 @@ ...@@ -143,12 +148,13 @@
label-width="5px" label-width="5px"
prop="gidgrp.rec.exptyp" prop="gidgrp.rec.exptyp"
> >
<c-input-currency <c-select
v-model="model.gidgrp.rec.exptyp" v-model="model.gidgrp.rec.exptyp"
style="text-align: left; width: 100%" style="width: 100%"
placeholder="" placeholder="请选择Expiry Type"
disabled :code="codes.exptyp"
></c-input-currency> >
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -174,6 +180,7 @@ ...@@ -174,6 +180,7 @@
v-model="model.gidgrp.rec.liatypc" v-model="model.gidgrp.rec.liatypc"
style="width: 100%" style="width: 100%"
placeholder="请选择Liability Type " placeholder="请选择Liability Type "
:code="codes.liatypc"
disabled disabled
> >
</c-select> </c-select>
...@@ -186,6 +193,7 @@ ...@@ -186,6 +193,7 @@
v-model="model.gidgrp.rec.hndtyp" v-model="model.gidgrp.rec.hndtyp"
style="width: 100%" style="width: 100%"
placeholder="请选择Handling Type" placeholder="请选择Handling Type"
:code="codes.hndtyp"
disabled disabled
> >
</c-select> </c-select>
...@@ -198,6 +206,7 @@ ...@@ -198,6 +206,7 @@
v-model="model.gidgrp.rec.cnfsta" v-model="model.gidgrp.rec.cnfsta"
style="width: 100%" style="width: 100%"
placeholder="请选择Confirmation Status " placeholder="请选择Confirmation Status "
:code="codes.cnfsta"
disabled disabled
> >
</c-select> </c-select>
...@@ -664,9 +673,9 @@ export default { ...@@ -664,9 +673,9 @@ export default {
data() { data() {
return {}; return {};
}, },
methods: { methods: {
...Event, ...Event,
onSeainf(data) { onSeainf(data) {
this.$emit("onSeainf", data); this.$emit("onSeainf", data);
}, },
}, },
......
...@@ -78,9 +78,6 @@ export default { ...@@ -78,9 +78,6 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {
codes: {
...CodeTable,
},
}; };
}, },
methods: { ...Event }, methods: { ...Event },
......
...@@ -220,6 +220,9 @@ export default { ...@@ -220,6 +220,9 @@ export default {
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data); this.updateModel(rtnmsg.data);
//TODO 处理数据逻辑 //TODO 处理数据逻辑
if (this.isInDisplay){
this.restoreDisplay();
}
} else { } else {
this.$notify.error({ title: "错误", message: "服务请求失败!" }); this.$notify.error({ title: "错误", message: "服务请求失败!" });
} }
......
...@@ -16,53 +16,59 @@ ...@@ -16,53 +16,59 @@
<el-button size="small">智能提示</el-button> <el-button size="small">智能提示</el-button>
</c-function-btn> </c-function-btn>
<el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small" :validate-on-rule-change="false"> <el-form
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick"> :model="model"
:rules="rules"
<!--PD000019 --> ref="modelForm"
<el-tab-pane label="Charges" name="gitsetp1"> label-width="150px"
<m-gitsetp1 :model="model" :codes="codes"/> label-position="right"
</el-tab-pane> size="small"
:validate-on-rule-change="false"
<!--PD000000 --> >
<el-tab-pane label="Settlement" name="setpan"> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
<m-setpan :model="model" :codes="codes"/> <!--PD000019 -->
</el-tab-pane> <el-tab-pane label="Charges" name="gitsetp1">
<m-gitsetp1 :model="model" :codes="codes" />
<!--PD000000 --> </el-tab-pane>
<el-tab-pane label="Completion" name="coninfp">
<m-coninfp :model="model" :codes="codes"/> <!--PD000000 -->
</el-tab-pane> <el-tab-pane label="Settlement" name="setpan">
<m-setpan :model="model" :codes="codes" />
<!--PD000529 --> </el-tab-pane>
<el-tab-pane label="Messages" name="docpan">
<m-docpan :model="model" :codes="codes"/> <!--PD000000 -->
</el-tab-pane> <el-tab-pane label="Completion" name="coninfp">
<m-coninfp :model="model" :codes="codes" />
<!--PD000546 --> </el-tab-pane>
<el-tab-pane label="Attachments" name="doctre">
<m-doctre :model="model" :codes="codes"/> <!--PD000529 -->
</el-tab-pane> <el-tab-pane label="Messages" name="docpan">
<m-docpan :model="model" :codes="codes" />
<!--PD000001 --> </el-tab-pane>
<el-tab-pane label="统一授信" name="limitbody">
<m-limitbody :model="model" :codes="codes"/> <!--PD000546 -->
</el-tab-pane> <el-tab-pane label="Attachments" name="doctre">
</c-tabs> <m-doctre :model="model" :codes="codes" />
</el-tab-pane>
<!--PD000001 -->
<el-tab-pane label="统一授信" name="limitbody">
<m-limitbody :model="model" :codes="codes" />
</el-tab-pane>
</c-tabs>
</el-form> </el-form>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Gitcom from "~/model/Gitcom" import Gitcom from "~/model/Gitcom";
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess";
import commonFuncs from "~/mixin/commonFuncs"; import commonFuncs from "~/mixin/commonFuncs";
import Check from "~/model/Gitcom/Check" import Check from "~/model/Gitcom/Check";
import Default from "~/model/Gitcom/Default" import Default from "~/model/Gitcom/Default";
import Pattern from "~/model/Gitcom/Pattern" import Pattern from "~/model/Gitcom/Pattern";
import Gitsetp1 from "./Gitsetp1" import Gitsetp1 from "./Gitsetp1";
import Setpan from "~/views/Public/Setpan"; import Setpan from "~/views/Public/Setpan";
import Coninfp from "~/views/Public/Coninfp"; import Coninfp from "~/views/Public/Coninfp";
...@@ -70,61 +76,58 @@ import Docpan from "~/views/Public/Docpan"; ...@@ -70,61 +76,58 @@ import Docpan from "~/views/Public/Docpan";
import Doctre from "~/views/Public/Doctre"; import Doctre from "~/views/Public/Doctre";
import Limitbody from "~/views/Public/Limitbody"; import Limitbody from "~/views/Public/Limitbody";
export default { export default {
name: "Gitcom", name: "Gitcom",
components:{ components: {
"m-gitsetp1" : Gitsetp1, "m-gitsetp1": Gitsetp1,
"m-setpan" : Setpan, "m-setpan": Setpan,
"m-coninfp" : Coninfp, "m-coninfp": Coninfp,
"m-docpan" : Docpan, "m-docpan": Docpan,
"m-doctre" : Doctre, "m-doctre": Doctre,
"m-limitbody" : Limitbody, "m-limitbody": Limitbody,
}, },
provide() { provide() {
return { return {
root: this root: this,
} };
}, },
mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理
data(){ data() {
return { return {
tabVal: "gitsetp1", tabVal: "gitsetp1",
trnName: "gitcom", trnName: "gitcom",
model: new Gitcom().data, model: new Gitcom().data,
checkRules: Check, checkRules: Check,
defaultRules: Default, defaultRules: Default,
pattern: Pattern, pattern: Pattern,
rules: null, rules: null,
codes: { codes: {
...CodeTable ...CodeTable,
}, },
} };
},
methods: {
myTabClick(tab) {
this.tabClick(tab);
/**
* do it yourself
**/
}, },
methods:{ },
myTabClick(tab){ created: async function () {
this.tabClick(tab) console.log("进入gitcom交易");
/** let rtnmsg = await this.init({});
* do it yourself if (rtnmsg.respCode == SUCCESS) {
**/ this.updateModel(rtnmsg.data);
} //TODO 处理数据逻辑
}, if (this.isInDisplay) {
created:async function(){ this.restoreDisplay();
console.log("进入gitcom交易"); }
let rtnmsg = await this.init({}) } else {
if(rtnmsg.respCode == SUCCESS) this.$notify.error({ title: "错误", message: "服务请求失败!" });
{
this.updateModel(rtnmsg.data)
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
} }
} },
};
</script> </script>
<style> <style>
</style> </style>
<template>
<div class="busnavbar">
<div class="busnavbar-items">
<c-button style="margin-left:7px;" size="medium" type="primary" class="medium_bcs" v-for="(item,index) in codeList" v-bind:key="index" @click.native="onNarBtnClick(item.code,index)" :title="item.title" :disabled="item.isDis==='N'">{{item.label}}</c-button>
</div>
</div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Gitsel from "~/model/Gitsel"
import commonProcess from "~/mixin/commonProcess"
export default {
props:["ownref"],
components:{
},
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){
return {
trnName:'gitsel',
model:new Gitsel().data,
navcode:[
// {code:"",label:"",isDis:"",title:""},
],
}
},
methods:{
//各入口按钮请求
async onNarBtnClick(code,i){
this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode == SUCCESS){
this.navcode = []
this.$emit("onChoose",code.toLowerCase());
}else{
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
},
},
computed:{
codeList(){
//将model中的数据映射成数组
return this.navcode.map(item=>{
let entireItem = {...item}
this.navcode = [];
//TODO 根据数据判断当前的code,是否可以继续
// entireItem.enable = item.isDis
return entireItem
})
}
},
watch:{
"ownref":async function(n, o){
if(!this.ownref){
console.log("11111")
// onTigger()
return;
}
}
},
mounted(){
this.$nextTick(function(){
this.$on('childmethods',async function(){
this.navcode = []
//请求按钮数据
this.model.gidgrp.rec.ownref = this.ownref
console.log("ownref:" + this.ownref );
let rtnmsg = await this.executeRule("gidgrp.rec.ownref");//gidgrp_rec_ownref
if(rtnmsg.respCode == SUCCESS){
//重置数组
this.navcode = []
this.updateModel(rtnmsg.data)
//this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
//给inr赋值,后面弹窗里面的按钮请求会用到
//this.model.gidgrp.rec.inr = rtnmsg.data.gidgrp_rec_inr
const length = this.model.cfgfil.btnstm.rows.length
let btnStr = this.model.cfgfil.btnstm.rows
let j = 0;
let m = 0;
// const buttonIndex = ['保证金收取','保证金注销','保证金调整','开立信用证','信用证修改','减额修改接受','修改通知行','到单']
const buttonIndex = ['信用证修改','减额修改接受','到单','修改通知行']
for(let i=0; i < length; i++){
//获取数组中每行的数据
if(!( btnStr[i].indexOf("保证金") >= 0) && !(btnStr[i].indexOf("开立信用证") >= 0)){
let arr = btnStr[i].split("\t");
let newList = {
code:arr[0],
label:arr[1],
isDis:arr[2],
title:arr[3]
}
m++;
j = buttonIndex.indexOf(arr[1].replace(/(^\s*)|(\s*$)/g, ""));
if(j<0){
j = m;
}
//添加到navcode数组中
this.navcode.splice(j,0,newList)
}
}
}else{
this.navcode = []
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
})
})
}
}
</script>
<style>
</style>
...@@ -348,9 +348,8 @@ ...@@ -348,9 +348,8 @@
v-model="model.seagtyp" v-model="model.seagtyp"
style="width: 100%" style="width: 100%"
placeholder="请选择Undertaking Type" placeholder="请选择Undertaking Type"
:code="codes.seagtyp" :code="codes.typgar"
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -439,88 +438,116 @@ ...@@ -439,88 +438,116 @@
</c-list-search> </c-list-search>
<el-row> <el-row>
<c-col :span="24" style="margin-top: 10px"> <c-col :span="24" style="margin-top: 10px">
<c-button <c-button
class="medium_bcs" class="medium_bcs"
size="medium" size="medium"
type="primary" type="primary"
@click="toGitopn" @click="toGitopn"
>进口保函开立</c-button >进口保函开立</c-button
> >
</c-col> <c-button
style="margin-left: 20"
class="medium_bcs"
size="medium"
type="primary"
@click="toGetopn"
>出口保函通知</c-button
>
</c-col>
<c-col :span="24" style="text-align: right; height: 100px"> <c-col :span="24" style="text-align: right; height: 100px">
<c-istream-table :list="stmData.data" :columns="stmData.columns"> <c-istream-table :list="stmData.data" :columns="stmData.columns">
<el-table-column fixed="right" prop="op" label="操作" width="140px"> <el-table-column fixed="right" prop="op" label="操作" width="140px">
<template slot="header"> <template slot="header">
<c-col :span="11" style="text-align: left"> <c-col :span="11" style="text-align: left">
<span>操作</span> <span>操作</span>
</c-col> </c-col>
<c-col :span="12" style="text-align: right"> <c-col :span="12" style="text-align: right">
<c-button icon="el-icon-s-tools"></c-button> <c-button icon="el-icon-s-tools"></c-button>
</c-col> </c-col>
</template> </template>
<template slot-scope="scope"> <template slot-scope="scope">
<el-popover <el-popover
placement="top-start" placement="top-start"
title="历史信息" title="历史信息"
width="800" width="800"
trigger="click" trigger="click"
:ref="'popover_' + scope.row.IDX" :ref="'popover_' + scope.row.IDX"
>
<div
style="
text-align: right;
margin-top: -30px;
margin-right: 5px;
font-size: 16px;
"
> >
<span <div
class="el-icon-close" style="
@click="closeTrn('popover_' + scope.row.IDX)" text-align: right;
/> margin-top: -30px;
</div> margin-right: 5px;
<c-istream-table :list="trnData.data" :columns="trnData.columns"> font-size: 16px;
<el-table-column prop="op" label="操作" width="0"> "
<template slot-scope="scope"> >
<c-button <span
style="margin-left: 0" class="el-icon-close"
size="small" @click="closeTrn('popover_' + scope.row.IDX)"
@click="display(scope.row['INR'])" />
>详情</c-button </div>
> <c-istream-table
</template> :list="trnData.data"
</el-table-column> :columns="trnData.columns"
</c-istream-table> >
<el-table-column prop="op" label="操作" width="0">
<template slot-scope="scope">
<c-button
style="margin-left: 0"
size="small"
@click="display(scope.row['INR'])"
>详情</c-button
>
</template>
</el-table-column>
</c-istream-table>
<c-button
style="margin-left: 0"
size="small"
@click="getTrnInfo(scope.$index, scope.row)"
slot="reference"
>详情</c-button
>
</el-popover>
<c-button <c-button
style="margin-left: 0" style="margin-left: 0"
size="small" size="small"
@click="getTrnInfo(scope.$index, scope.row)" type="primary"
slot="reference" @click="getButtons(scope.row['Reference'])"
>详情</c-button >处理</c-button
> >
</el-popover> </template>
<c-button </el-table-column>
style="margin-left: 0" </c-istream-table>
size="small" </c-col>
type="primary"
@click="getButtons(scope.row['Reference'])"
>处理</c-button
>
</template>
</el-table-column>
</c-istream-table>
</c-col>
</el-row> </el-row>
<el-dialog :visible.sync="initdialog" :title="'交易列表'" append-to-body> <el-dialog :visible.sync="initdialog" :title="'交易列表'" append-to-body>
<div v-if="dialogFlag" class="m-list-btns"> <div v-if="dialogFlag" class="m-list-btns">
<m-busbtn ref="childs" :ownref="ownref" trnCode="gitsel" ownrefPath="gidgrp" :model="gitselModel" tabIndex=1 @onChoose="onChoose">11</m-busbtn> <m-busbtn
ref="childs"
:ownref="ownref"
trnCode="gitsel"
ownrefPath="gidgrp"
:model="gitselModel"
tabIndex="1"
@onChoose="onChoose"
>11</m-busbtn
>
</div> </div>
<div v-else>
<div v-else > <m-busbtn
<m-busbtn ref="childs" :ownref="ownref" trnCode="getsel" ownrefPath="gidgrp" :model="getselModel" tabIndex=1 @onChoose="onChoose">11</m-busbtn> ref="childs"
:ownref="ownref"
trnCode="getsel"
ownrefPath="gidgrp"
:model="getselModel"
tabIndex="1"
@onChoose="onChoose"
>11</m-busbtn
>
</div> </div>
</el-dialog> </el-dialog>
...@@ -699,7 +726,6 @@ ...@@ -699,7 +726,6 @@
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api"; import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"; import CodeTable from "~/config/CodeTable";
...@@ -739,7 +765,15 @@ export default { ...@@ -739,7 +765,15 @@ export default {
columns: [ columns: [
'1 1 "Reference" 150', '1 1 "Reference" 150',
'2 2 "Resp. User" 150', '2 2 "Resp. User" 150',
'8 3 "保函品种" 150', // '8 3 "保函品种" 150',
{
index: 8,
position: 3,
width: 150,
pattern: "code",
label: "保函品种",
code: this.codes.typgar,
},
'11 4 "Party Number" 150', '11 4 "Party Number" 150',
'12 5 "Applicant" 150', '12 5 "Applicant" 150',
'15 6 "Cur" 150', '15 6 "Cur" 150',
...@@ -756,7 +790,15 @@ export default { ...@@ -756,7 +790,15 @@ export default {
'21 17 "Cur" 150', '21 17 "Cur" 150',
'16 18 "Guar. Amount" 150', '16 18 "Guar. Amount" 150',
'20 19 "Open Amount" 150', '20 19 "Open Amount" 150',
'9 20 "Handling Type" 150', // '9 20 "Handling Type" 150',
{
index: 9,
position: 20,
width: 150,
pattern: "code",
label: "Handling Type",
code: this.codes.hndtyp,
},
'6 21"电子渠道类型" 150', '6 21"电子渠道类型" 150',
'7 22"OTHERSNO" 150', '7 22"OTHERSNO" 150',
], ],
...@@ -773,8 +815,8 @@ export default { ...@@ -773,8 +815,8 @@ export default {
console.log("dialogFlag:" + this.dialogFlag); console.log("dialogFlag:" + this.dialogFlag);
console.log("ownref:" + ownref); console.log("ownref:" + ownref);
setTimeout(() => { setTimeout(() => {
this.$refs.childs.$emit("childmethods") this.$refs.childs.$emit("childmethods");
}, 10) }, 10);
}, },
async onChoose(code) { async onChoose(code) {
//跳转交易 //跳转交易
...@@ -800,6 +842,9 @@ export default { ...@@ -800,6 +842,9 @@ export default {
toGitopn() { toGitopn() {
this.$router.history.push("/business/gitopn"); this.$router.history.push("/business/gitopn");
}, },
toGetopn() {
this.$router.history.push("/business/getopn");
},
handleReset: function () { handleReset: function () {
this.model = { this.model = {
instNo: "", instNo: "",
...@@ -808,10 +853,8 @@ export default { ...@@ -808,10 +853,8 @@ export default {
}, },
}, },
created: function () {}, created: function () {},
watch:{ watch: {
"model.gidgrp.rec.ownref":function(){ "model.gidgrp.rec.ownref": function () {},
}
}, },
}; };
</script> </script>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<m-infsea :model="model" :codes="codes"/> <m-infsea :model="model" :codes="codes"/>
</el-tab-pane> --> </el-tab-pane> -->
<c-content> <c-content :height="180">
<m-infsea :model="model" :codes="codes" ref="infsea" /> <m-infsea :model="model" :codes="codes" ref="infsea" />
</c-content> </c-content>
......
<template>
<ReviewWrapper>
<Getamc></Getamc>
</ReviewWrapper>
</template>
<script>
import Getamc from "~/views/Business/Getamc";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewGetamc",
components: { ReviewWrapper, Getamc },
created() {},
mounted() {},
};
</script>
<style></style>
<template>
<ReviewWrapper>
<Gitcom></Gitcom>
</ReviewWrapper>
</template>
<script>
import Gitcom from "~/views/Business/Gitcom";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewGitcom",
components: { ReviewWrapper, Gitcom },
created() {},
mounted() {},
};
</script>
<style></style>
...@@ -24,6 +24,8 @@ import ReviewBftsnd from "./Business/ReviewBftsnd.vue"; ...@@ -24,6 +24,8 @@ import ReviewBftsnd from "./Business/ReviewBftsnd.vue";
import ReviewBftdcr from "./Business/ReviewBftdcr.vue"; import ReviewBftdcr from "./Business/ReviewBftdcr.vue";
import ReviewLitopn from "./Business/ReviewLitopn.vue"; import ReviewLitopn from "./Business/ReviewLitopn.vue";
import ReviewBftset from "./Business/ReviewBftset.vue"; import ReviewBftset from "./Business/ReviewBftset.vue";
import ReviewGitcom from "./Business/ReviewGitcom.vue";
import ReviewGetamc from "./Business/ReviewGetamc.vue";
const ReviewRouter = [ const ReviewRouter = [
...@@ -71,6 +73,8 @@ const ReviewRouter = [ ...@@ -71,6 +73,8 @@ const ReviewRouter = [
{ path: "litopn", component: ReviewLitopn, name: "ReviewLitopn", meta: { title: "复核-Litopn" } }, { path: "litopn", component: ReviewLitopn, name: "ReviewLitopn", meta: { title: "复核-Litopn" } },
{ path: "bftset", component: ReviewBftset, name: "ReviewBftset", meta: { title: "复核-Bftset" } }, { path: "bftset", component: ReviewBftset, name: "ReviewBftset", meta: { title: "复核-Bftset" } },
{ path: "litame", component: ReviewLitame, name: "ReviewLitame", meta: { title: "复核-Litame" } }, { path: "litame", component: ReviewLitame, name: "ReviewLitame", meta: { title: "复核-Litame" } },
{ path: "gitcom", component: ReviewGitcom, name: "ReviewGitcom", meta: { title: "复核-Gitcom" } },
{ path: "getamc", component: ReviewGetamc, name: "ReviewGetamc", meta: { title: "复核-Getamc" } },
]; ];
......
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