Commit 3c15fa64 authored by Mac's avatar Mac

币种

parent 61239cc9
...@@ -14,10 +14,13 @@ ...@@ -14,10 +14,13 @@
"axios": "^0.18.1", "axios": "^0.18.1",
"core-js": "^3.6.5", "core-js": "^3.6.5",
"element-ui": "^2.14.1", "element-ui": "^2.14.1",
"js-md5": "^0.7.3",
"lockr": "^0.8.5", "lockr": "^0.8.5",
"quasar": "^1.0.0", "quasar": "^1.0.0",
"vue-easytable": "^1.7.2",
"vue-i18n": "^8.0.0", "vue-i18n": "^8.0.0",
"xlsx": "^0.16.8" "xlsx": "^0.16.8",
"xlsx-style": "^0.8.13"
}, },
"devDependencies": { "devDependencies": {
"@quasar/app": "^2.0.0", "@quasar/app": "^2.0.0",
......
...@@ -5,8 +5,11 @@ import Erpindex from '../utils/erpindex' ...@@ -5,8 +5,11 @@ import Erpindex from '../utils/erpindex'
import axios from 'axios' import axios from 'axios'
import 'vue-easytable/libs/themes-base/index.css' import 'vue-easytable/libs/themes-base/index.css'
import {VTable,VPagination} from 'vue-easytable' import {VTable,VPagination} from 'vue-easytable'
import commonUtils from '../pages/financial/utils/commonUtils'
Vue.http = Vue.prototype.$http = axios Vue.http = Vue.prototype.$http = axios
Vue.commonUtils = Vue.prototype.$commonUtils=commonUtils
Vue.use(ElementUI) Vue.use(ElementUI)
Vue.use(Erpindex) Vue.use(Erpindex)
......
...@@ -1860,16 +1860,16 @@ ...@@ -1860,16 +1860,16 @@
if(this.msg.LineId==-5){ if(this.msg.LineId==-5){
this.msg.DataType="6"; this.msg.DataType="6";
} }
let userInfo = this.getLocalStorage(); // let userInfo = this.getLocalStorage();
if((","+userInfo.ActionMenuCode+",").indexOf(',F_Query_TicketTeamRevenueReport,')!=-1){ // if((","+userInfo.ActionMenuCode+",").indexOf(',F_Query_TicketTeamRevenueReport,')!=-1){
this.isShowType = false; // this.isShowType = false;
this.msg.DataType='2'; // this.msg.DataType='2';
}else{ // }else{
if((","+userInfo.ActionMenuCode+",").indexOf(',F_Query_LocalTeamRevenueReport,')!==-1){ // if((","+userInfo.ActionMenuCode+",").indexOf(',F_Query_LocalTeamRevenueReport,')!==-1){
this.isShowGrounding = false; // this.isShowGrounding = false;
this.msg.DataType='6'; // this.msg.DataType='6';
} // }
} // }
}, },
components: {}, components: {},
...@@ -1881,13 +1881,13 @@ ...@@ -1881,13 +1881,13 @@
cH = allH - 350 - 52; cH = allH - 350 - 52;
this.msg.pageSize = parseInt(cH / 30) - 1; this.msg.pageSize = parseInt(cH / 30) - 1;
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
this.getCompanyMsg.RB_Group_Id = userInfo.RB_Group_id; //集团ID this.getCompanyMsg.RB_Group_Id = userInfo.Group_Id; //集团ID
this.userId = userInfo.EmployeeId; this.userId = userInfo.Id;
this.getCompanyList(); this.getCompanyList();
this.getLineList(); this.getLineList();
this.getStartList1(); this.getStartList1();
this.getPageList(); this.getPageList();
this.GetSupperOrderEditAuth(); // this.GetSupperOrderEditAuth();
}, },
methods: { methods: {
GetSupperOrderEditAuth() { GetSupperOrderEditAuth() {
......
This diff is collapsed.
This diff is collapsed.
...@@ -92,6 +92,11 @@ const routes = [{ ...@@ -92,6 +92,11 @@ const routes = [{
component: () => component: () =>
import("pages/financial/institutionsManagement.vue") import("pages/financial/institutionsManagement.vue")
}, },
{
path: "/financial/currencyManagement", //币种管理
component: () =>
import("pages/financial/currencyManagement.vue")
},
{ {
path: "/test", //API测试 path: "/test", //API测试
component: () => component: () =>
......
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