|
|
@@ -107,7 +107,8 @@
|
|
|
class="admin-button-com"
|
|
|
:class="[form.categoryIdList.includes(item.id) ? '' : 'default']"
|
|
|
@click="selCategoryFn(item)"
|
|
|
- >{{ item.categoryName || '暂无' }}</button>
|
|
|
+ >{{ item.categoryName || '暂无' }}
|
|
|
+ </button>
|
|
|
</block>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -128,8 +129,16 @@
|
|
|
</div>
|
|
|
<!-- button -->
|
|
|
<div class="redeem-btn">
|
|
|
- <button class="admin-button-com default big" @click="modalCancel">取消</button>
|
|
|
- <button class="admin-button-com blue big" @click="saveFn">确定</button>
|
|
|
+ <button
|
|
|
+ class="admin-button-com default big"
|
|
|
+ @click="modalCancel">
|
|
|
+ 取消
|
|
|
+ </button>
|
|
|
+ <button
|
|
|
+ class="admin-button-com blue big"
|
|
|
+ @click="saveFn">
|
|
|
+ 确定
|
|
|
+ </button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -250,6 +259,7 @@ export default {
|
|
|
operateList(index) {
|
|
|
if (index === 0) {
|
|
|
this.modalCancel();
|
|
|
+ this.form.categoryIdList = this.operateData.categoryIdList
|
|
|
this.form.picIdList = [this.operateData.id];
|
|
|
this.settingModal = true;
|
|
|
} else if (index === 1) {
|