Browse Source

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

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

22
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: {
@ -35,4 +55,4 @@ export default {
<style lang="scss"> <style lang="scss">
@import '@/uni_modules/windi-css-uniapp/index.scss'; @import '@/uni_modules/windi-css-uniapp/index.scss';
@import '@/static/scss/index.scss'; @import '@/static/scss/index.scss';
</style> </style>

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"

13
pages/login.vue

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

9
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() {
@ -369,4 +370,4 @@ export default {
color: #99a1b7; color: #99a1b7;
} }
} }
</style> </style>

44
sub/invite/addEnterprise.vue

@ -265,31 +265,29 @@ export default {
this.form.id = res.id this.form.id = res.id
this.init() this.init()
} }
// //
uni.$off('enterpriseIntroduce') uni.$off('enterpriseIntroduce')
uni.$off('enterpriseTag') uni.$off('enterpriseTag')
uni.$off('prove') uni.$off('prove')
//
uni.$on('enterpriseIntroduce', data => {
this.form.introduction = data.introduce
})
uni.$on('enterpriseTag', data => {
this.form.tags = data
})
uni.$on('prove', data => {
console.log('资质', this.prove)
console.log('资质返回', data)
if (this.form.id != '') {
this.getProve()
} else {
this.prove.push(data)
}
})
},
onShow() {
//
uni.$on('enterpriseIntroduce', data => {
this.form.introduction = data.introduce
})
uni.$on('enterpriseTag', data => {
this.form.tags = data
})
uni.$on('prove', data => {
console.log('资质', this.prove)
console.log('资质返回', data)
if (this.form.id != '') {
this.getProve()
} else {
this.prove.push(data)
}
})
}, },
onShow() {},
methods: { methods: {
proofName(v) { proofName(v) {
if (v.detail.value == '') return if (v.detail.value == '') return

35
sub/invite/enterpriseIntroduce.vue

@ -1,12 +1,33 @@
<template> <template>
<view class="view"> <view class="view">
<u--textarea <view
v-model="introduce" class=""
placeholder="请输入..." style="
maxlength="500" background-color: #f9f9f9;
count border: 1px solid #f1f1f4;
:autoHeight="true" border-radius: 24rpx;
></u--textarea> padding: 16rpx;
"
>
<uni-easyinput
type="textarea"
v-model="introduce"
placeholder="请输入..."
placeholderStyle="font-size:28rpx"
:maxlength="500"
:input-border="false"
:adjust-position="true"
:autoHeight="true"
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>

28
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
}, },
onPullDownRefresh() {
this.getList()
},
methods: { methods: {
onRefresh(e) {
this.isRefreshing = true
this.getList()
setTimeout(() => {
this.isRefreshing = false
}, 1000)
},
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'

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

@ -1,47 +1,47 @@
<template> <template>
<view class="u-textarea" :class="textareaClass" :style="[textareaStyle]"> <view class="u-textarea" :class="textareaClass" :style="[textareaStyle]">
<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" :disabled="disabled"
:disabled="disabled" :focus="focus"
:focus="focus" :autoHeight="autoHeight"
:autoHeight="autoHeight" :fixed="fixed"
:fixed="fixed" :cursorSpacing="cursorSpacing"
:cursorSpacing="cursorSpacing" :cursor="cursor"
:cursor="cursor" :showConfirmBar="showConfirmBar"
:showConfirmBar="showConfirmBar" :selectionStart="selectionStart"
:selectionStart="selectionStart" :selectionEnd="selectionEnd"
:selectionEnd="selectionEnd" :adjustPosition="adjustPosition"
:adjustPosition="adjustPosition" :disableDefaultPadding="disableDefaultPadding"
:disableDefaultPadding="disableDefaultPadding" :holdKeyboard="holdKeyboard"
:holdKeyboard="holdKeyboard" :maxlength="maxlength"
:maxlength="maxlength" :confirmType="confirmType"
:confirmType="confirmType" :ignoreCompositionEvent="ignoreCompositionEvent"
:ignoreCompositionEvent="ignoreCompositionEvent" @focus="onFocus"
@focus="onFocus" @blur="onBlur"
@blur="onBlur" @linechange="onLinechange"
@linechange="onLinechange" @input="onInput"
@input="onInput" @confirm="onConfirm"
@confirm="onConfirm" @keyboardheightchange="onKeyboardheightchange"
@keyboardheightchange="onKeyboardheightchange" ></textarea>
></textarea> <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,160 +80,157 @@ 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
firstChange: true, firstChange: true,
// value // value
changeFromInner: false, changeFromInner: false,
// //
innerFormatter: value => value innerFormatter: value => value
} }
}, },
watch: { watch: {
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 }
) { /* #endif */
this.valueChange(); this.firstChange = false
} // changeFromInnerfalse
/* #endif */ this.changeFromInner = false
this.firstChange = false; }
// changeFromInnerfalse }
this.changeFromInner = false; },
}, computed: {
}, //
}, textareaClass() {
computed: { let classes = [],
// { border, disabled, shape } = this
textareaClass() { border === 'surround' &&
let classes = [], (classes = classes.concat(['u-border', 'u-textarea--radius']))
{ border, disabled, shape } = this; border === 'bottom' &&
border === "surround" && (classes = classes.concat([
(classes = classes.concat(["u-border", "u-textarea--radius"])); 'u-border-bottom',
border === "bottom" && 'u-textarea--no-radius'
(classes = classes.concat([ ]))
"u-border-bottom", disabled && classes.push('u-textarea--disabled')
"u-textarea--no-radius", return classes.join(' ')
])); },
disabled && classes.push("u-textarea--disabled"); //
return classes.join(" "); textareaStyle() {
}, const style = {}
// // #ifdef APP-NVUE
textareaStyle() { // textareanvue
const style = {}; if (uni.$u.os() === 'android') {
// #ifdef APP-NVUE style.paddingTop = '6px'
// textareanvue style.paddingLeft = '9px'
if (uni.$u.os() === "android") { style.paddingBottom = '3px'
style.paddingTop = "6px"; style.paddingRight = '6px'
style.paddingLeft = "9px"; }
style.paddingBottom = "3px"; // #endif
style.paddingRight = "6px"; return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))
} }
// #endif },
return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle)); methods: {
}, // propsref
setFormatter(e) {
this.innerFormatter = e
},
onFocus(e) {
this.$emit('focus', e)
}, },
methods: { onBlur(e) {
// propsref this.$emit('blur', e)
setFormatter(e) { // u-form
this.innerFormatter = e uni.$u.formValidate(this, 'blur')
},
onFocus(e) {
this.$emit("focus", e);
},
onBlur(e) {
this.$emit("blur", e);
// u-form
uni.$u.formValidate(this, "blur");
},
onLinechange(e) {
this.$emit("linechange", e);
},
onInput(e) {
let { value = "" } = e.detail || {};
//
const formatter = this.formatter || this.innerFormatter
const formatValue = formatter(value)
// propsinnerValue$nextTick
this.innerValue = value
this.$nextTick(() => {
this.innerValue = formatValue;
this.valueChange();
})
},
//
valueChange() {
const value = this.innerValue;
this.$nextTick(() => {
this.$emit("input", value);
// value
this.changeFromInner = true;
this.$emit("change", value);
// u-form
uni.$u.formValidate(this, "change");
});
},
onConfirm(e) {
this.$emit("confirm", e);
},
onKeyboardheightchange(e) {
this.$emit("keyboardheightchange", e);
},
}, },
}; onLinechange(e) {
this.$emit('linechange', e)
},
onInput(e) {
let { value = '' } = e.detail || {}
//
const formatter = this.formatter || this.innerFormatter
const formatValue = formatter(value)
// propsinnerValue$nextTick
this.innerValue = value
this.$nextTick(() => {
this.innerValue = formatValue
this.valueChange()
})
},
//
valueChange() {
const value = this.innerValue
this.$nextTick(() => {
this.$emit('input', value)
// value
this.changeFromInner = true
this.$emit('change', value)
// u-form
uni.$u.formValidate(this, 'change')
})
},
onConfirm(e) {
this.$emit('confirm', e)
},
onKeyboardheightchange(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;
background-color: #fff; background-color: #fff;
position: relative; position: relative;
@include flex; @include flex;
flex: 1; flex: 1;
padding: 9px; padding: 9px;
&--radius { &--radius {
border-radius: 4px; border-radius: 4px;
} }
&--no-radius { &--no-radius {
border-radius: 0; border-radius: 0;
} }
&--disabled { &--disabled {
background-color: #f5f7fa; background-color: #f5f7fa;
} }
&__field { &__field {
flex: 1; flex: 1;
font-size: 15px; font-size: 15px;
color: $u-content-color; color: $u-content-color;
width: 100%; width: 100%;
} }
&__count { &__count {
position: absolute; position: absolute;
right: 5px; right: 5px;
bottom: 2px; bottom: 2px;
font-size: 12px; font-size: 12px;
color: $u-tips-color; color: $u-tips-color;
background-color: #ffffff; background-color: #ffffff;
padding: 1px 4px; padding: 1px 4px;
} }
} }
</style> </style>

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