‘通用图片处理’
This commit is contained in:
@@ -10,6 +10,7 @@ import store from '@/store'
|
||||
// 基础配置
|
||||
const config = {
|
||||
apiUrl : 'http://api.ahxh.shangkelian.cn/api/',
|
||||
apiUrls : 'http://api.ahxh.shangkelian.cn',
|
||||
timeout : 60000
|
||||
}
|
||||
|
||||
@@ -154,5 +155,6 @@ const loginHint = () => {
|
||||
|
||||
export {
|
||||
request,
|
||||
uploading
|
||||
uploading,
|
||||
config
|
||||
}
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
<template>
|
||||
<view class="NOList">
|
||||
<view class="no-addr">
|
||||
<image :src="`https://e-chain.cnskl.com/storage/imageresource/no-image/${name}.png`" mode="widthFix"></image>
|
||||
<image :src="`${webUrl}/storage/imageresource/no-image/${name}.png`" mode="widthFix" />
|
||||
{{txt}}
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {config} from '@/apis/index.js'
|
||||
export default {
|
||||
name: "NOList",
|
||||
/**
|
||||
@@ -36,13 +37,15 @@
|
||||
*/
|
||||
props: {
|
||||
name: String,
|
||||
txt: String,
|
||||
webUrl:'https://e-chain.cnskl.com/storage/imageresource/no-image'
|
||||
txt: String
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
webUrl:''
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.webUrl = config.apiUrls
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -50,7 +53,7 @@
|
||||
<style lang="scss" scoped>
|
||||
// 无地址
|
||||
.no-addr {
|
||||
padding-top: $padding*6;
|
||||
padding-top: $padding*4;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
@@ -60,8 +63,8 @@
|
||||
font-size: $title-size*0.9;
|
||||
|
||||
image {
|
||||
margin-bottom: $margin*4;
|
||||
margin-top: $margin*2;
|
||||
margin-bottom: $margin*2;
|
||||
margin-top: $margin*1;
|
||||
width: 400rpx;
|
||||
opacity: .4;
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<view class="lists">
|
||||
<view class="lists-header">
|
||||
资产列表
|
||||
<uni-icons type="plus" size="24" color="#009b69"></uni-icons>
|
||||
<uni-icons type="plus" size="24" color="#aa55ff"></uni-icons>
|
||||
</view>
|
||||
<view class="item" v-for="(item, index) in 2" :key="index" @click="propertyInfo(item)">
|
||||
<view class="cost">
|
||||
|
||||
Reference in New Issue
Block a user