Files
quinn-wx/pages/myself/question/index.wxml
2022-12-13 16:53:09 +08:00

12 lines
466 B
Plaintext

<wxs module="_"> module.exports.contains = function(arr, target) { return arr.indexOf(target) > -1; } </wxs>
<t-collapse value="{{activeValues}}" bind:change="handleChange">
<t-collapse-panel
header="如何注册"
header-right-content="{{_.contains(activeValues, 0) ? '收起' : '展开'}}"
value="{{0}}"
expandIcon
>
你不要注册了,不给你注册,呸!
</t-collapse-panel>
</t-collapse>