Commit d96a3ff1 authored by Jennie Shi's avatar Jennie Shi

jeshi

parent 7caf201b
Pipeline #4810 canceled with stages
...@@ -8,9 +8,9 @@ module.exports = merge(prodEnv, { ...@@ -8,9 +8,9 @@ module.exports = merge(prodEnv, {
debug: true, debug: true,
isMobilePlatform: false, isMobilePlatform: false,
loginPath: '"http://180.104.121.66:8088/oauth/token?client_id=client2&client_secret=secret&grant_type=password&username=appadmin&password=" ', loginPath: '"http://180.104.121.66:8088/oauth/token?client_id=client2&client_secret=secret&grant_type=password&username=appadmin&password=" ',
basePath: '"http://180.104.121.66:8088/r/api/interface?sysName=XCMG_UAT&apiName="', basePath: '"http://180.104.121.66:8088/r/api/interface?sysName=XCMG_DEV&apiName="',
rootPath: '"http://180.104.121.66:8088/r/api"', rootPath: '"http://180.104.121.66:8088/r/api"',
filePath: '"http://180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_UAT&apiName=file_view&"', filePath: '"http://180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_DEV&apiName=file_view&"',
ocrPath: '"http://180.104.121.66:8088/r/api"', ocrPath: '"http://180.104.121.66:8088/r/api"',
appId: '"com.xcmg.app.dev"', appId: '"com.xcmg.app.dev"',
currentVersion: '"1.8.4"', currentVersion: '"1.8.4"',
......
...@@ -11,5 +11,5 @@ module.exports = { ...@@ -11,5 +11,5 @@ module.exports = {
ocrPath:'"http://180.104.121.66:8088/r/api"', ocrPath:'"http://180.104.121.66:8088/r/api"',
fileUploadSvcPath:'"http://180.104.121.66:8088/r/api/app/fileUploadSvc?sysName=XCMG_UAT&apiName="', fileUploadSvcPath:'"http://180.104.121.66:8088/r/api/app/fileUploadSvc?sysName=XCMG_UAT&apiName="',
appId: '"com.xcmg.app"', appId: '"com.xcmg.app"',
currentVersion: '"1.4.4"' currentVersion: '"1.4.7"'
} }
...@@ -469,12 +469,14 @@ export default { ...@@ -469,12 +469,14 @@ export default {
hlsPopup.hideLoading() hlsPopup.hideLoading()
if (res.result === 'S') { if (res.result === 'S') {
let temp = vm.attachArray[index] let temp = vm.attachArray[index]
// let item = temp
temp.read_status = 'Y' temp.read_status = 'Y'
vm.$router.push({ vm.$router.push({
name: 'previewPdf', name: 'previewPdf',
params: { attachUrl: vm.attachUrl }, params: { attachUrl: vm.attachUrl },
}) })
vm.attachArray.splice(vm.attachArray[index], 1, temp) vm.attachArray.splice(index, 1, temp)
// debugger
} else { } else {
vm.hlsPopup.showLongCenter(res.message) vm.hlsPopup.showLongCenter(res.message)
} }
......
...@@ -23,12 +23,25 @@ export default { ...@@ -23,12 +23,25 @@ export default {
pdfDoc: null, pdfDoc: null,
} }
}, },
// beforeRouteEnter (to, from, next) {
// next(vm => {
// // let attachUrl = vm.attachUrl.substr(vm.attachUrl.indexOf('/xcmg_file'))
// vm.hlsPopup.showLoading('请稍候...')
// // debugger
// // let url = Base64.decode(vm.attachUrl)
// vm.attachUrl = vm.$route.params.attachUrl
// console.log('vm.attachUrl === ' + vm.attachUrl)
// vm._loadFile(vm.attachUrl)
// vm.hlsPopup.hideLoading()
// })
// },
mounted () { mounted () {
let vm = this let vm = this
// let attachUrl = vm.attachUrl.substr(vm.attachUrl.indexOf('/xcmg_file')) // let attachUrl = vm.attachUrl.substr(vm.attachUrl.indexOf('/xcmg_file'))
vm.hlsPopup.showLoading('请稍候...') vm.hlsPopup.showLoading('请稍候...')
// debugger // debugger
// let url = Base64.decode(vm.attachUrl) // let url = Base64.decode(vm.attachUrl)
vm.attachUrl = vm.$route.params.attachUrl
console.log('vm.attachUrl === ' + vm.attachUrl) console.log('vm.attachUrl === ' + vm.attachUrl)
vm._loadFile(vm.attachUrl) vm._loadFile(vm.attachUrl)
vm.hlsPopup.hideLoading() vm.hlsPopup.hideLoading()
......
...@@ -85,7 +85,8 @@ ...@@ -85,7 +85,8 @@
</item> </item>
<item> <item>
<div slot="name" class="font-color">年利率</div> <div slot="name" class="font-color">年利率</div>
<span slot="content">{{ info.int_rate_n }}</span> <!-- <span slot="content">{{ info.int_rate_n }}</span> -->
<input slot="content" v-model="info.int_rate_n" placeholder="请输入年利率">
</item> </item>
<!-- <item> <!-- <item>
<div slot="name" class="font-color">产品数量</div> <div slot="name" class="font-color">产品数量</div>
......
...@@ -301,7 +301,7 @@ export default new Router({ ...@@ -301,7 +301,7 @@ export default new Router({
{path: '/create-base-info', component: CreateBaseInfo, name: 'CreateBaseInfo', meta: {keepAlive: true}}, {path: '/create-base-info', component: CreateBaseInfo, name: 'CreateBaseInfo', meta: {keepAlive: true}},
{path: '/create-rent-info', component: CreateRentInfo, name: 'CreateRentInfo', meta: {keepAlive: true}}, {path: '/create-rent-info', component: CreateRentInfo, name: 'CreateRentInfo', meta: {keepAlive: true}},
{path: '/create-enclosure-info', component: CreateEnclosureInfo, name: 'CreateEnclosureInfo', meta: {keepAlive: true}}, {path: '/create-enclosure-info', component: CreateEnclosureInfo, name: 'CreateEnclosureInfo', meta: {keepAlive: true}},
{path: '/previewPdf', component: previewPdf, name: 'previewPdf', meta: {keepAlive: true}}, {path: '/previewPdf', component: previewPdf, name: 'previewPdf', meta: {keepAlive: false}},
// 我的发票 // 我的发票
{path: '/invoice', component: MyInvoice, name: 'MyInvoice', meta: {keepAlive: false}}, {path: '/invoice', component: MyInvoice, name: 'MyInvoice', meta: {keepAlive: false}},
{ {
......
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,width=device-width,viewport-fit=cover"><meta name=format-detection content="telephone=no"><meta name=format-detection content="email=no"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><script type=text/javascript src=./static/vuePlatform.js></script><script type=text/javascript src=./static/prototype.js></script><script type=text/javascript src=cordova.js></script><script type=text/javascript src="http://api.map.baidu.com/api?v=2.0&ak=Eoo0EtfjYCdAy7r8D19gZ0vMojdZpHqU"></script><title>徐工金服</title><link href=./static/css/app.6ed09a9b8830409a6d0d659a65aa17e3.css rel=stylesheet></head><body><div id=app-box></div><script type=text/javascript src=./static/js/manifest.6a178e8d77c32e3c385d.js></script><script type=text/javascript src=./static/js/vendor.0a4e11017ea45af58444.js></script><script type=text/javascript src=./static/js/app.70c610632c6efa113f4d.js></script></body></html>
\ 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 to comment