lijuncheng
3 months ago
102 changed files with 238 additions and 192 deletions
@ -1,12 +1,11 @@ |
|||||
VITE_BASE_URL=http://172.22.32.8:81/api/admin-api |
VITE_BASE_URL=http://172.21.32.13:81/api/admin-api |
||||
VITE_BASE_URL_IMAGE=http://172.22.32.8:81/admin-api |
VITE_BASE_URL_IMAGE=http://172.21.32.13:81/admin-api |
||||
|
|
||||
# 租户配置 |
# 租户配置 |
||||
VITE_TENANT='[{"text":"成都1397","value":2},{"text":"长春2379","value":3}]' |
VITE_TENANT='[{"text":"长春1379","value":1}]' |
||||
|
|
||||
# 是否是测试环境 |
# 是否是测试环境 |
||||
VITE_isDevelopment=false |
VITE_isDevelopment=false |
||||
|
|
||||
|
|
||||
# 积木报表请求路径 |
# 积木报表请求路径 |
||||
VITE_JMREPORT_BASE_URL='http://172.22.32.8:90' |
VITE_JMREPORT_BASE_URL='http://172.21.32.13:90' |
||||
|
@ -0,0 +1,47 @@ |
|||||
|
<template> |
||||
|
<!-- style="margin-top: 10rpx;margin-bottom: 10rpx;" class="uni-flex uni-row space-between u-col-center" --> |
||||
|
<view class="task_item" style="margin-left: 15rpx; margin-right: 15rpx;"> |
||||
|
<view class="uni-flex space-between u-col-center"> |
||||
|
<view class="uni-flex uni-row u-col-center"> |
||||
|
<text style="font-size: 32rpx;" >承接人:{{dataContent.acceptUserName}}</text> |
||||
|
</view> |
||||
|
<view class="uni-flex uni-row u-col-center"> |
||||
|
<text style="font-size: 32rpx;" class="center">承接时间:{{formatDate(dataContent.acceptTime)}}</text> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { |
||||
|
dateFormat |
||||
|
} from '@/common/basic.js'; |
||||
|
|
||||
|
export default { |
||||
|
components: { |
||||
|
|
||||
|
}, |
||||
|
data() { |
||||
|
return { |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
watch: {}, |
||||
|
|
||||
|
props: { |
||||
|
dataContent: { |
||||
|
type: Object, |
||||
|
default: {} |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
methods: { |
||||
|
formatDate: function(val) { |
||||
|
return dateFormat(val) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
</style> |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue