Browse Source

登录页

master
parent
commit
40e7c29096
  1. 24
      api/inspections/index.js
  2. 25
      api/task/index.js
  3. 87
      components/cs-dict-tag/index.vue
  4. 19
      sub/common/waiting.vue

24
api/inspections/index.js

@ -0,0 +1,24 @@
import request from '@/utils/request'
export const InspectionsApi = {
/**
* 获取列表
* @param {Object} params
*/
getList: (params) => {
return request({
url: `/system/enterprise-inspections/page`,
method: 'GET',
params
})
},
/**
* 获取详情
*/
getDetail: (id) => {
return request({
url: `/system/enterprise-inspections/appGet?id=${id}`,
method: 'GET',
})
}
}

25
api/task/index.js

@ -0,0 +1,25 @@
import request from '@/utils/request'
export const TaskApi = {
/**
* 获取列表
* @param {Object} params
*/
getList: (params) => {
return request({
url: `/system/task-info/appPage`,
method: 'GET',
params
})
},
/**
* 获取详情
*/
getDetail: (id) => {
return request({
url: `/system/task-info/appGet?id=${id}`,
method: 'GET',
})
}
}

87
components/cs-dict-tag/index.vue

@ -0,0 +1,87 @@
<template>
<view :class="[getClass, 'dict-tag']">{{ current.label }}</view>
</template>
<script>
export default {
name: 'cs-dictTag',
data() {
return {
current: {}
}
},
computed: {
getClass() {
return this.current?.colorType || 'info'
}
},
props: {
dict: {
type: Array,
required: true,
default: () => {
return []
}
},
value: {
type: Number,
required: true
}
},
watch: {
'$props.value': {
handler: function (v) {
if (v) {
this.getDickObj()
}
},
deep: true,
immediate: true
},
'$props.dict': {
handler: function (v) {
if (v) {
this.getDickObj()
}
},
deep: true,
immediate: true
}
},
mounted() {},
methods: {
getDickObj() {
this.current = this.$props.dict.find(i => i.value == this.$props.value)
}
}
}
</script>
<style lang="scss" scoped>
.success {
color: #17c653;
background-color: #eafff1;
}
.primary {
color: $uni-color-primary;
background-color: rgba($uni-color-primary, 0.2);
}
.warning {
color: #f6b100;
background-color: #fff8dd;
}
.error {
color: #f8285a;
background-color: #ffeef3;
}
.info {
background-color: #f1f1f4;
color: #99a1b7;
}
.dict-tag {
min-width: 100px;
text-align: center;
font-size: 12px;
padding: 4px 20px;
}
</style>

19
sub/common/waiting.vue

@ -1,22 +1,17 @@
<template>
<cs-page isCustom>
<template #header>
<view class="wd-flex wd-items-center" style="gap: 10px">
<u--image src="/static/favicon.png" width="20px" height="20px" mode="aspectFit"></u--image>
<view class="wd-text-16 wd-font-800">智慧生态</view>
</view>
</template>
<view class="wd-flex wd-flex-col wd-flex-center" style="height: 100%; gap: 10px">
<icon type="waiting" size="40" />
<text class="wd-text-18">审核中</text>
</view>
</cs-page>
<view class="wd-flex wd-flex-col wd-flex-center" style="height: 100%; gap: 10px">
<icon type="waiting" size="40" />
<text class="wd-text-18">审核中</text>
</view>
</template>
<script>
export default {
data() {
return {}
},
onShow(res) {
console.log(res)
}
}
</script>

Loading…
Cancel
Save