看板
This commit is contained in:
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
||||
const common_vendor = require("./common/vendor.js");
|
||||
const uni_modules_uviewPro_index = require("./uni_modules/uview-pro/index.js");
|
||||
if (!Math) {
|
||||
"./pages/index/index.js";
|
||||
"./pages/penetrate/project.js";
|
||||
}
|
||||
const _sfc_main = {
|
||||
onLaunch: function() {
|
||||
common_vendor.index.__f__("log", "at App.vue:4", "App Launch");
|
||||
},
|
||||
onShow: function() {
|
||||
common_vendor.index.__f__("log", "at App.vue:7", "App Show");
|
||||
},
|
||||
onHide: function() {
|
||||
common_vendor.index.__f__("log", "at App.vue:10", "App Hide");
|
||||
}
|
||||
};
|
||||
function createApp() {
|
||||
const app = common_vendor.createSSRApp(_sfc_main);
|
||||
app.use(uni_modules_uviewPro_index.uViewPro);
|
||||
return {
|
||||
app
|
||||
};
|
||||
}
|
||||
createApp().app.mount("#app");
|
||||
exports.createApp = createApp;
|
||||
//# sourceMappingURL=../.sourcemap/mp-weixin/app.js.map
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index",
|
||||
"pages/penetrate/project"
|
||||
],
|
||||
"window": {
|
||||
"navigationBarTextStyle": "white",
|
||||
"navigationBarTitleText": "中国化学",
|
||||
"navigationBarBackgroundColor": "#17447a",
|
||||
"backgroundColor": "#FFFFFF"
|
||||
},
|
||||
"usingComponents": {}
|
||||
}
|
||||
+3448
File diff suppressed because it is too large
Load Diff
+11155
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,36 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
__name: "ListCol",
|
||||
props: {
|
||||
labelWidth: {
|
||||
type: Number,
|
||||
default: 200
|
||||
},
|
||||
data: {
|
||||
type: Object,
|
||||
require: true
|
||||
},
|
||||
column: {
|
||||
type: Array,
|
||||
require: true
|
||||
}
|
||||
},
|
||||
setup(__props) {
|
||||
const props = __props;
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.f(props.column, (col, idx, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(col.name),
|
||||
b: common_vendor.t(props.data[col.value])
|
||||
};
|
||||
}),
|
||||
b: `${props.labelWidth}rpx`,
|
||||
c: `calc(100% - ${props.labelWidth}rpx)`
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/components/ListCol.js.map
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<view class="col u-margin-30 u-padding-20 box-shadow"><view wx:for="{{a}}" wx:for-item="col" class="row u-flex"><view class="row-left" style="{{'width:' + b}}">{{col.a}}</view><view class="row-right" style="{{'width:' + c}}">{{col.b}}</view></view></view>
|
||||
@@ -0,0 +1,87 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.col {
|
||||
background-color: #ffffff;
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
.col .row {
|
||||
padding: 12rpx 0;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.col .row-left {
|
||||
color: #333333;
|
||||
}
|
||||
.col .row-right {
|
||||
padding-left: 20rpx;
|
||||
overflow-wrap: break-word;
|
||||
color: #999999;
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_u_loading2 = common_vendor.resolveComponent("u-loading");
|
||||
_easycom_u_loading2();
|
||||
}
|
||||
const _easycom_u_loading = () => "../uni_modules/uview-pro/components/u-loading/u-loading.js";
|
||||
if (!Math) {
|
||||
_easycom_u_loading();
|
||||
}
|
||||
const _sfc_main = {
|
||||
__name: "chartCard",
|
||||
props: {
|
||||
height: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
bgColor: {
|
||||
type: String,
|
||||
default: "#ffffff"
|
||||
},
|
||||
loading: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
margin: {
|
||||
type: String,
|
||||
default: "0"
|
||||
},
|
||||
padding: {
|
||||
type: String,
|
||||
default: "20rpx"
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: ""
|
||||
},
|
||||
// titFontSize: {
|
||||
// },
|
||||
titFontColor: {
|
||||
type: String,
|
||||
default: "#333333"
|
||||
},
|
||||
showTitLine: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
setup(__props) {
|
||||
const props = __props;
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
a: props.title
|
||||
}, props.title ? {
|
||||
b: common_vendor.t(props.title),
|
||||
c: props.titFontColor,
|
||||
d: props.showTitLine ? "1rpx solid var(--u-border-color)" : "none"
|
||||
} : {}, {
|
||||
e: common_vendor.p({
|
||||
size: "40",
|
||||
mode: "flower"
|
||||
}),
|
||||
f: props.loading,
|
||||
g: props.height > 0 ? `${props.height}rpx` : "auto",
|
||||
h: props.bgColor,
|
||||
i: props.margin,
|
||||
j: props.padding
|
||||
});
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/components/chartCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"u-loading": "../uni_modules/uview-pro/components/u-loading/u-loading"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<view class="coust-chart box-shadow" style="{{'height:' + g + ';' + ('background:' + h) + ';' + ('margin:' + i) + ';' + ('padding:' + j)}}"><view wx:if="{{a}}" class="coust-chart-tit" style="{{'color:' + c + ';' + ('border-bottom:' + d)}}">{{b}}</view><view hidden="{{!f}}" class="coust-loading"><u-loading wx:if="{{e}}" u-i="57e7d4c1-0" bind:__l="__l" u-p="{{e}}"></u-loading></view><slot></slot></view>
|
||||
@@ -0,0 +1,86 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.coust-chart {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.coust-chart-tit {
|
||||
font-size: 28rpx;
|
||||
font-weight: 700;
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
.coust-chart .coust-loading {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
top: 50%;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_u_image2 = common_vendor.resolveComponent("u-image");
|
||||
const _easycom_u_cell_item2 = common_vendor.resolveComponent("u-cell-item");
|
||||
const _easycom_u_cell_group2 = common_vendor.resolveComponent("u-cell-group");
|
||||
const _easycom_u_button2 = common_vendor.resolveComponent("u-button");
|
||||
(_easycom_u_image2 + _easycom_u_cell_item2 + _easycom_u_cell_group2 + _easycom_u_button2)();
|
||||
}
|
||||
const _easycom_u_image = () => "../../../uni_modules/uview-pro/components/u-image/u-image.js";
|
||||
const _easycom_u_cell_item = () => "../../../uni_modules/uview-pro/components/u-cell-item/u-cell-item.js";
|
||||
const _easycom_u_cell_group = () => "../../../uni_modules/uview-pro/components/u-cell-group/u-cell-group.js";
|
||||
const _easycom_u_button = () => "../../../uni_modules/uview-pro/components/u-button/u-button.js";
|
||||
if (!Math) {
|
||||
(_easycom_u_image + _easycom_u_cell_item + _easycom_u_cell_group + _easycom_u_button)();
|
||||
}
|
||||
const _sfc_main = {
|
||||
__name: "index",
|
||||
setup(__props) {
|
||||
const src = common_vendor.ref("https://ik.imagekit.io/anyup/uview-pro/logo/default.png");
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
width: "300rpx",
|
||||
height: "300rpx",
|
||||
shape: "circle",
|
||||
["bg-color"]: "var(--u-bg-color)",
|
||||
src: src.value
|
||||
}),
|
||||
b: common_vendor.p({
|
||||
title: "姓名",
|
||||
value: "张三",
|
||||
arrow: false
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
title: "联系方式",
|
||||
value: "13395515136",
|
||||
arrow: false
|
||||
}),
|
||||
d: common_vendor.p({
|
||||
title: "所属单位",
|
||||
value: "xxxxxxxxxxxxxx单位",
|
||||
arrow: false
|
||||
}),
|
||||
e: common_vendor.p({
|
||||
type: "primary"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/index/about/index.js.map
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"u-image": "../../../uni_modules/uview-pro/components/u-image/u-image",
|
||||
"u-cell-item": "../../../uni_modules/uview-pro/components/u-cell-item/u-cell-item",
|
||||
"u-cell-group": "../../../uni_modules/uview-pro/components/u-cell-group/u-cell-group",
|
||||
"u-button": "../../../uni_modules/uview-pro/components/u-button/u-button"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<view class="u-wrap u-padding-bottom-70"><view class="photo u-flex u-row-center u-padding-40"><u-image wx:if="{{a}}" u-i="8f3d2368-0" bind:__l="__l" u-p="{{a}}"></u-image></view><u-cell-group u-s="{{['d']}}" u-i="8f3d2368-1" bind:__l="__l"><u-cell-item wx:if="{{b}}" u-i="8f3d2368-2,8f3d2368-1" bind:__l="__l" u-p="{{b}}"></u-cell-item><u-cell-item wx:if="{{c}}" u-i="8f3d2368-3,8f3d2368-1" bind:__l="__l" u-p="{{c}}"></u-cell-item><u-cell-item wx:if="{{d}}" u-i="8f3d2368-4,8f3d2368-1" bind:__l="__l" u-p="{{d}}"></u-cell-item></u-cell-group><view class="fab"><u-button wx:if="{{e}}" u-s="{{['d']}}" u-i="8f3d2368-5" bind:__l="__l" u-p="{{e}}">退出</u-button></view></view>
|
||||
@@ -0,0 +1,84 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.u-wrap {
|
||||
background-color: #ffffff;
|
||||
width: 100%;
|
||||
height: calc(100vh - 52px - env(safe-area-inset-bottom));
|
||||
}
|
||||
.u-wrap .fab {
|
||||
padding: 20rpx 40rpx;
|
||||
position: fixed;
|
||||
bottom: 200rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 9999999999999;
|
||||
}
|
||||
@@ -0,0 +1,122 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_u_icon2 = common_vendor.resolveComponent("u-icon");
|
||||
const _easycom_u_transition2 = common_vendor.resolveComponent("u-transition");
|
||||
(_easycom_u_icon2 + _easycom_u_transition2)();
|
||||
}
|
||||
const _easycom_u_icon = () => "../../../uni_modules/uview-pro/components/u-icon/u-icon.js";
|
||||
const _easycom_u_transition = () => "../../../uni_modules/uview-pro/components/u-transition/u-transition.js";
|
||||
if (!Math) {
|
||||
(_easycom_u_icon + ProjectCard + SafeHoursCard + OrganizerCard + EducationCard + DefectTreatmentCard + CostCard + SpecialEquipCard + BigCrisisCard + RiskRankingCard + WorkCard + EmergencyCard + _easycom_u_transition + OrgPersonCard + StarLevelCard + EducationCard1 + MeasuringCard + InspectionRecord + ProjectItem + HighQuality + QCActivity + ConstructionScheme + ReviewAndBriefing + QmsInspect + AcceptanceData + WeldingData)();
|
||||
}
|
||||
const ProjectCard = () => "./safe/projectCard.js";
|
||||
const SafeHoursCard = () => "./safe/safeHoursCard.js";
|
||||
const OrganizerCard = () => "./safe/organizerCard.js";
|
||||
const EducationCard = () => "./safe/educationCard.js";
|
||||
const DefectTreatmentCard = () => "./safe/defectTreatmentCard.js";
|
||||
const CostCard = () => "./safe/costCard.js";
|
||||
const SpecialEquipCard = () => "./safe/specialEquipCard.js";
|
||||
const BigCrisisCard = () => "./safe/bigCrisisCard.js";
|
||||
const RiskRankingCard = () => "./safe/riskRankingCard.js";
|
||||
const WorkCard = () => "./safe/workCard.js";
|
||||
const EmergencyCard = () => "./safe/emergencyCard.js";
|
||||
const OrgPersonCard = () => "./qms/orgPersonCard.js";
|
||||
const StarLevelCard = () => "./qms/starLevelCard.js";
|
||||
const EducationCard1 = () => "./qms/educationCard.js";
|
||||
const MeasuringCard = () => "./qms/measuringCard.js";
|
||||
const InspectionRecord = () => "./qms/inspectionRecord.js";
|
||||
const ProjectItem = () => "./qms/projectItemCard.js";
|
||||
const HighQuality = () => "./qms/highQuality.js";
|
||||
const QCActivity = () => "./qms/QCActivity.js";
|
||||
const ConstructionScheme = () => "./qms/constructionScheme.js";
|
||||
const ReviewAndBriefing = () => "./qms/reviewAndBriefing.js";
|
||||
const QmsInspect = () => "./qms/qmsInspect.js";
|
||||
const AcceptanceData = () => "./qms/acceptanceData.js";
|
||||
const WeldingData = () => "./qms/weldingData.js";
|
||||
const _sfc_main = {
|
||||
__name: "index",
|
||||
setup(__props) {
|
||||
const safeComponent = common_vendor.ref([2, 1, 3, 4, 5, 6, 7, 8, 9, 10]);
|
||||
const tabIndx = common_vendor.ref(0);
|
||||
const handleChangeTab = (idx) => {
|
||||
tabIndx.value = idx;
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.p({
|
||||
name: "anquan",
|
||||
["custom-prefix"]: "custom-icon",
|
||||
size: "80"
|
||||
}),
|
||||
b: common_vendor.n(tabIndx.value ? "" : "custom-tabs-tab_active"),
|
||||
c: common_vendor.o(($event) => handleChangeTab(0), "83"),
|
||||
d: common_vendor.p({
|
||||
name: "zhiliang",
|
||||
["custom-prefix"]: "custom-icon",
|
||||
size: "80"
|
||||
}),
|
||||
e: common_vendor.n(tabIndx.value ? "custom-tabs-tab_active" : ""),
|
||||
f: common_vendor.o(($event) => handleChangeTab(1), "99"),
|
||||
g: tabIndx.value == 0
|
||||
}, tabIndx.value == 0 ? {
|
||||
h: common_vendor.f(safeComponent.value, (i, idx, i0) => {
|
||||
return common_vendor.e({
|
||||
a: i === 1
|
||||
}, i === 1 ? {
|
||||
b: "19f59e65-4-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
c: i === 2
|
||||
}, i === 2 ? {
|
||||
d: "19f59e65-5-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
e: i === 3
|
||||
}, i === 3 ? {
|
||||
f: "19f59e65-6-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
g: i === 4
|
||||
}, i === 4 ? {
|
||||
h: "19f59e65-7-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
i: i === 5
|
||||
}, i === 5 ? {
|
||||
j: "19f59e65-8-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
k: i === 6
|
||||
}, i === 6 ? {
|
||||
l: "19f59e65-9-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
m: i === 7
|
||||
}, i === 7 ? {
|
||||
n: "19f59e65-10-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
o: i === 8
|
||||
}, i === 8 ? {
|
||||
p: "19f59e65-11-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
q: i === 9
|
||||
}, i === 9 ? {
|
||||
r: "19f59e65-12-" + i0 + ",19f59e65-2"
|
||||
} : {}, {
|
||||
s: i === 10
|
||||
}, i === 10 ? {
|
||||
t: "19f59e65-13-" + i0 + ",19f59e65-2"
|
||||
} : {});
|
||||
})
|
||||
} : {}, {
|
||||
i: common_vendor.p({
|
||||
show: tabIndx.value === 0,
|
||||
name: "slide-right"
|
||||
}),
|
||||
j: tabIndx.value == 1
|
||||
}, tabIndx.value == 1 ? {} : {}, {
|
||||
k: common_vendor.p({
|
||||
show: tabIndx.value === 1,
|
||||
name: "slide-right"
|
||||
})
|
||||
});
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/index/board/index.js.map
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"u-icon": "../../../uni_modules/uview-pro/components/u-icon/u-icon",
|
||||
"u-transition": "../../../uni_modules/uview-pro/components/u-transition/u-transition",
|
||||
"project-card": "./safe/projectCard",
|
||||
"safe-hours-card": "./safe/safeHoursCard",
|
||||
"organizer-card": "./safe/organizerCard",
|
||||
"education-card": "./safe/educationCard",
|
||||
"defect-treatment-card": "./safe/defectTreatmentCard",
|
||||
"cost-card": "./safe/costCard",
|
||||
"special-equip-card": "./safe/specialEquipCard",
|
||||
"big-crisis-card": "./safe/bigCrisisCard",
|
||||
"risk-ranking-card": "./safe/riskRankingCard",
|
||||
"work-card": "./safe/workCard",
|
||||
"emergency-card": "./safe/emergencyCard",
|
||||
"org-person-card": "./qms/orgPersonCard",
|
||||
"star-level-card": "./qms/starLevelCard",
|
||||
"education-card1": "./qms/educationCard",
|
||||
"measuring-card": "./qms/measuringCard",
|
||||
"inspection-record": "./qms/inspectionRecord",
|
||||
"project-item": "./qms/projectItemCard",
|
||||
"high-quality": "./qms/highQuality",
|
||||
"q-c-activity": "./qms/QCActivity",
|
||||
"construction-scheme": "./qms/constructionScheme",
|
||||
"review-and-briefing": "./qms/reviewAndBriefing",
|
||||
"qms-inspect": "./qms/qmsInspect",
|
||||
"acceptance-data": "./qms/acceptanceData",
|
||||
"welding-data": "./qms/weldingData"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<view class="custom-wrap u-padding-30"><view class="custom-tabs u-flex box-shadow"><view class="{{['custom-tabs-tab', b]}}" bindtap="{{c}}"><u-icon wx:if="{{a}}" u-i="19f59e65-0" bind:__l="__l" u-p="{{a}}"/><text class="u-margin-top-20">安全生产数据</text></view><view class="{{['custom-tabs-tab', e]}}" bindtap="{{f}}"><u-icon wx:if="{{d}}" u-i="19f59e65-1" bind:__l="__l" u-p="{{d}}"/><text class="u-margin-top-20">质量焊接数据</text></view></view><u-transition wx:if="{{i}}" u-s="{{['d']}}" u-i="19f59e65-2" bind:__l="__l" u-p="{{i}}"><view wx:if="{{g}}"><project-card u-i="19f59e65-3,19f59e65-2" bind:__l="__l"/><view style="margin-top:-60rpx;padding:0 20rpx 40rpx"><block wx:for="{{h}}" wx:for-item="i"><safe-hours-card wx:if="{{i.a}}" u-i="{{i.b}}" bind:__l="__l"/><organizer-card wx:if="{{i.c}}" u-i="{{i.d}}" bind:__l="__l"/><education-card wx:if="{{i.e}}" u-i="{{i.f}}" bind:__l="__l"/><defect-treatment-card wx:if="{{i.g}}" u-i="{{i.h}}" bind:__l="__l"/><cost-card wx:if="{{i.i}}" u-i="{{i.j}}" bind:__l="__l"/><special-equip-card wx:if="{{i.k}}" u-i="{{i.l}}" bind:__l="__l"/><big-crisis-card wx:if="{{i.m}}" u-i="{{i.n}}" bind:__l="__l"/><risk-ranking-card wx:if="{{i.o}}" u-i="{{i.p}}" bind:__l="__l"/><work-card wx:if="{{i.q}}" u-i="{{i.r}}" bind:__l="__l"/><emergency-card wx:if="{{i.s}}" u-i="{{i.t}}" bind:__l="__l"/></block></view></view></u-transition><u-transition wx:if="{{k}}" u-s="{{['d']}}" u-i="19f59e65-14" bind:__l="__l" u-p="{{k}}"><view wx:if="{{j}}"><org-person-card u-i="19f59e65-15,19f59e65-14" bind:__l="__l"/><star-level-card u-i="19f59e65-16,19f59e65-14" bind:__l="__l"/><education-card1 u-i="19f59e65-17,19f59e65-14" bind:__l="__l"/><measuring-card u-i="19f59e65-18,19f59e65-14" bind:__l="__l"/><inspection-record u-i="19f59e65-19,19f59e65-14" bind:__l="__l"/><project-item u-i="19f59e65-20,19f59e65-14" bind:__l="__l"/><high-quality u-i="19f59e65-21,19f59e65-14" bind:__l="__l"/><q-c-activity u-i="19f59e65-22,19f59e65-14" bind:__l="__l"/><construction-scheme u-i="19f59e65-23,19f59e65-14" bind:__l="__l"/><review-and-briefing u-i="19f59e65-24,19f59e65-14" bind:__l="__l"/><qms-inspect u-i="19f59e65-25,19f59e65-14" bind:__l="__l"/><acceptance-data u-i="19f59e65-26,19f59e65-14" bind:__l="__l"/><welding-data u-i="19f59e65-27,19f59e65-14" bind:__l="__l"/></view></u-transition></view>
|
||||
@@ -0,0 +1,71 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "QCActivity",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 5],
|
||||
enableScroll: false,
|
||||
legend: { show: false },
|
||||
xAxis: {
|
||||
disableGrid: true
|
||||
},
|
||||
yAxis: {
|
||||
showTitle: true,
|
||||
data: [{
|
||||
title: "单位:项"
|
||||
}]
|
||||
},
|
||||
extra: {
|
||||
column: {
|
||||
type: "group",
|
||||
width: 30,
|
||||
activeBgColor: "#000000",
|
||||
activeBgOpacity: 0.08
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/qms/QCActivity.vue:45", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["省部级奖\n项", "集团级奖\n项", "企业级奖\n项"],
|
||||
series: [
|
||||
{
|
||||
color: "#27c9cb",
|
||||
name: "",
|
||||
data: [100, 542, 685]
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "65"),
|
||||
b: common_vendor.p({
|
||||
type: "column",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "QC活动"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/QCActivity.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="a1faaa14-0" bind:__l="__l" u-p="{{c}}"><view class="inspection"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="a1faaa14-1,a1faaa14-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.inspection {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "acceptanceData",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
color: ["#1890FF", "#91CB74", "#FAC858", "#EE6666", "#73C0DE", "#3CA272", "#FC8452", "#9A60B4", "#ea7ccc"],
|
||||
padding: [15, 15, 0, 15],
|
||||
enableScroll: false,
|
||||
legend: { fontSize: 10 },
|
||||
xAxis: {
|
||||
disableGrid: true
|
||||
},
|
||||
yAxis: {
|
||||
disabled: false,
|
||||
disableGrid: false,
|
||||
splitNumber: 5,
|
||||
gridType: "dash",
|
||||
dashLength: 4,
|
||||
gridColor: "#CCCCCC",
|
||||
padding: 10,
|
||||
showTitle: true,
|
||||
data: [
|
||||
{
|
||||
position: "right",
|
||||
min: 0,
|
||||
max: 100,
|
||||
title: "百分比"
|
||||
},
|
||||
{
|
||||
position: "left",
|
||||
title: "数量",
|
||||
textAlign: "left"
|
||||
}
|
||||
]
|
||||
},
|
||||
extra: {
|
||||
mix: {
|
||||
column: {
|
||||
width: 20,
|
||||
seriesGap: 8
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const chartData1 = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/qms/acceptanceData.vue:64", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["关键工序验收", "特殊工程验收", "隐藏工程验收"],
|
||||
series: [
|
||||
{
|
||||
name: "合格率",
|
||||
type: "line",
|
||||
style: "curve",
|
||||
color: "#ffe200",
|
||||
disableLegend: true,
|
||||
data: [70, 50, 85]
|
||||
},
|
||||
{
|
||||
name: "验收数",
|
||||
index: 1,
|
||||
type: "column",
|
||||
data: [40, 55, 110]
|
||||
},
|
||||
{
|
||||
name: "合格数",
|
||||
index: 1,
|
||||
type: "column",
|
||||
data: [50, 20, 75]
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
let res1 = {
|
||||
categories: ["单位工程", "分部工程", "分项工程"],
|
||||
series: [
|
||||
{
|
||||
name: "合格率",
|
||||
type: "line",
|
||||
style: "curve",
|
||||
color: "#ffe200",
|
||||
disableLegend: true,
|
||||
data: [70, 50, 85]
|
||||
},
|
||||
{
|
||||
name: "验收数",
|
||||
index: 1,
|
||||
type: "column",
|
||||
data: [40, 55, 110]
|
||||
},
|
||||
{
|
||||
name: "合格数",
|
||||
index: 1,
|
||||
type: "column",
|
||||
data: [50, 20, 75]
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData1.value = JSON.parse(JSON.stringify(res1));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "4b"),
|
||||
b: common_vendor.p({
|
||||
type: "mix",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.o(handleTap, "a0"),
|
||||
d: common_vendor.p({
|
||||
type: "mix",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
e: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "质量验收数据"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/acceptanceData.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{e}}" u-s="{{['d']}}" u-i="d7e27054-0" bind:__l="__l" u-p="{{e}}"><view class="ys"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="d7e27054-1,d7e27054-0" bind:__l="__l" u-p="{{b}}"/></view><view class="ys u-margin-top-30"><qiun-data-charts wx:if="{{d}}" bindgetIndex="{{c}}" u-i="d7e27054-2,d7e27054-0" bind:__l="__l" u-p="{{d}}"/></view></chart-card>
|
||||
@@ -0,0 +1,74 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.ys {
|
||||
height: 300rpx;
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "constructionScheme",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 5],
|
||||
enableScroll: false,
|
||||
legend: { show: false },
|
||||
xAxis: {
|
||||
disableGrid: true
|
||||
},
|
||||
yAxis: {
|
||||
showTitle: true,
|
||||
data: [{
|
||||
title: "单位:个"
|
||||
}]
|
||||
},
|
||||
extra: {
|
||||
column: {
|
||||
type: "group",
|
||||
width: 30,
|
||||
activeBgColor: "#000000",
|
||||
activeBgOpacity: 0.08
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/qms/constructionScheme.vue:46", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["总数", "项目审批数", "企业审批数"],
|
||||
series: [
|
||||
{
|
||||
color: "#5c7fcb",
|
||||
name: "",
|
||||
data: [100, 542, 685]
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "65"),
|
||||
b: common_vendor.p({
|
||||
type: "column",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "施工方案"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/constructionScheme.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="1ff8ce0b-0" bind:__l="__l" u-p="{{c}}"><view class="inspection"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="1ff8ce0b-1,1ff8ce0b-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.inspection {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "educationCard",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "教育培训"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-d56b7742"]]);
|
||||
wx.createComponent(Component);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/educationCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" class="data-v-d56b7742" u-s="{{['d']}}" u-i="d56b7742-0" bind:__l="__l" u-p="{{a}}"><view class="education u-flex data-v-d56b7742"><view class="education-box data-v-d56b7742"><view class="education-box-lab data-v-d56b7742">质量培训(人次)</view><view class="education-box-num u-margin-top-20 data-v-d56b7742">800</view></view><view class="education-box data-v-d56b7742"><view class="education-box-lab data-v-d56b7742">技术质量交底(人次)</view><view class="education-box-num u-margin-top-20 data-v-d56b7742">800</view></view></view></chart-card>
|
||||
@@ -0,0 +1,85 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
.data-v-d56b7742:root,
|
||||
page.data-v-d56b7742 {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.education.data-v-d56b7742 {
|
||||
width: 100%;
|
||||
}
|
||||
.education-box.data-v-d56b7742 {
|
||||
flex: 1;
|
||||
}
|
||||
.education-box-lab.data-v-d56b7742 {
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.education-box-num.data-v-d56b7742 {
|
||||
color: #333333;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "highQuality",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 5],
|
||||
enableScroll: false,
|
||||
legend: { show: false },
|
||||
xAxis: {
|
||||
disableGrid: true,
|
||||
rotateLabel: true,
|
||||
rotateAngle: -30
|
||||
},
|
||||
yAxis: {
|
||||
showTitle: true,
|
||||
data: [{
|
||||
title: "单位:项"
|
||||
}]
|
||||
},
|
||||
extra: {
|
||||
column: {
|
||||
type: "group",
|
||||
width: 30,
|
||||
activeBgColor: "#000000",
|
||||
activeBgOpacity: 0.08
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/qms/highQuality.vue:47", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["国家级鲁\n班奖", "国家级国\n优奖", "省部级奖\n项", "市级奖项"],
|
||||
series: [
|
||||
{
|
||||
color: "#91CB74",
|
||||
name: "",
|
||||
data: [100, 542, 685, 254]
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "65"),
|
||||
b: common_vendor.p({
|
||||
type: "column",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "优质工程"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/highQuality.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="34a70f18-0" bind:__l="__l" u-p="{{c}}"><view class="inspection"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="34a70f18-1,34a70f18-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.inspection {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "inspectionRecord",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 15],
|
||||
enableScroll: false,
|
||||
legend: {
|
||||
show: false
|
||||
},
|
||||
xAxis: {
|
||||
disableGrid: true
|
||||
},
|
||||
yAxis: {
|
||||
disabled: false,
|
||||
disableGrid: false,
|
||||
splitNumber: 5,
|
||||
gridType: "dash",
|
||||
dashLength: 4,
|
||||
gridColor: "#CCCCCC",
|
||||
padding: 10,
|
||||
showTitle: true,
|
||||
data: [
|
||||
{
|
||||
position: "left",
|
||||
title: "",
|
||||
textAlign: "left"
|
||||
},
|
||||
{
|
||||
position: "right",
|
||||
min: 0,
|
||||
max: 100,
|
||||
title: "单位: %"
|
||||
}
|
||||
]
|
||||
},
|
||||
extra: {
|
||||
mix: {
|
||||
column: {
|
||||
width: 20
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/qms/inspectionRecord.vue:61", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["设材报验数", "机具报验数", "人员报验数"],
|
||||
series: [
|
||||
{
|
||||
name: "",
|
||||
index: 1,
|
||||
type: "line",
|
||||
color: "#5cffc9",
|
||||
data: [70, 50, 85]
|
||||
},
|
||||
{
|
||||
name: "",
|
||||
type: "column",
|
||||
style: "curve",
|
||||
color: "#fff705",
|
||||
disableLegend: true,
|
||||
data: [56872, 4027, 8452],
|
||||
format: "formatDataLabel"
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "9d"),
|
||||
b: common_vendor.p({
|
||||
type: "mix",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "报验记录"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/inspectionRecord.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="6f49c24c-0" bind:__l="__l" u-p="{{c}}"><view class="inspection"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="6f49c24c-1,6f49c24c-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.inspection {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_u_icon2 = common_vendor.resolveComponent("u-icon");
|
||||
_easycom_u_icon2();
|
||||
}
|
||||
const _easycom_u_icon = () => "../../../../uni_modules/uview-pro/components/u-icon/u-icon.js";
|
||||
if (!Math) {
|
||||
(_easycom_u_icon + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "measuringCard",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
name: "jiliangqijujianguan",
|
||||
color: "#e28ea3",
|
||||
["custom-prefix"]: "custom-icon",
|
||||
size: "60"
|
||||
}),
|
||||
b: common_vendor.p({
|
||||
name: "hege",
|
||||
color: "#3bdae2",
|
||||
["custom-prefix"]: "custom-icon",
|
||||
size: "60"
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "计量器具数据"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/measuringCard.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"u-icon": "../../../../uni_modules/uview-pro/components/u-icon/u-icon",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="795de2b4-0" bind:__l="__l" u-p="{{c}}"><view class="measuring u-flex"><view class="measuring-box u-flex u-row-center"><view class="measuring-box-icon"><u-icon wx:if="{{a}}" u-i="795de2b4-1,795de2b4-0" bind:__l="__l" u-p="{{a}}"></u-icon></view><view class="measuring-box-row u-padding-left-20"><text class="measuring-box-row-num">900台</text><text class="measuring-box-row-lab">计量器具</text></view></view><view class="measuring-box u-flex u-row-center"><view class="measuring-box-icon"><u-icon wx:if="{{b}}" u-i="795de2b4-2,795de2b4-0" bind:__l="__l" u-p="{{b}}"></u-icon></view><view class="measuring-box-row u-padding-left-20"><text class="measuring-box-row-num">9000台</text><text class="measuring-box-row-lab">检验合格</text></view></view></view></chart-card>
|
||||
@@ -0,0 +1,92 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.measuring {
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
.measuring-box {
|
||||
flex: 1;
|
||||
}
|
||||
.measuring-box-row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.measuring-box-row-lab {
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
margin-top: 12rpx;
|
||||
}
|
||||
.measuring-box-row-num {
|
||||
color: #333333;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "orgPersonCard",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "组织机构人员"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/orgPersonCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" u-s="{{['d']}}" u-i="0473ed38-0" bind:__l="__l" u-p="{{a}}"><view class="org-person"><view class="org-person-row"><view class="org-person-row_lab"> 集团总数 </view><view class="org-person-row_num">9521</view></view><view class="u-flex"><view class="org-person-row"><view class="org-person-row_lab"> 所企业总部人数 </view><view class="org-person-row_num">9521</view></view><view class="org-person-row"><view class="org-person-row_lab"> 分支机构人数 </view><view class="org-person-row_num">9521</view></view></view><view class="u-flex"><view class="org-person-row"><view class="org-person-row_lab"> 质量管理人数 </view><view class="org-person-row_num">9521</view></view><view class="org-person-row"><view class="org-person-row_lab"> 特种设备质保体系 </view><view class="org-person-row_num">9521</view></view></view></view></chart-card>
|
||||
@@ -0,0 +1,92 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.org-person-row {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
align-items: flex-end;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
.org-person-row_lab {
|
||||
width: 200rpx;
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
line-height: 1;
|
||||
}
|
||||
.org-person-row_num {
|
||||
width: calc(100% - 200rpx);
|
||||
line-height: 1;
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
padding-left: 40rpx;
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "projectItemCard",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 5],
|
||||
enableScroll: false,
|
||||
legend: { show: false },
|
||||
xAxis: {
|
||||
disableGrid: true
|
||||
},
|
||||
yAxis: {
|
||||
showTitle: true,
|
||||
data: [{
|
||||
title: "单位:个"
|
||||
}]
|
||||
},
|
||||
extra: {
|
||||
column: {
|
||||
type: "group",
|
||||
width: 30,
|
||||
activeBgColor: "#000000",
|
||||
activeBgOpacity: 0.08
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/qms/projectItemCard.vue:44", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["单位工程数", "分部工程数", "分项工程数"],
|
||||
series: [
|
||||
{
|
||||
name: "",
|
||||
data: [1e4, 5428, 6852]
|
||||
}
|
||||
]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "65"),
|
||||
b: common_vendor.p({
|
||||
type: "column",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "工程划分"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/projectItemCard.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="128d2c17-0" bind:__l="__l" u-p="{{c}}"><view class="inspection"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="128d2c17-1,128d2c17-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.inspection {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_u_subsection2 = common_vendor.resolveComponent("u-subsection");
|
||||
_easycom_u_subsection2();
|
||||
}
|
||||
const _easycom_u_subsection = () => "../../../../uni_modules/uview-pro/components/u-subsection/u-subsection.js";
|
||||
if (!Math) {
|
||||
(_easycom_u_subsection + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "qmsInspect",
|
||||
setup(__props) {
|
||||
const current = common_vendor.ref(0);
|
||||
const list = common_vendor.ref([
|
||||
{
|
||||
name: "集团级"
|
||||
},
|
||||
{
|
||||
name: "企业级"
|
||||
},
|
||||
{
|
||||
name: "分支机构"
|
||||
},
|
||||
{
|
||||
name: "项目级"
|
||||
}
|
||||
]);
|
||||
const handleChange = () => {
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleChange, "1a"),
|
||||
b: common_vendor.p({
|
||||
list: list.value,
|
||||
current: current.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "安全隐患排查治理"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/qmsInspect.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"u-subsection": "../../../../uni_modules/uview-pro/components/u-subsection/u-subsection",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="1e7df1f2-0" bind:__l="__l" u-p="{{c}}"><view class="defect"><u-subsection wx:if="{{b}}" bindchange="{{a}}" u-i="1e7df1f2-1,1e7df1f2-0" bind:__l="__l" u-p="{{b}}"></u-subsection><view class="defect-main u-flex u-row-between u-margin-top-20"><view class="defect-box gb-all"><text class="defect-box-lab">质量问题</text><text class="defect-box-num u-margin-top-20">4567项</text></view><view class="defect-box gb-rectified"><text class="defect-box-lab">整改完成</text><text class="defect-box-num u-margin-top-20">20项</text></view><view class="defect-box gb-not-rectified"><text class="defect-box-lab">未整改</text><text class="defect-box-num u-margin-top-20">6项</text></view></view></view></chart-card>
|
||||
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.defect-main {
|
||||
height: 120rpx;
|
||||
}
|
||||
.defect-box {
|
||||
width: calc((100% - 40rpx) / 3);
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.defect-box-lab {
|
||||
font-size: 24rpx;
|
||||
color: #ffffff;
|
||||
}
|
||||
.defect-box-num {
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
color: #ffffff;
|
||||
}
|
||||
.gb-all {
|
||||
background: linear-gradient(to top right, #9E9E9E, #dcdcdc);
|
||||
}
|
||||
.gb-not-rectified {
|
||||
background: linear-gradient(to top right, #FFD626, #FF9F7D);
|
||||
}
|
||||
.gb-rectified {
|
||||
background: linear-gradient(to top right, #2488FA, #79BAFF);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "reviewAndBriefing",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "图纸会审/技术交底"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-077e4da0"]]);
|
||||
wx.createComponent(Component);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/reviewAndBriefing.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" class="data-v-077e4da0" u-s="{{['d']}}" u-i="077e4da0-0" bind:__l="__l" u-p="{{a}}"><view class="education u-flex data-v-077e4da0"><view class="education-box data-v-077e4da0"><view class="education-box-lab data-v-077e4da0">图纸会审(次)</view><view class="education-box-num u-margin-top-20 data-v-077e4da0">800</view></view><view class="education-box data-v-077e4da0"><view class="education-box-lab data-v-077e4da0">设计交底(次)</view><view class="education-box-num u-margin-top-20 data-v-077e4da0">800</view></view></view></chart-card>
|
||||
@@ -0,0 +1,85 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
.data-v-077e4da0:root,
|
||||
page.data-v-077e4da0 {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.education.data-v-077e4da0 {
|
||||
width: 100%;
|
||||
}
|
||||
.education-box.data-v-077e4da0 {
|
||||
flex: 1;
|
||||
}
|
||||
.education-box-lab.data-v-077e4da0 {
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.education-box-num.data-v-077e4da0 {
|
||||
color: #333333;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "starLevelCard",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "星级标准化工地建设"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/starLevelCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" u-s="{{['d']}}" u-i="44574d5d-0" bind:__l="__l" u-p="{{a}}"><view class="star-level"><view class="star-level-box u-flex"><view class="star-level-tit">五星</view><view class="u-flex star-level-box_inner" style="width:calc(100% - 48rpx)"><view class="star-level-row"><view class="star-level_lab"> 创建数 </view><view class="star-level_num"> 59 </view></view><view class="star-level-row"><view class="star-level_lab"> 企业自评价达标数 </view><view class="star-level_num"> 59 </view></view><view class="star-level-row"><view class="star-level_lab"> 集团验收达标数 </view><view class="star-level_num"> 59 </view></view></view></view><view class="star-level-box u-flex u-margin-top-30 u-margin-bottom-30"><view class="star-level-tit">四星</view><view class="u-flex star-level-box_inner" style="width:calc(100% - 48rpx)"><view class="star-level-row"><view class="star-level_lab"> 创建数 </view><view class="star-level_num"> 59 </view></view><view class="star-level-row"><view class="star-level_lab"> 企业自评价达标数 </view><view class="star-level_num"> 59 </view></view><view class="star-level-row"><view class="star-level_lab"> 集团验收达标数 </view><view class="star-level_num"> 59 </view></view></view></view><view class="star-level-box u-flex"><view class="star-level-tit">三星</view><view class="u-flex star-level-box_inner" style="width:calc(100% - 48rpx)"><view class="star-level-row"><view class="star-level_lab"> 创建数 </view><view class="star-level_num"> 59 </view></view><view class="star-level-row"><view class="star-level_lab"> 企业自评价达标数 </view><view class="star-level_num"> 59 </view></view><view class="star-level-row"><view class="star-level_lab"> 集团验收达标数 </view><view class="star-level_num"> 59 </view></view></view></view></view></chart-card>
|
||||
@@ -0,0 +1,106 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.star-level-box_inner {
|
||||
padding: 0 30rpx;
|
||||
display: grid;
|
||||
grid-template-columns: 100rpx 1fr 1fr;
|
||||
column-gap: 20rpx;
|
||||
}
|
||||
.star-level-tit {
|
||||
padding: 12rpx;
|
||||
width: 48rpx;
|
||||
height: 82rpx;
|
||||
text-align: center;
|
||||
line-height: 30rpx;
|
||||
font-size: 24rpx;
|
||||
background: linear-gradient(to right, #1e5ca3, #3094ff);
|
||||
color: #ffffff;
|
||||
border-radius: 6rpx;
|
||||
}
|
||||
.star-level_lab {
|
||||
font-size: 20rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.star-level_num {
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
}
|
||||
.star-level-row {
|
||||
height: 100rpx;
|
||||
padding: 10rpx;
|
||||
flex: 1;
|
||||
background-color: #F7FBFE;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "weldingData",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
margin: "30rpx 0 0 0",
|
||||
title: "焊接数据"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/qms/weldingData.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" u-s="{{['d']}}" u-i="5829e0c1-0" bind:__l="__l" u-p="{{a}}"><view class="weld"><view class="weld-row u-padding-20"><view class="weld-row-col u-flex"><view class="weld-row-col_lab"> 焊工总数 </view><view class="weld-row-col_num u-padding-left-18"> 945281 </view></view></view><view class="weld-row1 u-margin-top-20"><view class="weld-row1-col1 u-flex-col"><view class="weld-row1-col1_lab"> 总达因数 </view><view class="weld-row1-col1_num"> 945281 </view></view><view class="weld-row1-col1 u-flex-col"><view class="weld-row1-col1_lab"> 完成达因数 </view><view class="weld-row1-col1_num"> 945281 </view></view><view class="weld-row1-col1 u-flex-col"><view class="weld-row1-col1_lab"> 总片数 </view><view class="weld-row1-col1_num"> 945281 </view></view></view><view class="weld-row2 u-margin-top-20"><view class="weld-row1-col1 u-flex-col"><view class="weld-row1-col1_lab"> 合格片数 </view><view class="weld-row1-col1_num"> 945281 </view></view><view class="weld-row1-col1 u-flex-col"><view class="weld-row1-col1_lab"> 一次合格率 </view><view class="weld-row1-col1_num"> 33.00% </view></view></view></view></chart-card>
|
||||
@@ -0,0 +1,106 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.weld-row {
|
||||
background-color: #F7FBFE;
|
||||
}
|
||||
.weld-row-col_lab {
|
||||
font-size: 28rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.weld-row-col_num {
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
}
|
||||
.weld-row1 {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, calc((100% - 60rpx) / 3));
|
||||
grid-column-gap: 30rpx;
|
||||
}
|
||||
.weld-row1-col1 {
|
||||
padding: 20rpx;
|
||||
background-color: #F7FBFE;
|
||||
}
|
||||
.weld-row1-col1_lab {
|
||||
text-align: center;
|
||||
font-size: 28rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.weld-row1-col1_num {
|
||||
text-align: center;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
}
|
||||
.weld-row2 {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, calc((100% - 30rpx) / 2));
|
||||
grid-column-gap: 30rpx;
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "bigCrisisCard",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 5],
|
||||
enableScroll: false,
|
||||
legend: {
|
||||
show: false
|
||||
},
|
||||
xAxis: {
|
||||
disableGrid: true
|
||||
},
|
||||
yAxis: {
|
||||
data: [{
|
||||
min: 0
|
||||
}]
|
||||
},
|
||||
extra: {
|
||||
column: {
|
||||
type: "group",
|
||||
width: 20,
|
||||
activeBgColor: "#000000",
|
||||
activeBgOpacity: 0.08
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/bigCrisisCard.vue:45", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["未开始", "进行中", "已完成", "培训人次", "作业人次"],
|
||||
series: [{
|
||||
data: [35, 36, 31, 33, 13]
|
||||
}]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "dc"),
|
||||
b: common_vendor.p({
|
||||
type: "column",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "危大工程管控数据"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/bigCrisisCard.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="200c7ae4-0" bind:__l="__l" u-p="{{c}}"><view class="big-crisis"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="200c7ae4-1,200c7ae4-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.big-crisis {
|
||||
width: 100%;
|
||||
height: 400rpx;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "costCard",
|
||||
setup(__props) {
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "安全费用"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/costCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" u-s="{{['d']}}" u-i="7965665c-0" bind:__l="__l" u-p="{{a}}"><view class="cost u-flex"><view class="cost-box"><view class="cost-box-lab">费用提取(亿元)</view><view class="cost-box-num u-margin-top-20">800</view></view><view class="cost-box"><view class="cost-box-lab">费用使用(亿元)</view><view class="cost-box-num u-margin-top-20">800</view></view></view></chart-card>
|
||||
@@ -0,0 +1,85 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.cost {
|
||||
width: 100%;
|
||||
}
|
||||
.cost-box {
|
||||
flex: 1;
|
||||
}
|
||||
.cost-box-lab {
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.cost-box-num {
|
||||
color: #333333;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_u_subsection2 = common_vendor.resolveComponent("u-subsection");
|
||||
_easycom_u_subsection2();
|
||||
}
|
||||
const _easycom_u_subsection = () => "../../../../uni_modules/uview-pro/components/u-subsection/u-subsection.js";
|
||||
if (!Math) {
|
||||
(_easycom_u_subsection + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "defectTreatmentCard",
|
||||
setup(__props) {
|
||||
const current = common_vendor.ref(0);
|
||||
const list = common_vendor.ref([
|
||||
{
|
||||
name: "集团级"
|
||||
},
|
||||
{
|
||||
name: "公司级"
|
||||
},
|
||||
{
|
||||
name: "项目级"
|
||||
},
|
||||
{
|
||||
name: "分支机构"
|
||||
}
|
||||
]);
|
||||
const handleChange = () => {
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleChange, "1a"),
|
||||
b: common_vendor.p({
|
||||
list: list.value,
|
||||
current: current.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "安全隐患排查治理"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/defectTreatmentCard.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"u-subsection": "../../../../uni_modules/uview-pro/components/u-subsection/u-subsection",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="2662a872-0" bind:__l="__l" u-p="{{c}}"><view class="defect"><u-subsection wx:if="{{b}}" bindchange="{{a}}" u-i="2662a872-1,2662a872-0" bind:__l="__l" u-p="{{b}}"></u-subsection><view class="defect-main u-flex u-row-between u-margin-top-20"><view class="defect-box gb-all"><text class="defect-box-lab">安全隐患</text><text class="defect-box-num u-margin-top-20">4567</text></view><view class="defect-box gb-rectified"><text class="defect-box-lab">整改闭环</text><text class="defect-box-num u-margin-top-20">20</text></view><view class="defect-box gb-not-rectified"><text class="defect-box-lab">未整改</text><text class="defect-box-num u-margin-top-20">6</text></view><view class="defect-box gb-rectified-rate"><text class="defect-box-lab">整改率</text><text class="defect-box-num u-margin-top-20">99.99%</text></view></view></view></chart-card>
|
||||
+103
@@ -0,0 +1,103 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.defect-main {
|
||||
height: 120rpx;
|
||||
}
|
||||
.defect-box {
|
||||
width: calc((100% - 40rpx) / 4);
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.defect-box-lab {
|
||||
font-size: 24rpx;
|
||||
color: #ffffff;
|
||||
}
|
||||
.defect-box-num {
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
color: #ffffff;
|
||||
}
|
||||
.gb-all {
|
||||
background: linear-gradient(to top right, #9E9E9E, #dcdcdc);
|
||||
}
|
||||
.gb-not-rectified {
|
||||
background: linear-gradient(to top right, #FFD626, #FF9F7D);
|
||||
}
|
||||
.gb-rectified {
|
||||
background: linear-gradient(to top right, #2488FA, #79BAFF);
|
||||
}
|
||||
.gb-rectified-rate {
|
||||
background: linear-gradient(to top right, #2AD192, #8DF0C9);
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "educationCard",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 15],
|
||||
enableScroll: false,
|
||||
legend: {
|
||||
show: false
|
||||
},
|
||||
xAxis: {
|
||||
disableGrid: true,
|
||||
rotateLabel: true,
|
||||
rotateAngle: -30,
|
||||
fontSize: 10
|
||||
},
|
||||
yAxis: {
|
||||
gridType: "dash",
|
||||
dashLength: 2
|
||||
},
|
||||
extra: {
|
||||
tooltip: {
|
||||
showBox: false
|
||||
},
|
||||
area: {
|
||||
type: "curve",
|
||||
opacity: 0.2,
|
||||
addLine: true,
|
||||
width: 2,
|
||||
gradient: true,
|
||||
activeType: "hollow"
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/educationCard.vue:52", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["专项培训", "特种作业\n培训", "三级安全\n教育培训", "安全技术\n交底"],
|
||||
series: [{
|
||||
data: [302265, 70770, 399175, 14851]
|
||||
}]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "c3"),
|
||||
b: common_vendor.p({
|
||||
type: "area",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "教育培训"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-a6a882bc"]]);
|
||||
wx.createComponent(Component);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/educationCard.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" class="data-v-a6a882bc" u-s="{{['d']}}" u-i="a6a882bc-0" bind:__l="__l" u-p="{{c}}"><view class="charts-box data-v-a6a882bc"><qiun-data-charts wx:if="{{b}}" class="data-v-a6a882bc" bindgetIndex="{{a}}" u-i="a6a882bc-1,a6a882bc-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,5 @@
|
||||
|
||||
.charts-box.data-v-a6a882bc {
|
||||
width: 100%;
|
||||
height: 400rpx;
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "emergencyCard",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
padding: [15, 15, 0, 5],
|
||||
enableScroll: false,
|
||||
legend: { show: false },
|
||||
xAxis: {
|
||||
disableGrid: true,
|
||||
rotateLabel: true,
|
||||
fontSize: 10,
|
||||
rotateAngle: -30
|
||||
},
|
||||
yAxis: {
|
||||
data: [{
|
||||
min: 0
|
||||
}]
|
||||
},
|
||||
extra: {
|
||||
column: {
|
||||
type: "group",
|
||||
width: 20,
|
||||
activeBgColor: "#000000",
|
||||
activeBgOpacity: 0.08
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
const handleTap = (e) => {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/emergencyCard.vue:46", e);
|
||||
};
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
categories: ["应急预案", "专项预案", "现场处置\n预案", "演练次数", "参演人数"],
|
||||
series: [{
|
||||
data: [35, 36, 31, 33, 13],
|
||||
color: "#eef82f"
|
||||
}],
|
||||
formatter: function(value, index, series, opts2) {
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/emergencyCard.vue:58", value);
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/emergencyCard.vue:59", index);
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/emergencyCard.vue:60", series);
|
||||
common_vendor.index.__f__("log", "at pages/index/board/safe/emergencyCard.vue:61", opts2);
|
||||
}
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleTap, "8d"),
|
||||
b: common_vendor.p({
|
||||
type: "column",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "应急管理数据"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/emergencyCard.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"qiun-data-charts": "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts",
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{c}}" u-s="{{['d']}}" u-i="b57ac788-0" bind:__l="__l" u-p="{{c}}"><view class="emergencyCard"><qiun-data-charts wx:if="{{b}}" bindgetIndex="{{a}}" u-i="b57ac788-1,b57ac788-0" bind:__l="__l" u-p="{{b}}"/></view></chart-card>
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.emergencyCard {
|
||||
width: 100%;
|
||||
height: 400rpx;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "organizerCard",
|
||||
setup(__props) {
|
||||
const loading = common_vendor.ref(false);
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
loading: loading.value,
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "组织机构人员"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/organizerCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{a}}" u-s="{{['d']}}" u-i="61830bda-0" bind:__l="__l" u-p="{{a}}"><view class="organizer"><view class="row u-flex u-padding-20 u-margin-bottom-20"><view class="row_li u-flex u-row-center"><text class="organizer-lab">集团总人数</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">总监</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">专职</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">企业</text><text class="organizer_num">13273</text></view></view><view class="organizer-tit">分支机构</view><view class="row u-flex u-padding-20 u-margin-bottom-20"><view class="row_li u-flex u-row-center"><text class="organizer-lab">总监</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">专职</text><text class="organizer_num">13273</text></view></view><view class="organizer-tit">注安师</view><view class="row u-flex u-padding-20 u-margin-bottom-20"><view class="row_li u-flex u-row-center"><text class="organizer-lab">在岗职业</text><text class="organizer_num">13273</text></view></view><view class="organizer-tit">项目人数</view><view class="row u-flex u-padding-20 u-margin-bottom-20"><view class="row_li u-flex u-row-center"><text class="organizer-lab">总监</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">专职</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">安全监护</text><text class="organizer_num">13273</text></view></view><view class="organizer-tit">三类人员</view><view class="row u-flex u-padding-20"><view class="row_li u-flex u-row-center"><text class="organizer-lab">A证</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">B证</text><text class="organizer_num">13273</text></view><view class="row_li u-flex u-row-center"><text class="organizer-lab">C证</text><text class="organizer_num">13273</text></view></view></view></chart-card>
|
||||
@@ -0,0 +1,95 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.organizer-tit {
|
||||
color: #2573cb;
|
||||
width: 100%;
|
||||
font-size: 28rpx;
|
||||
background-color: #F7FBFE;
|
||||
padding: 12rpx 20rpx 0;
|
||||
}
|
||||
.organizer-lab {
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.organizer_num {
|
||||
color: #333333;
|
||||
font-size: 28rpx;
|
||||
margin-top: 16rpx;
|
||||
}
|
||||
.organizer .row {
|
||||
background-color: #F7FBFE;
|
||||
}
|
||||
.organizer .row_li {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Math) {
|
||||
ChartCard();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "projectCard",
|
||||
setup(__props) {
|
||||
const loading = common_vendor.ref(false);
|
||||
const handleSkip = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/penetrate/project`
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(handleSkip, "f6"),
|
||||
b: common_vendor.p({
|
||||
loading: loading.value,
|
||||
margin: "30rpx 0 0 0",
|
||||
padding: "20rpx 10rpx 80rpx 10rpx",
|
||||
["bg-color"]: "linear-gradient(#1e5ca3, #3094ff)"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/projectCard.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"chart-card": "../../../../components/chartCard"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<chart-card wx:if="{{b}}" u-s="{{['d']}}" u-i="b68f92f8-0" bind:__l="__l" u-p="{{b}}"><view class="project"><view class="project-col" bindtap="{{a}}"><text class="project-col-num">1024</text><text class="project-col-lab u-margin-top-10">在建项目</text></view><view class="project-col"><text class="project-col-num">1024</text><text class="project-col-lab u-margin-top-10">停工项目</text></view><view class="project-col"><text class="project-col-num">1024111</text><text class="project-col-lab u-margin-top-10">参建人数</text></view><view class="project-col"><text class="project-col-num">1024</text><text class="project-col-lab u-margin-top-10">在施危大工程</text></view></view></chart-card>
|
||||
@@ -0,0 +1,92 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
:root,
|
||||
page {
|
||||
/* 纯色 */
|
||||
--u-white-color: #ffffff;
|
||||
--u-black-color: #000000;
|
||||
--u-main-color: #303133;
|
||||
--u-content-color: #606266;
|
||||
--u-tips-color: #909399;
|
||||
--u-light-color: #c0c4cc;
|
||||
--u-border-color: #e4e7ed;
|
||||
--u-divider-color: #e4e7ed;
|
||||
--u-mask-color: rgba(0, 0, 0, 0.4);
|
||||
--u-shadow-color: rgba(0, 0, 0, 0.1);
|
||||
/* 背景色 */
|
||||
--u-bg-color: #f3f4f6;
|
||||
--u-bg-white: #ffffff;
|
||||
--u-bg-gray-light: #f1f1f1;
|
||||
--u-bg-gray-dark: #2f343c;
|
||||
--u-bg-black: #000000;
|
||||
/* 主色 */
|
||||
--u-type-primary: #17447a;
|
||||
--u-type-primary-light: #d5dde7;
|
||||
--u-type-primary-disabled: #8fa6c3;
|
||||
--u-type-primary-dark: #123662;
|
||||
/* 警告色 */
|
||||
--u-type-warning: #ff9900;
|
||||
--u-type-warning-disabled: #fcbd71;
|
||||
--u-type-warning-dark: #f29100;
|
||||
--u-type-warning-light: #fdf6ec;
|
||||
/* 成功色 */
|
||||
--u-type-success: #19be6b;
|
||||
--u-type-success-disabled: #71d5a1;
|
||||
--u-type-success-dark: #18b566;
|
||||
--u-type-success-light: #dbf1e1;
|
||||
/* 错误色 */
|
||||
--u-type-error: #fa3534;
|
||||
--u-type-error-disabled: #fab6b6;
|
||||
--u-type-error-dark: #dd6161;
|
||||
--u-type-error-light: #fef0f0;
|
||||
/* 信息色 */
|
||||
--u-type-info: #909399;
|
||||
--u-type-info-disabled: #c8c9cc;
|
||||
--u-type-info-dark: #82848a;
|
||||
--u-type-info-light: #f4f4f5;
|
||||
}
|
||||
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.project {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 25%);
|
||||
}
|
||||
.project-col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.project-col-num {
|
||||
text-align: center;
|
||||
overflow-wrap: break-word;
|
||||
width: 100%;
|
||||
color: #ffffff;
|
||||
font-size: 40rpx;
|
||||
}
|
||||
.project-col-lab {
|
||||
color: #ffffff;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_qiun_data_charts2 = common_vendor.resolveComponent("qiun-data-charts");
|
||||
_easycom_qiun_data_charts2();
|
||||
}
|
||||
const _easycom_qiun_data_charts = () => "../../../../uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.js";
|
||||
if (!Math) {
|
||||
(_easycom_qiun_data_charts + ChartCard)();
|
||||
}
|
||||
const ChartCard = () => "../../../../components/chartCard.js";
|
||||
const _sfc_main = {
|
||||
__name: "riskRankingCard",
|
||||
setup(__props) {
|
||||
const opts = common_vendor.ref({
|
||||
color: ["#EE6666", "#EF893B", "#EFCB3B", "#3B8CEF"],
|
||||
padding: [5, 5, 5, 5],
|
||||
enableScroll: false,
|
||||
legend: {
|
||||
lineHeight: 20,
|
||||
fontSize: 10,
|
||||
itemGap: 20
|
||||
},
|
||||
extra: {
|
||||
pie: {
|
||||
activeOpacity: 0.5,
|
||||
activeRadius: 10,
|
||||
offsetAngle: 0,
|
||||
labelWidth: 15,
|
||||
border: true,
|
||||
borderWidth: 3,
|
||||
borderColor: "#FFFFFF"
|
||||
}
|
||||
}
|
||||
});
|
||||
const chartData = common_vendor.ref({});
|
||||
common_vendor.onReady(() => {
|
||||
let res = {
|
||||
series: [{
|
||||
data: [{
|
||||
"name": "重大风险",
|
||||
"value": 50,
|
||||
"labelText": "重大风险:50"
|
||||
}, {
|
||||
"name": "较大风险",
|
||||
"value": 30,
|
||||
"labelText": "较大风险:30"
|
||||
}, {
|
||||
"name": "一般风险",
|
||||
"value": 20,
|
||||
"labelText": "一般风险:20"
|
||||
}, {
|
||||
"name": "低风险",
|
||||
"value": 8,
|
||||
"labelText": "低风险:8"
|
||||
}]
|
||||
}]
|
||||
};
|
||||
chartData.value = JSON.parse(JSON.stringify(res));
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
type: "pie",
|
||||
opts: opts.value,
|
||||
chartData: chartData.value
|
||||
}),
|
||||
b: common_vendor.p({
|
||||
margin: "0 0 30rpx 0",
|
||||
title: "风险分级管控"
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
wx.createComponent(_sfc_main);
|
||||
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/pages/index/board/safe/riskRankingCard.js.map
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user