分类样式修改

This commit is contained in:
HJ 2023-03-04 23:30:16 +08:00
parent 7d563ef954
commit ba289eb1bf
2 changed files with 166 additions and 170 deletions

View File

@ -1,166 +1,166 @@
<template> <template>
<view class="container"> <view class="container">
<input v-model="form.title" class="title-input" placeholder="标题" /> <input v-model="form.title" class="title-input" placeholder="标题" />
<textarea placeholder="说些什么叭..." :auto-height="true" maxlength="-1" v-model="form.content" <textarea placeholder="说些什么叭..." :auto-height="true" maxlength="-1" v-model="form.content"
class="content-display"></textarea> class="content-display"></textarea>
<!-- 上传图片 --> <!-- 上传图片 -->
<block v-if="form.type == 1"> <block v-if="form.type == 1">
<u-upload ref="uUpload" :size-type="['original']" name="Image" :max-count="4" :header="header" <u-upload ref="uUpload" :size-type="['original']" name="Image" :max-count="4" :header="header"
:action="uploadImgUrl" @on-uploaded="submit" :auto-upload="false"></u-upload> :action="uploadImgUrl" @on-uploaded="submit" :auto-upload="false"></u-upload>
</block> </block>
<!-- 分类 --> <!-- 分类 -->
<view @click="chooseClass" class="choose-item"> <view @click="chooseClass" class="choose-item">
<u-icon class="icon add-icon" name="file-text-fill" color="#999" size="40"></u-icon> <u-icon class="icon add-icon" name="file-text-fill" color="#999" size="40"></u-icon>
<text class="txt">{{ cateName || '选择帖子分类' }}</text> <text class="txt">{{ cateName || '选择帖子分类' }}</text>
<u-icon class="u-icon" name="arrow-right"></u-icon> <u-icon class="u-icon" name="arrow-right"></u-icon>
</view> </view>
<view class="button-style"> <view class="button-style">
<u-button v-if="form.type == 1" :custom-style="btnStyle" @click="uploadImg" shape="circle">发布</u-button> <u-button v-if="form.type == 1" :custom-style="btnStyle" @click="uploadImg" shape="circle">发布</u-button>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
btnStyle: { btnStyle: {
color: "#fff", color: "#fff",
backgroundColor: '#333333' backgroundColor: '#333333'
}, },
uploadImgUrl: this.$c.domain + 'common/upload', uploadImgUrl: this.$c.domain + 'common/upload',
form: { form: {
title: '', title: '',
type: 1, type: 1,
topicId: 2, topicId: 2,
discussId: '', discussId: '',
content: '', content: '',
media: [], media: [],
longitude: 0, longitude: 0,
latitude: 0, latitude: 0,
address: '', address: '',
cut: 0, //id cut: 0, //id
pay: '', pay: '',
}, },
cateName: '', cateName: '',
header: { header: {
token: uni.getStorageSync('token') token: uni.getStorageSync('token')
}, },
}; };
}, },
onLoad(options) { onLoad(options) {
if(!uni.getStorageSync("hasLogin")){ if (!uni.getStorageSync("hasLogin")) {
this.$u.toast('请先登录哦'); this.$u.toast('请先登录哦');
} }
}, },
methods: { methods: {
chooseClass() { chooseClass() {
uni.navigateTo({ uni.navigateTo({
url: "category" url: "category"
}) })
}, },
uploadImg() { uploadImg() {
if (!this.form.content) { if (!this.form.content) {
this.$u.toast('内容不能为空'); this.$u.toast('内容不能为空');
return; return;
} }
if (!this.form.title) { if (!this.form.title) {
this.$u.toast('标题不能为空'); this.$u.toast('标题不能为空');
return; return;
} }
uni.showLoading({ uni.showLoading({
mask: true, mask: true,
title: '发布中' title: '发布中'
}); });
this.$refs.uUpload.upload(); this.$refs.uUpload.upload();
}, },
submit(e) { submit(e) {
uni.showLoading({ uni.showLoading({
mask: true, mask: true,
title: '发布中' title: '发布中'
}); });
let mediaList = []; let mediaList = [];
e.forEach(function(item, index) { e.forEach(function(item, index) {
mediaList.push(item.response.result); mediaList.push(item.response.result);
}); });
this.form.media = mediaList; this.form.media = mediaList;
this.$H.post('post/addPost', this.form).then(res => { this.$H.post('post/addPost', this.form).then(res => {
if (res.code == 0) { if (res.code == 0) {
uni.redirectTo({ uni.redirectTo({
url: '/pages/post/post?id=' + res.result url: '/pages/post/post?id=' + res.result
}); });
} }
uni.hideLoading(); uni.hideLoading();
}); });
} }
} }
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.title-input { .title-input {
border-bottom: 1px solid #F5F5F5; border-bottom: 1px solid #F5F5F5;
margin: 20rpx 0; margin: 20rpx 0;
padding: 20rpx 0; padding: 20rpx 0;
} }
.content-display { .content-display {
width: 100%; width: 100%;
padding: 20rpx 0; padding: 20rpx 0;
min-height: 300rpx; min-height: 300rpx;
} }
.choose-item { .choose-item {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 20rpx; padding: 20rpx;
border-bottom: 1px solid #F5F5F5; border-bottom: 1px solid #F5F5F5;
&:last-child { &:last-child {
border: 0; border: 0;
} }
.txt { .txt {
margin-left: 20rpx; margin-left: 20rpx;
} }
.sw { .sw {
margin-left: 300rpx; margin-left: 300rpx;
} }
.inputStyle { .inputStyle {
margin-left: 60rpx; margin-left: 60rpx;
width: 400rpx; width: 400rpx;
} }
.radio { .radio {
margin-left: 320rpx; margin-left: 320rpx;
} }
.icon { .icon {
width: 40rpx; width: 40rpx;
height: 40rpx; height: 40rpx;
} }
.u-icon { .u-icon {
margin-left: auto; margin-left: auto;
color: #999; color: #999;
} }
.add-icon { .add-icon {
margin-left: 0; margin-left: 0;
} }
} }
.button-style { .button-style {
margin-top: 50rpx; margin-top: 50rpx;
color: #F4F4F5; color: #F4F4F5;
} }
</style> </style>

View File

@ -7,13 +7,9 @@ const shareH5Url = "https://www.linfeng.tech/#/"; //H5分享路径
// const domain = 'http://' + baseUrl + "/app/"; // const domain = 'http://' + baseUrl + "/app/";
//线上环境配置 //线上环境配置
<<<<<<< HEAD
const baseUrl = "wxapi.linfeng.tech"; const baseUrl = "wxapi.linfeng.tech";
const domain = 'https://' + baseUrl + "/app/"; const domain = 'https://' + baseUrl + "/app/";
=======
// const baseUrl = "";
// const domain = 'https://' + baseUrl + "/app/";
>>>>>>> 85ba2abf696189e458edd77880b587e2e8b9d91c