Commit 535a2288 by liangjianmin

feat(classify-price): 添加归类价格审批页面及相关样式

- 在页面配置中添加归类价格审批页面路径
- 更新首页,增加归类价格审批模块
- 新增归类价格审批页面及样式文件
parent 222077dd
.classify-price-page {
min-height: 100vh;
background: #f5f7fa;
}
......@@ -32,6 +32,12 @@
}
},
{
"path": "pages/classify-price/index",
"style": {
"navigationBarTitleText": "归类价格审批"
}
},
{
"path": "pages/logistics/index",
"style": {
"navigationBarTitleText": "物流车辆申请"
......@@ -78,4 +84,4 @@
"rpxCalcMaxDeviceWidth": 600,
"rpxCalcBaseDeviceWidth": 500
}
}
\ No newline at end of file
}
<template>
<view class="classify-price-page"></view>
</template>
<script>
export default {
data() {
return {};
}
};
</script>
<style scoped lang="scss">
@import '@/assets/css/classify-price/index.scss';
</style>
......@@ -57,6 +57,12 @@
]
},
{
title: '关务归类',
items: [
{ id: 'classifyPrice', name: '归类价格审批', icon: 'grid-fill', color: '#334155', bg: 'linear-gradient(135deg, #f6f8fb 0%, #e8edf3 100%)', url: '/pages/classify-price/index' }
]
},
{
title: '额度风控',
items: [
{ id: 'tempQuota', name: '临时额度申请', icon: 'clock-fill', color: '#8294a8', bg: 'linear-gradient(135deg, #f3f7fb 0%, #e6eef6 100%)', disabled: true },
......
......@@ -19,28 +19,25 @@ try {
var ENV_CONFIG = {
production: {
API_BASE_USER: 'https://user.ichunt.net',
API_BASE_PUR: 'https://purchase.ichunt.net',
API_BASE_OSS: 'https://image.ichunt.net',
API_BASE_WMS: 'https://wms.ichunt.net',
API_BASE: 'https://scv2.ichunt.net',
API_BASE_SCM: 'http://sc.ichunt.net',
API_BASE_ICHUNT: 'https://api.ichunt.com'
},
development: {
API_BASE_USER: 'http://user.liexindev.net',
API_BASE_PUR: 'http://pur.liexindev.net',
API_BASE_OSS: 'http://image.liexindev.net',
API_BASE_WMS: 'http://wms.liexindev.net',
API_BASE: 'http://adminsc.liexindev.net',
API_BASE_SCM: 'http://sc.liexindev.net',
API_BASE_ICHUNT: 'http://api.liexin.com'
}
};
// 当前环境配置
var currentEnv = ENV_CONFIG[ENV];
var API_BASE_SCM = currentEnv.API_BASE_SCM; //猎芯供应链SCM
const API_BASE_USER = currentEnv.API_BASE_USER; //用户系统
const API_BASE_PUR = currentEnv.API_BASE_PUR; //采购系统
const API_BASE_OSS = currentEnv.API_BASE_OSS; //oss系统
const API_BASE_WMS = currentEnv.API_BASE_WMS; //WMS系统
const API_BASE = currentEnv.API_BASE; //供应链商务系统
const API_BASE_ICHUNT = currentEnv.API_BASE_ICHUNT; //ichunt接口
......@@ -58,10 +55,6 @@ const API = {
*/
login: API_BASE_USER + '/api/login',
/**
* 小程序审核数量统计
*/
getStatisticsInfo: API_BASE_PUR + '/api/approve/getStatisticsInfo',
/**
* 获取用户信息
*/
userBaseInfo: API_BASE + '/api/user/userBaseInfo',
......@@ -88,7 +81,11 @@ const API = {
/**
* 费用审批状态修改
*/
approve: API_BASE + '/api/approve/approve'
approve: API_BASE + '/api/approve/approve',
/**
* 猎芯供应链SCM审批列表
*/
scmBase: API_BASE_SCM + '/approve/orderApproveList'
}
......@@ -96,4 +93,4 @@ const API = {
module.exports = {
API,
ENV
}
\ No newline at end of file
}
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 sign in to comment