123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <view class="changyong-add">
- <textarea class="changyong-textarea" placeholder="输入您常用回复,请不要填写QQ、微信等联系方式或广告信息,否则系统将封禁您的账号"
- v-model="content"></textarea>
- <view class="changyong-down">
- <view class="u-flex u-row-center changyong-btn">
- <text @click="save">保存</text>
- </view>
- <view class="safe-area-inset-bottom"></view>
- </view>
- </view>
- </template>
- <script>
- import {phrase_update,phrase_create} from "../units/inquire.js"
- export default {
- data() {
- return {
- content: ""
- }
- },
- onLoad(options) {
- if (options.id) {
- this.id = options.id
- this.content = options.content
- }
- },
- methods: {
- save() {
- if (!this.content) {
- this.$u.toast("请输入您要添加的常用语")
- return
- }
- var that = this
- if (that.id) {
- phrase_update({
- id: that.id,
- content: that.content
- }).then((res) => {
- if (res.code == 1) {
- that.$u.toast(res.msg)
- uni.navigateBack()
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.emit('getconcent', this.concent)
- }
- })
- } else {
- phrase_create({
- content: that.content
- }).then((res) => {
- if (res.code == 1) {
- that.$u.toast(res.msg)
- uni.navigateBack()
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.emit('getconcent', this.concent)
- }
- })
- }
- },
- // save() {
- // uni.navigateBack()
- // }
- }
- }
- </script>
- <style lang="scss">
- .changyong-add {
- padding: 24rpx 32rpx;
- .changyong-down {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 99;
- background-color: #fff;
- box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.1);
- width: 750rpx;
- .changyong-btn {
- padding: 16rpx 0;
- text {
- width: 686rpx;
- line-height: 88rpx;
- background: #0C66C2;
- border-radius: 12rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- }
- .changyong-textarea {
- width: 100%;
- height: 500rpx;
- }
- }
- </style>
|