123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <template>
- <view>
- <!--标题栏-->
- <bar-title bgColor="bg-white" isBack>
- <block slot="content">追加评价</block>
- </bar-title>
-
- <!--信息-->
- <view class="bg-white zaiui-content-view">
- <view class="cu-form-group">
- <textarea placeholder="评价内容"/>
- </view>
- <view class="zaiui-img-view">
- <view class="img-grid-view">
- <view class="grid col-5">
- <block v-for="(item,index) in imgList" :key="index">
- <view class="bg-img" @tap="ViewImage" :data-url="imgList[index]">
- <image class="image" :src="imgList[index]" mode="aspectFill"></image>
- <view class="cu-tag sm bg-red" @tap.stop="DelImg" :data-index="index">
- <text class='cuIcon-close'></text>
- </view>
- </view>
- </block>
- <view class="add-view" @tap="ChooseImage">
- <text class='cuIcon-add'></text>
- </view>
- </view>
- </view>
- <view class="text-sm text-gray text-right">500</view>
- </view>
- </view>
-
- <!--按钮-->
- <view class="bg-white zaiui-btn-view zaiui-foot-padding-bottom">
- <view class="flex flex-direction">
- <button class="cu-btn bg-red">提交评价</button>
- </view>
- </view>
-
- </view>
- </template>
- <script>
- import barTitle from '@/components/zaiui-common/basics/bar-title';
- import _tool from '@/static/zaiui/util/tools.js'; //工具函数
- export default {
- components: {
- barTitle
- },
- data() {
- return {
- bg_img: '/static/images/home/goods/1.png', imgList: [],
- }
- },
- onLoad() {
-
- },
- onReady() {
- _tool.setBarColor(true);
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 0
- });
- },
- methods: {
- ChooseImage() {
- uni.chooseImage({
- count: 4,
- sizeType: ['original', 'compressed'],
- sourceType: ['album'],
- success: (res) => {
- if (this.imgList.length != 0) {
- this.imgList = this.imgList.concat(res.tempFilePaths)
- } else {
- this.imgList = res.tempFilePaths
- }
- }
- });
- },
- ViewImage(e) {
- uni.previewImage({
- urls: this.imgList,
- current: e.currentTarget.dataset.url
- });
- },
- DelImg(e) {
- uni.showModal({
- title: '召唤师',
- content: '确定要删除这段回忆吗?',
- cancelText: '再看看',
- confirmText: '再见',
- success: res => {
- if (res.confirm) {
- this.imgList.splice(e.currentTarget.dataset.index, 1)
- }
- }
- })
- },
- }
- }
- </script>
- <style lang="scss">
- /* #ifdef APP-PLUS */
- @import "../../static/colorui/main.css";
- @import "../../static/colorui/icon.css";
- @import "../../static/zaiui/style/app.scss";
- /* #endif */
- .zaiui-img-view {
- position: relative;
- padding: 0 29.09upx;
- .img-grid-view {
- position: relative;
- padding-right: 72.72upx;
- padding-bottom: 18.18upx;
- .grid.col-5 {
- .bg-img {
- position: relative;
- border-radius: 3.63upx;
- margin-bottom: 27.27upx;
- margin-right: 27.27upx;
- height: 72.72upx;
- width: 72.72upx;
- .image {
- border-radius: 3.63upx;
- height: 72.72upx;
- width: 72.72upx;
- }
- .cu-tag {
- position: absolute;
- border-radius: 3.63upx;
- padding: 0 1.81upx;
- height: auto;
- right: 0;
- top: 0;
- text {
- position: relative;
- top: 1.81upx;
- }
- }
- }
- .add-view {
- border: 2upx solid #efeeee;
- margin-bottom: 27.27upx;
- border-radius: 3.63upx;
- line-height: 72.72upx;
- text-align: center;
- height: 72.72upx;
- width: 72.72upx;
- text {
- position: relative;
- font-size: 54.54upx;
- color: #e4e3e3;
- }
- }
- }
- }
- .text-right {
- position: absolute;
- right: 29.09upx;
- bottom: 36.36upx;
- }
- }
- .zaiui-btn-view {
- position: fixed;
- width: 100%;
- bottom: 0;
- .flex {
- padding: 18.18upx;
- }
- }
- </style>
|