uni-swipe-action swipe

I haven't responded yet and I haven't reported an error. I've been depressed for a long time. It turns out that there is a problem with the bound properties. . .

no response:

<uni-swipe-action>
  <block v-for="(goods, i) in cart" :key="i">
    <!-- uni-swipe-action-item can provide the effect of sliding operation to its child nodes . You need to specify the configuration information of the action button through the options attribute-->
    <uni-swipe-action-item :options="options" @click="swipeActionClickHandler(goods)">
      <my-goods :goods="goods" :show -radio="true" :show-num="true" @radio-change="radioChangeHandler" @num-change="numberChangeHandler"></my-goods>
    </uni-swipe-action-item>
  </block >
</uni-swipe-action>
 

Change to  : right-options="options"

Swipe left successfully

<uni-swipe-action>
		 <block v-for="(goods, i) in cart" :key="i">
		<uni-swipe-action-item :right-options="options" @click="swipeActionClickHandler(goods)">
			 <my-goods :goods="goods" :show-radio="true" :show-num="true" @radio-change="radioChangeHandler" @num-change="numberChangeHandler"></my-goods>
		</uni-swipe-action-item>
		  </block>
	</uni-swipe-action>
加上

data() {
            return {
                 options: [{
                      text: '删除', // 显示的文本内容
                      style: {
                        backgroundColor: '#C00000' // 按钮的背景颜色
                      }
                    }]
            };
        },

 

Guess you like

Origin blog.csdn.net/enhenglhm/article/details/121582200#comments_20859994