|
@@ -1,227 +1,368 @@
|
|
<template>
|
|
<template>
|
|
- <div class="adopt-list">
|
|
|
|
- <div class="select-wrap">
|
|
|
|
- <el-select class="select-item" v-model="areaVal" placeholder="全区" style="width: 116px">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in areaOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- <el-select class="select-item" v-model="typeVal" placeholder="全部品类" style="width: 116px">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in typeOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- <el-select class="select-item" v-model="ageVal" placeholder="树龄" style="width: 116px">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in ageOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- </div>
|
|
|
|
- <div class="select-wrap select-b">
|
|
|
|
- <el-select class="select-item" v-model="allVal" placeholder="综合评分" style="width: 116px">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in allOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- <el-select class="select-item" v-model="ecologyVal" placeholder="生态评分" style="width: 116px">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in ecologyOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- <el-select class="select-item" v-model="statusVal" placeholder="全部状态" style="width: 116px">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in statusOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div class="adopt-list" :class="{ 'has-btn': isManySetting }">
|
|
|
|
+ <div class="select-wrap">
|
|
|
|
+ <el-select class="select-item" v-model="areaVal" placeholder="全区" style="width: 116px">
|
|
|
|
+ <el-option v-for="item in areaOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
+ </el-select>
|
|
|
|
+ <el-select class="select-item" v-model="typeVal" placeholder="全部品类" style="width: 116px">
|
|
|
|
+ <el-option v-for="item in typeOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
+ </el-select>
|
|
|
|
+ <el-select class="select-item" v-model="ageVal" placeholder="树龄" style="width: 116px">
|
|
|
|
+ <el-option v-for="item in ageOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
+ </el-select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="select-wrap select-b">
|
|
|
|
+ <el-select class="select-item" v-model="allVal" placeholder="综合评分" style="width: 116px">
|
|
|
|
+ <el-option v-for="item in allOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
+ </el-select>
|
|
|
|
+ <el-select class="select-item" v-model="ecologyVal" placeholder="生态评分" style="width: 116px">
|
|
|
|
+ <el-option v-for="item in ecologyOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
+ </el-select>
|
|
|
|
+ <el-select class="select-item" v-model="statusVal" placeholder="全部状态" style="width: 116px">
|
|
|
|
+ <el-option v-for="item in statusOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
+ </el-select>
|
|
|
|
+ </div>
|
|
|
|
|
|
- <div class="list-wrap">
|
|
|
|
- <div class="list-item" v-for="(item, index) in 10" :key="index">
|
|
|
|
- <div class="tree-icon">
|
|
|
|
- <div class="tree-tag">未定价</div>
|
|
|
|
- <img class="tree-img" src="@/assets/images/foster-home/tree-item.png" alt="">
|
|
|
|
- <div class="tree-type-name-tag">白糖罂</div>
|
|
|
|
- </div>
|
|
|
|
- <div class="item-center">
|
|
|
|
- <div class="center-t">
|
|
|
|
- BTY-A25
|
|
|
|
- <span class="type-tag">综合:94分</span>
|
|
|
|
- <span class="type-tag">生态:92分</span>
|
|
|
|
- <span class="type-tag">树龄:5年</span>
|
|
|
|
- </div>
|
|
|
|
- <div class="center-item">
|
|
|
|
- 单价:<span>--元/斤</span>
|
|
|
|
- </div>
|
|
|
|
- <div class="center-item">
|
|
|
|
- 总认养斤数:<span>215斤</span>
|
|
|
|
|
|
+ <div class="many-setting">
|
|
|
|
+ 批量定价
|
|
|
|
+ <el-input-number
|
|
|
|
+ style="width: 230px"
|
|
|
|
+ placeholder="请输入价格"
|
|
|
|
+ class="number-input"
|
|
|
|
+ :controls="false"
|
|
|
|
+ v-model="unifyPrice"
|
|
|
|
+ :min="0"
|
|
|
|
+ @change="setManyPrice"
|
|
|
|
+ />
|
|
|
|
+ <span class="unit">元/斤</span>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="list-wrap">
|
|
|
|
+ <div class="list-item" v-for="(item, index) in displayedAdoptList" :key="index">
|
|
|
|
+ <div class="tree-icon">
|
|
|
|
+ <div class="tree-tag" v-show="item.status === 0">未定价</div>
|
|
|
|
+ <div class="tree-tag wait" v-show="item.status === 1">待认养</div>
|
|
|
|
+ <div class="tree-tag done" v-show="item.status === 2">已认养</div>
|
|
|
|
+ <img class="tree-img" src="@/assets/images/foster-home/tree-item.png" alt="" />
|
|
|
|
+ <div class="tree-type-name-tag">白糖罂</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item-center">
|
|
|
|
+ <div class="center-t">
|
|
|
|
+ BTY-A25
|
|
|
|
+ <span class="type-tag">综合:94分</span>
|
|
|
|
+ <span class="type-tag">生态:92分</span>
|
|
|
|
+ <span class="type-tag">树龄:5年</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="center-item" v-show="!isManySetting">单价:<span>--元/斤</span></div>
|
|
|
|
+ <div class="center-item has-input" v-show="isManySetting || item.settingPrice">
|
|
|
|
+ 单价: <el-input-number @change="settingSinglePrice" class="number-input" :controls="false" v-model="item.price" :min="0" />
|
|
|
|
+ <span class="unit">元/斤</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="center-item">总认养斤数:<span>215斤</span></div>
|
|
|
|
+ </div>
|
|
|
|
+ <div v-show="!isManySetting && !item.settingPrice" @click="toSettingSinglePrice(index)">
|
|
|
|
+ <img src="@/assets/images/common/edit-icon.png" alt="" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="small-btn-group" v-show="item.settingPrice">
|
|
|
|
+ <div class="btn cancel-btn">取消</div>
|
|
|
|
+ <div class="btn edit-btn">保存</div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <div>
|
|
|
|
- <img src="@/assets/images/common/edit-icon.png" alt="">
|
|
|
|
- </div>
|
|
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
|
|
+
|
|
|
|
+ <!-- 渐变主色按钮 -->
|
|
|
|
+ <div class="center-btn" v-show="!isManySetting" @click="manySetPrice">批量定价</div>
|
|
|
|
+ <!-- 渐变主色按钮 -->
|
|
|
|
+ <div class="btn-group" v-show="isManySetting">
|
|
|
|
+ <div class="btn cancel-btn" @click="saveManySetting(0)">取消</div>
|
|
|
|
+ <div class="btn edit-btn" @click="saveManySetting(1)">保存</div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
-import {onMounted, ref} from 'vue'
|
|
|
|
|
|
+import { onMounted, ref } from "vue";
|
|
|
|
|
|
-const areaVal = ref(0)
|
|
|
|
|
|
+const areaVal = ref(0);
|
|
const areaOptions = ref([
|
|
const areaOptions = ref([
|
|
- {label: "全区", value: 0},
|
|
|
|
- {label: "1区", value: 1},
|
|
|
|
- {label: "2区", value: 2},
|
|
|
|
-])
|
|
|
|
-const typeVal = ref(0)
|
|
|
|
|
|
+ { label: "全区", value: 0 },
|
|
|
|
+ { label: "1区", value: 1 },
|
|
|
|
+ { label: "2区", value: 2 },
|
|
|
|
+]);
|
|
|
|
+const typeVal = ref(0);
|
|
const typeOptions = ref([
|
|
const typeOptions = ref([
|
|
- {label: "全部品类", value: 0},
|
|
|
|
- {label: "白糖罂", value: 1},
|
|
|
|
- {label: "井岗红糯", value: 2},
|
|
|
|
-])
|
|
|
|
-const ageVal = ref(0)
|
|
|
|
|
|
+ { label: "全部品类", value: 0 },
|
|
|
|
+ { label: "白糖罂", value: 1 },
|
|
|
|
+ { label: "井岗红糯", value: 2 },
|
|
|
|
+]);
|
|
|
|
+const ageVal = ref(0);
|
|
const ageOptions = ref([
|
|
const ageOptions = ref([
|
|
- {label: "全部树龄", value: 0},
|
|
|
|
- {label: "0-10年", value: 1},
|
|
|
|
- {label: "10-20年", value: 2},
|
|
|
|
-])
|
|
|
|
-const allVal = ref(0)
|
|
|
|
|
|
+ { label: "全部树龄", value: 0 },
|
|
|
|
+ { label: "0-10年", value: 1 },
|
|
|
|
+ { label: "10-20年", value: 2 },
|
|
|
|
+]);
|
|
|
|
+const allVal = ref(0);
|
|
const allOptions = ref([
|
|
const allOptions = ref([
|
|
- {label: "全部评分", value: 0},
|
|
|
|
- {label: "0-10年", value: 1},
|
|
|
|
- {label: "10-20年", value: 2},
|
|
|
|
-])
|
|
|
|
-const ecologyVal = ref(0)
|
|
|
|
|
|
+ { label: "全部评分", value: 0 },
|
|
|
|
+ { label: "0-10年", value: 1 },
|
|
|
|
+ { label: "10-20年", value: 2 },
|
|
|
|
+]);
|
|
|
|
+const ecologyVal = ref(0);
|
|
const ecologyOptions = ref([
|
|
const ecologyOptions = ref([
|
|
- {label: "生态评分", value: 0},
|
|
|
|
- {label: "0-10年", value: 1},
|
|
|
|
- {label: "10-20年", value: 2},
|
|
|
|
-])
|
|
|
|
-const statusVal = ref(0)
|
|
|
|
|
|
+ { label: "生态评分", value: 0 },
|
|
|
|
+ { label: "0-10年", value: 1 },
|
|
|
|
+ { label: "10-20年", value: 2 },
|
|
|
|
+]);
|
|
|
|
+const statusVal = ref(0);
|
|
const statusOptions = ref([
|
|
const statusOptions = ref([
|
|
- {label: "全部状态", value: 0},
|
|
|
|
- {label: "0-10年", value: 1},
|
|
|
|
- {label: "10-20年", value: 2},
|
|
|
|
-])
|
|
|
|
-onMounted(()=>{
|
|
|
|
-})
|
|
|
|
|
|
+ { label: "全部状态", value: 0 },
|
|
|
|
+ { label: "0-10年", value: 1 },
|
|
|
|
+ { label: "10-20年", value: 2 },
|
|
|
|
+]);
|
|
|
|
+
|
|
|
|
+const adoptList = ref([
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 0, price: 16 },
|
|
|
|
+ { status: 1, price: 16 },
|
|
|
|
+ { status: 1, price: 16 },
|
|
|
|
+ { status: 2, price: 16 },
|
|
|
|
+ { status: 2, price: 16 },
|
|
|
|
+]);
|
|
|
|
+const displayedAdoptList = ref([...adoptList.value]); // 初始时显示完整列表
|
|
|
|
+onMounted(() => {});
|
|
|
|
+
|
|
|
|
+// 批量定价
|
|
|
|
+const unifyPrice = ref(null);
|
|
|
|
+const isManySetting = ref(false);
|
|
|
|
+function manySetPrice() {
|
|
|
|
+ isManySetting.value = true;
|
|
|
|
+ displayedAdoptList.value = adoptList.value.filter((item) => item.status === 0);
|
|
|
|
+}
|
|
|
|
+function saveManySetting(isToSave) {
|
|
|
|
+ isManySetting.value = false;
|
|
|
|
+ displayedAdoptList.value = [...adoptList.value]; // 显示完整列表
|
|
|
|
+ if (isToSave) {
|
|
|
|
+ // 保存
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function setManyPrice(v) {
|
|
|
|
+ displayedAdoptList.value.map(item => item.price = v)
|
|
|
|
+}
|
|
|
|
|
|
|
|
+// 设置单棵树单价
|
|
|
|
+
|
|
|
|
+function toSettingSinglePrice(i) {
|
|
|
|
+ console.log('tototot');
|
|
|
|
+ displayedAdoptList.value[i].settingPrice = true
|
|
|
|
+}
|
|
|
|
+function settingSinglePrice() {
|
|
|
|
+ console.log('sss');
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.adopt-list {
|
|
.adopt-list {
|
|
- .type-tag {
|
|
|
|
- color: #FFD489;
|
|
|
|
|
|
+ height: 100%;
|
|
|
|
+ overflow: auto;
|
|
|
|
+ &.has-btn {
|
|
|
|
+ height: calc(100% - 60px);
|
|
|
|
+ }
|
|
|
|
+ .type-tag {
|
|
|
|
+ color: #ffd489;
|
|
background: rgba(255, 212, 137, 0.06);
|
|
background: rgba(255, 212, 137, 0.06);
|
|
padding: 2px 4px;
|
|
padding: 2px 4px;
|
|
font-size: 10px;
|
|
font-size: 10px;
|
|
margin-left: 4px;
|
|
margin-left: 4px;
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
- .select-wrap {
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- ::v-deep {
|
|
|
|
- .el-select__wrapper {
|
|
|
|
- background: rgba(255, 212, 137, 0.06);
|
|
|
|
- box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
|
|
|
|
- font-size: 13px;
|
|
|
|
- .el-select__input {
|
|
|
|
- color: #FFD489;
|
|
|
|
|
|
+ .select-wrap {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ ::v-deep {
|
|
|
|
+ .el-select__wrapper {
|
|
|
|
+ background: rgba(255, 212, 137, 0.06);
|
|
|
|
+ box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
|
|
|
|
+ font-size: 13px;
|
|
|
|
+ .el-select__input {
|
|
|
|
+ color: #ffd489;
|
|
|
|
+ }
|
|
|
|
+ .el-select__placeholder {
|
|
|
|
+ color: #ffd489;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ .el-select__suffix {
|
|
|
|
+ color: #ffd489;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .select-item + .select-item {
|
|
|
|
+ margin-left: 5px;
|
|
}
|
|
}
|
|
- .el-select__placeholder {
|
|
|
|
- color: #FFD489;
|
|
|
|
- text-align: center;
|
|
|
|
|
|
+ }
|
|
|
|
+ .select-b {
|
|
|
|
+ margin-top: 8px;
|
|
|
|
+ }
|
|
|
|
+ .list-wrap {
|
|
|
|
+ padding: 12px 0;
|
|
|
|
+ .list-item {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ align-items: center;
|
|
|
|
+ background: rgba(255, 255, 255, 0.08);
|
|
|
|
+ padding: 8px 10px;
|
|
|
|
+ border-radius: 5px;
|
|
|
|
+ .tree-icon {
|
|
|
|
+ position: relative;
|
|
|
|
+ .tree-tag {
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: 0;
|
|
|
|
+ top: 0;
|
|
|
|
+ background: #0accbf;
|
|
|
|
+ border-radius: 5px 0 5px 0;
|
|
|
|
+ color: #fff;
|
|
|
|
+ padding: 1px 6px;
|
|
|
|
+ font-size: 10px;
|
|
|
|
+ &.wait {
|
|
|
|
+ background: #f0ac37;
|
|
|
|
+ }
|
|
|
|
+ &.done {
|
|
|
|
+ background: #757575;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .tree-type-name-tag {
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: 0;
|
|
|
|
+ bottom: 0;
|
|
|
|
+ background: rgba(0, 0, 0, 0.6);
|
|
|
|
+ border-radius: 0 5px 5px 0;
|
|
|
|
+ font-size: 10px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ text-align: center;
|
|
|
|
+ padding: 1px;
|
|
|
|
+ backdrop-filter: blur(2px);
|
|
|
|
+ }
|
|
|
|
+ .tree-img {
|
|
|
|
+ width: 63px;
|
|
|
|
+ height: 63px;
|
|
|
|
+ border-radius: 5px;
|
|
|
|
+ object-fit: cover;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .item-center {
|
|
|
|
+ flex: 1;
|
|
|
|
+ padding: 0 12px;
|
|
|
|
+ color: #fff;
|
|
|
|
+ .center-t {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ }
|
|
|
|
+ .center-item {
|
|
|
|
+ color: #6c6c6c;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ span {
|
|
|
|
+ color: #fff;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .has-input {
|
|
|
|
+ padding: 4px 0;
|
|
|
|
+ .unit {
|
|
|
|
+ padding-left: 5px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .small-btn-group {
|
|
|
|
+ display: flex;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- .el-select__suffix {
|
|
|
|
- color: #FFD489;
|
|
|
|
|
|
+ .list-item + .list-item {
|
|
|
|
+ margin-top: 8px;
|
|
}
|
|
}
|
|
- }
|
|
|
|
}
|
|
}
|
|
- .select-item + .select-item {
|
|
|
|
- margin-left: 5px;
|
|
|
|
|
|
+ .unit {
|
|
|
|
+ padding-left: 5px;
|
|
|
|
+ color: #fff;
|
|
|
|
+ }
|
|
|
|
+ .many-setting {
|
|
|
|
+ background: rgba(255, 212, 137, 0.08);
|
|
|
|
+ border: 1px solid rgba(255, 212, 137, 0.3);
|
|
|
|
+ border-radius: 6px;
|
|
|
|
+ color: #ffd489;
|
|
|
|
+ padding: 12px 8px;
|
|
|
|
+ margin-top: 12px;
|
|
}
|
|
}
|
|
- }
|
|
|
|
- .select-b {
|
|
|
|
- margin-top: 8px;
|
|
|
|
- }
|
|
|
|
- .list-wrap {
|
|
|
|
- padding: 12px 0;
|
|
|
|
- .list-item {
|
|
|
|
- display: flex;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- align-items: center;
|
|
|
|
- background: rgba(255, 255, 255, 0.08);
|
|
|
|
- padding: 8px 10px;
|
|
|
|
- border-radius: 5px;
|
|
|
|
- .tree-icon {
|
|
|
|
- position: relative;
|
|
|
|
- .tree-tag {
|
|
|
|
- position: absolute;
|
|
|
|
- left: 0;
|
|
|
|
- top: 0;
|
|
|
|
- background: #0ACCBF;
|
|
|
|
- border-radius: 5px 0 5px 0;
|
|
|
|
- color: #fff;
|
|
|
|
- padding: 1px 6px;
|
|
|
|
- font-size: 10px;
|
|
|
|
|
|
+ .number-input {
|
|
|
|
+ ::v-deep {
|
|
|
|
+ &.el-input-number {
|
|
|
|
+ width: 80px;
|
|
|
|
+ background: rgba(255, 212, 137, 0.08);
|
|
|
|
+ border: 1px solid #ffd489;
|
|
|
|
+ border-radius: 5px;
|
|
|
|
+ }
|
|
|
|
+ .el-input__wrapper {
|
|
|
|
+ background: transparent;
|
|
|
|
+ box-shadow: none;
|
|
|
|
+ }
|
|
|
|
+ .el-input-number.is-without-controls .el-input__wrapper {
|
|
|
|
+ padding: 0 8px;
|
|
|
|
+ }
|
|
|
|
+ .el-input__inner {
|
|
|
|
+ color: #ffd489;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- .tree-type-name-tag {
|
|
|
|
- position: absolute;
|
|
|
|
- left: 0;
|
|
|
|
- bottom: 0;
|
|
|
|
- background: rgba(0, 0, 0, 0.6);
|
|
|
|
- border-radius: 0 5px 5px 0;
|
|
|
|
- font-size: 10px;
|
|
|
|
- width: 100%;
|
|
|
|
- text-align: center;
|
|
|
|
- padding: 1px;
|
|
|
|
- backdrop-filter: blur(2px);
|
|
|
|
|
|
+ }
|
|
|
|
+ .center-btn {
|
|
|
|
+ position: absolute;
|
|
|
|
+ bottom: 64px;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translateX(-50%);
|
|
|
|
+ color: #000000;
|
|
|
|
+ border-radius: 20px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ padding: 7px 10px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ border: 1px solid #fff;
|
|
|
|
+ background: linear-gradient(180deg, #ffd887, #ed9e1e);
|
|
|
|
+ width: 194px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .btn-group {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: end;
|
|
|
|
+ position: absolute;
|
|
|
|
+ bottom: 0;
|
|
|
|
+ right: 0;
|
|
|
|
+ background: #232323;
|
|
|
|
+ width: 100%;
|
|
|
|
+ padding: 10px 12px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ border-radius: 0 0 8px 8px;
|
|
|
|
+ .btn {
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ padding: 12px 36px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ border: 1px solid #ffd489;
|
|
}
|
|
}
|
|
- .tree-img {
|
|
|
|
- width: 63px;
|
|
|
|
- height: 63px;
|
|
|
|
- border-radius: 5px;
|
|
|
|
- object-fit: cover;
|
|
|
|
|
|
+ .cancel-btn {
|
|
|
|
+ color: #ffd489;
|
|
}
|
|
}
|
|
- }
|
|
|
|
- .item-center {
|
|
|
|
- flex: 1;
|
|
|
|
- padding: 0 12px;
|
|
|
|
- color: #fff;
|
|
|
|
- .center-t {
|
|
|
|
- font-size: 14px;
|
|
|
|
|
|
+ .edit-btn {
|
|
|
|
+ background: #ffd489;
|
|
|
|
+ color: #000000;
|
|
}
|
|
}
|
|
- .center-item {
|
|
|
|
- color: #6C6C6C;
|
|
|
|
- font-size: 12px;
|
|
|
|
- span {
|
|
|
|
- color: #fff;
|
|
|
|
- }
|
|
|
|
|
|
+ .btn + .btn {
|
|
|
|
+ margin-left: 12px;
|
|
}
|
|
}
|
|
- }
|
|
|
|
- }
|
|
|
|
- .list-item + .list-item {
|
|
|
|
- margin-top: 8px;
|
|
|
|
}
|
|
}
|
|
- }
|
|
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|