Browse Source

no message

feature/v2.0
xpz2018 4 years ago
parent
commit
42a08172bc
8 changed files with 6774 additions and 2 deletions
  1. 2
      app.js
  2. 6
      app.json
  3. 2
      pages/home/index/index.wxml
  4. 6740
      xtends/libs/u-charts.js
  5. 18
      xtends/statics/index/index.js
  6. 3
      xtends/statics/index/index.json
  7. 4
      xtends/statics/index/index.wxml
  8. 1
      xtends/statics/index/index.wxss

2
app.js

@ -1,6 +1,6 @@
//app.js //app.js
App({ App({
evn: 2, // 0: 开发版本;1:测试版本;2:生产版本
evn: 0, // 0: 开发版本;1:测试版本;2:生产版本
tmplIds: ['AFoM5TOfsgERsfcetNSB0UlmEixnLF1ySXr54Bqno2M', 'lOQ8Gvyy_dTk68bYGpRVnVA0M7DsYYrV81Gd39GUPBA'], tmplIds: ['AFoM5TOfsgERsfcetNSB0UlmEixnLF1ySXr54Bqno2M', 'lOQ8Gvyy_dTk68bYGpRVnVA0M7DsYYrV81Gd39GUPBA'],
version: '2.0.0', version: '2.0.0',
xAppId: '503258978847953926', xAppId: '503258978847953926',

6
app.json

@ -65,6 +65,12 @@
"order-list/index", "order-list/index",
"factory-list/index" "factory-list/index"
] ]
},
{
"root": "xtends/",
"pages": [
"statics/index/index"
]
} }
], ],
"window": { "window": {

2
pages/home/index/index.wxml

@ -56,7 +56,7 @@
<view class="flex flex-justify" style="padding: 24rpx 28rpx 8rpx 28rpx"> <view class="flex flex-justify" style="padding: 24rpx 28rpx 8rpx 28rpx">
<view class="text-black text-sg text-bold">企业信息</view> <view class="text-black text-sg text-bold">企业信息</view>
</view> </view>
<van-cell is-link clickable url="/pages/settlement/bank-list/index">
<van-cell is-link clickable url="/xtends/statics/index/index">
<view class="flex" slot="title" style="align-items: center"> <view class="flex" slot="title" style="align-items: center">
<van-icon name="/assets/home/icon-bank.png" size="24" /> <van-icon name="/assets/home/icon-bank.png" size="24" />
<text class="text-sg" style="margin-left:12rpx">银行卡</text> <text class="text-sg" style="margin-left:12rpx">银行卡</text>

6740
xtends/libs/u-charts.js
File diff suppressed because it is too large
View File

18
xtends/statics/index/index.js

@ -0,0 +1,18 @@
// xtends//statics/index/index.js
import Scene from '../../../pages/index/scene'
Scene({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
})

3
xtends/statics/index/index.json

@ -0,0 +1,3 @@
{
"usingComponents": {}
}

4
xtends/statics/index/index.wxml

@ -0,0 +1,4 @@
<!--xtends//statics/index/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">收货统计</view>
</cu-custom>

1
xtends/statics/index/index.wxss

@ -0,0 +1 @@
/* xtends//statics/index/index.wxss */
Loading…
Cancel
Save