Authored by TaoHuang

add log

<template>
<div>address</div>
</template>
<script>
export default {
name: 'OrderAddress'
}
</script>
<style lang="scss" scoped>
</style>
... ...
<template>
<div class='btn' @click="onClick">
</div>
</template>
<script>
export default {
name: "OrderButton",
props: {
txt: {
type: String,
}
},
methods: {
onClick() {
this.$emit('on-click');
}
}
};
</script>
<style lang="scss" scoped>
.btn {
width: 100%;
height: 120px;
font-size: 28px;
background: #ccc;
.active {
background: #002b47;
}
}
</style>
... ...
<template>
<LayoutApp :show-back="true">
<div class="title">出售</div>
<ProductInfo></ProductInfo>
<div>
<div>需支付保证金:¥0</div>
<div>所有商品必须为国内现货,且承诺36小时内发货,交易成功后将自动退还保证金</div>
</div>
<div class="fee-detail">
<div></div>
<div></div>
<div></div>
</div>
<AddressInfo></AddressInfo>
</LayoutApp>
</template>
<script>
import ProductInfo from './components/confirm/product';
import AddressInfo from './components/confirm/address';
export default {
name: 'OrderConfirm',
components: {
ProductInfo,
AddressInfo
},
data() {
return {};
}
};
</script>
... ...
... ... @@ -194,7 +194,7 @@ if (isProduction) {
infoFile: {
name: 'info',
level: 'info',
filename: '/Data/logs/ufo-app-web/info/info.log',
filename: '/Data/logs/xianyu-app-web/info/info.log',
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
... ... @@ -206,7 +206,7 @@ if (isProduction) {
errorFile: {
name: 'error',
level: 'error',
filename: '/Data/logs/ufo-app-web/error/error.log',
filename: '/Data/logs/xianyu-app-web/error/error.log',
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
... ... @@ -251,7 +251,7 @@ if (isProduction) {
infoFile: {
name: 'info',
level: 'debug',
filename: '/Data/logs/ufo-app-web/info/info.log',
filename: '/Data/logs/xianyu-app-web/info/info.log',
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
... ... @@ -262,7 +262,7 @@ if (isProduction) {
errorFile: {
name: 'error',
level: 'error',
filename: '/Data/logs/ufo-app-web/error/error.log',
filename: '/Data/logs/xianyu-app-web/error/error.log',
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
... ...
... ... @@ -36,7 +36,7 @@ exports.createApp = async(app) => {
});
}
app.use('/mapp/node/status.html', (req, res) => {
app.use('/xianyu/node/status.html', (req, res) => {
res.status(200).end();
});
... ...