Browse Source

修改企业资质名称回显问题

master
parent
commit
0402506b46
  1. 20
      App.vue
  2. 1
      pages.json
  3. 7
      pages/login.vue
  4. 7
      sub/enterprise/detail.vue
  5. 4
      sub/invite/addEnterprise.vue
  6. 29
      sub/invite/enterpriseIntroduce.vue
  7. 26
      sub/invite/index.vue
  8. 1
      sub/task/detail.vue
  9. 101
      uni_modules/uview-ui/components/u-textarea/u-textarea.vue
  10. 4
      utils/ruoyi.js

20
App.vue

@ -6,6 +6,26 @@ export default {
return {} return {}
}, },
async onLaunch(options) { async onLaunch(options) {
// const updateManager = uni.getUpdateManager()
// updateManager.onCheckForUpdate(function (res) {
// //
// console.log(res.hasUpdate)
// })
// updateManager.onUpdateReady(function (res) {
// uni.showModal({
// title: '',
// content: '',
// showCancel: false,
// confirmText: '',
// confirmColor: '#1890FF',
// success(res) {
// if (res.confirm) {
// // applyUpdate
// updateManager.applyUpdate()
// }
// }
// })
// })
await this.initApp() await this.initApp()
}, },
methods: { methods: {

1
pages.json

@ -194,6 +194,7 @@
"path": "invite/index", "path": "invite/index",
"style": { "style": {
"navigationBarTitleText": "我的企业", "navigationBarTitleText": "我的企业",
"enablePullDownRefresh": true,
"componentPlaceholder": { "componentPlaceholder": {
"u-modal": "view", "u-modal": "view",
"uni-easyinput": "view" "uni-easyinput": "view"

7
pages/login.vue

@ -102,16 +102,13 @@ export default {
return return
} }
if (user.userType) { if (user.userType == 2) {
switch (user.userType) {
case 2:
uni.reLaunch({ uni.reLaunch({
url: `/sub/invite/index` url: `/sub/invite/index`
}) })
break
}
return return
} }
// //
if (user.audit == null || user.audit == 1) { if (user.audit == null || user.audit == 1) {
// //

7
sub/enterprise/detail.vue

@ -93,7 +93,6 @@
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-flex" style="gap: 8px; align-items: center">
<text class="label">资质时限</text> <text class="label">资质时限</text>
<view> <view>
{{ $util.formatDate(prove.handleDate, 'YYYY/M/D') }} ~
{{ $util.formatDate(prove.expiryDate, 'YYYY/M/D') }} {{ $util.formatDate(prove.expiryDate, 'YYYY/M/D') }}
</view> </view>
</view> </view>
@ -200,7 +199,8 @@ export default {
'enterprises_type', 'enterprises_type',
'enterprises_area', 'enterprises_area',
'enterprises_status', 'enterprises_status',
'enterprise_qualification_status' 'enterprise_qualification_status',
'enterprise_qua'
].join(',') ].join(',')
}) })
this.dictMap = { this.dictMap = {
@ -229,7 +229,8 @@ export default {
this.$util.viewPosition({ this.$util.viewPosition({
lat: position[0], lat: position[0],
lng: position[1], lng: position[1],
name: enterprise.enterprisesName name: enterprise.enterprisesName,
addree: enterprise.address
}) })
}, },
postApi() { postApi() {

4
sub/invite/addEnterprise.vue

@ -287,9 +287,7 @@ export default {
} }
}) })
}, },
onShow() { onShow() {},
},
methods: { methods: {
proofName(v) { proofName(v) {
if (v.detail.value == '') return if (v.detail.value == '') return

29
sub/invite/enterpriseIntroduce.vue

@ -1,12 +1,33 @@
<template> <template>
<view class="view"> <view class="view">
<u--textarea <view
class=""
style="
background-color: #f9f9f9;
border: 1px solid #f1f1f4;
border-radius: 24rpx;
padding: 16rpx;
"
>
<uni-easyinput
type="textarea"
v-model="introduce" v-model="introduce"
placeholder="请输入..." placeholder="请输入..."
maxlength="500" placeholderStyle="font-size:28rpx"
count :maxlength="500"
:input-border="false"
:adjust-position="true"
:autoHeight="true" :autoHeight="true"
></u--textarea> cursorSpacing="32"
:styles="{
backgroundColor: 'transparent',
borderColor: 'none'
}"
></uni-easyinput>
<view style="color: #78829d; text-align: right">
{{ introduce.length }}/500
</view>
</view>
<cs-bottom-wrapper> <cs-bottom-wrapper>
<view class="operation"> <view class="operation">
<button class="btn green" @tap="submit">保存</button> <button class="btn green" @tap="submit">保存</button>

26
sub/invite/index.vue

@ -1,12 +1,5 @@
<template> <template>
<scroll-view <scroll-view class="view-container">
class="view-container"
direction="vertical"
:show-scrollbar="false"
@refresherrefresh="onRefresh"
:refresher-enabled="true"
:refresher-triggered="isRefreshing"
>
<view class="emty" v-if="list.length == 0"> <view class="emty" v-if="list.length == 0">
<image <image
src="/static/images/emty.png" src="/static/images/emty.png"
@ -15,7 +8,6 @@
></image> ></image>
<text>暂无数据</text> <text>暂无数据</text>
</view> </view>
<view <view
class="enterprise" class="enterprise"
v-for="enterprise in list" v-for="enterprise in list"
@ -95,7 +87,7 @@
</view> </view>
</view> </view>
<cs-bottom-wrapper> <cs-bottom-wrapper v-if="inviteId">
<view class="operation"> <view class="operation">
<button class="btn green" @tap="addEnterprise">新增企业</button> <button class="btn green" @tap="addEnterprise">新增企业</button>
</view> </view>
@ -112,7 +104,6 @@ export default {
inviteId: '', inviteId: '',
list: [], list: [],
dictMap: {}, dictMap: {},
isRefreshing: false,
share: { share: {
title: '企业变更管理', // title: '企业变更管理', //
path: `/sub/invite/index?inviteId=${this.$store.getters.userId}`, path: `/sub/invite/index?inviteId=${this.$store.getters.userId}`,
@ -133,14 +124,10 @@ export default {
onShareAppMessage() { onShareAppMessage() {
return this.share return this.share
}, },
methods: { onPullDownRefresh() {
onRefresh(e) {
this.isRefreshing = true
this.getList() this.getList()
setTimeout(() => {
this.isRefreshing = false
}, 1000)
}, },
methods: {
getList() { getList() {
uni.showLoading({ uni.showLoading({
title: '加载中...' title: '加载中...'
@ -148,6 +135,7 @@ export default {
vertifyName({ enterpriseUserId: this.$store.getters.userId }).then( vertifyName({ enterpriseUserId: this.$store.getters.userId }).then(
res => { res => {
this.list = res.data.list this.list = res.data.list
uni.stopPullDownRefresh()
uni.hideLoading() uni.hideLoading()
} }
) )
@ -197,12 +185,14 @@ export default {
padding: 0 24rpx; padding: 0 24rpx;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
height: calc(100vh - env(safe-area-inset-bottom)); position: relative;
padding-bottom: 13vh;
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; display: none;
} }
} }
.emty { .emty {
margin-top: 24rpx;
border-radius: 8px; border-radius: 8px;
height: 550rpx; height: 550rpx;
display: flex; display: flex;

1
sub/task/detail.vue

@ -376,6 +376,7 @@ export default {
taskId: this.detail.id taskId: this.detail.id
}) })
this.list.push(...data.list) this.list.push(...data.list)
uni.stopPullDownRefresh()
this.load = 'loadmore' this.load = 'loadmore'
if (this.list.length == data.total) { if (this.list.length == data.total) {
this.load = 'nomore' this.load = 'nomore'

101
uni_modules/uview-ui/components/u-textarea/u-textarea.vue

@ -3,7 +3,6 @@
<textarea <textarea
class="u-textarea__field" class="u-textarea__field"
:value="innerValue" :value="innerValue"
:style="{ height: $u.addUnit(height) }"
:placeholder="placeholder" :placeholder="placeholder"
:placeholder-style="$u.addStyle(placeholderStyle, 'string')" :placeholder-style="$u.addStyle(placeholderStyle, 'string')"
:placeholder-class="placeholderClass" :placeholder-class="placeholderClass"
@ -32,16 +31,17 @@
<text <text
class="u-textarea__count" class="u-textarea__count"
:style="{ :style="{
'background-color': disabled ? 'transparent' : '#fff', 'background-color': disabled ? 'transparent' : '#fff'
}" }"
v-if="count" v-if="count"
>{{ innerValue.length }}/{{ maxlength }}</text
> >
{{ innerValue.length }}/{{ maxlength }}
</text>
</view> </view>
</template> </template>
<script> <script>
import props from "./props.js"; import props from './props.js'
/** /**
* Textarea 文本域 * Textarea 文本域
* @description 文本域此组件满足了可能出现的表单信息补充编辑等实际逻辑的功能内置了字数校验等 * @description 文本域此组件满足了可能出现的表单信息补充编辑等实际逻辑的功能内置了字数校验等
@ -80,12 +80,12 @@ import props from "./props.js";
* @example <u--textarea v-model="value1" placeholder="请输入内容" ></u--textarea> * @example <u--textarea v-model="value1" placeholder="请输入内容" ></u--textarea>
*/ */
export default { export default {
name: "u-textarea", name: 'u-textarea',
mixins: [uni.$u.mpMixin, uni.$u.mixin, props], mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
data() { data() {
return { return {
// //
innerValue: "", innerValue: '',
// //
focused: false, focused: false,
// valuewatchimmediatevalue // valuewatchimmediatevalue
@ -100,51 +100,48 @@ export default {
value: { value: {
immediate: true, immediate: true,
handler(newVal, oldVal) { handler(newVal, oldVal) {
this.innerValue = newVal; this.innerValue = newVal
/* #ifdef H5 */ /* #ifdef H5 */
// H5valueinput@input // H5valueinput@input
if ( if (this.firstChange === false && this.changeFromInner === false) {
this.firstChange === false && this.valueChange()
this.changeFromInner === false
) {
this.valueChange();
} }
/* #endif */ /* #endif */
this.firstChange = false; this.firstChange = false
// changeFromInnerfalse // changeFromInnerfalse
this.changeFromInner = false; this.changeFromInner = false
}, }
}, }
}, },
computed: { computed: {
// //
textareaClass() { textareaClass() {
let classes = [], let classes = [],
{ border, disabled, shape } = this; { border, disabled, shape } = this
border === "surround" && border === 'surround' &&
(classes = classes.concat(["u-border", "u-textarea--radius"])); (classes = classes.concat(['u-border', 'u-textarea--radius']))
border === "bottom" && border === 'bottom' &&
(classes = classes.concat([ (classes = classes.concat([
"u-border-bottom", 'u-border-bottom',
"u-textarea--no-radius", 'u-textarea--no-radius'
])); ]))
disabled && classes.push("u-textarea--disabled"); disabled && classes.push('u-textarea--disabled')
return classes.join(" "); return classes.join(' ')
}, },
// //
textareaStyle() { textareaStyle() {
const style = {}; const style = {}
// #ifdef APP-NVUE // #ifdef APP-NVUE
// textareanvue // textareanvue
if (uni.$u.os() === "android") { if (uni.$u.os() === 'android') {
style.paddingTop = "6px"; style.paddingTop = '6px'
style.paddingLeft = "9px"; style.paddingLeft = '9px'
style.paddingBottom = "3px"; style.paddingBottom = '3px'
style.paddingRight = "6px"; style.paddingRight = '6px'
} }
// #endif // #endif
return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle)); return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))
}, }
}, },
methods: { methods: {
// propsref // propsref
@ -152,52 +149,52 @@ export default {
this.innerFormatter = e this.innerFormatter = e
}, },
onFocus(e) { onFocus(e) {
this.$emit("focus", e); this.$emit('focus', e)
}, },
onBlur(e) { onBlur(e) {
this.$emit("blur", e); this.$emit('blur', e)
// u-form // u-form
uni.$u.formValidate(this, "blur"); uni.$u.formValidate(this, 'blur')
}, },
onLinechange(e) { onLinechange(e) {
this.$emit("linechange", e); this.$emit('linechange', e)
}, },
onInput(e) { onInput(e) {
let { value = "" } = e.detail || {}; let { value = '' } = e.detail || {}
// //
const formatter = this.formatter || this.innerFormatter const formatter = this.formatter || this.innerFormatter
const formatValue = formatter(value) const formatValue = formatter(value)
// propsinnerValue$nextTick // propsinnerValue$nextTick
this.innerValue = value this.innerValue = value
this.$nextTick(() => { this.$nextTick(() => {
this.innerValue = formatValue; this.innerValue = formatValue
this.valueChange(); this.valueChange()
}) })
}, },
// //
valueChange() { valueChange() {
const value = this.innerValue; const value = this.innerValue
this.$nextTick(() => { this.$nextTick(() => {
this.$emit("input", value); this.$emit('input', value)
// value // value
this.changeFromInner = true; this.changeFromInner = true
this.$emit("change", value); this.$emit('change', value)
// u-form // u-form
uni.$u.formValidate(this, "change"); uni.$u.formValidate(this, 'change')
}); })
}, },
onConfirm(e) { onConfirm(e) {
this.$emit("confirm", e); this.$emit('confirm', e)
}, },
onKeyboardheightchange(e) { onKeyboardheightchange(e) {
this.$emit("keyboardheightchange", e); this.$emit('keyboardheightchange', e)
}, }
}, }
}; }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "../../libs/css/components.scss"; @import '../../libs/css/components.scss';
.u-textarea { .u-textarea {
border-radius: 4px; border-radius: 4px;

4
utils/ruoyi.js

@ -80,12 +80,14 @@ export function formatDate(date, format = 'YYYY-MM-DD HH:mm:ss') {
export function viewPosition({ export function viewPosition({
lat, lat,
lng, lng,
name = '' name = '',
address = ''
}) { }) {
uni.openLocation({ uni.openLocation({
latitude: Number(lat), latitude: Number(lat),
longitude: Number(lng), longitude: Number(lng),
name, name,
address,
fail: (err) => { fail: (err) => {
console.log(err); console.log(err);
} }

Loading…
Cancel
Save