@xm-zx/material 1.0.0 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -179,4 +179,4 @@ const handleToIndex = () => {
179
179
 
180
180
  - 本组件依赖 `uv-ui` 组件库
181
181
  - 需要在 uni-app Vue3 项目中使用
182
- - 需要外部实现 API 调用逻辑
182
+ - 需要外部实现 API 调用逻辑
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xm-zx/material",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "企业开户材料提交流程组件,适用于 uni-app Vue3 项目。",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -138,7 +138,6 @@ const accountOpeningInfo = ref({})
138
138
  const forceToSettlement = ref(false)
139
139
  const userClickedPay = ref(false)
140
140
  const userClickedSettlement = ref(false)
141
- </script>
142
141
 
143
142
  // 获取步骤图标
144
143
  const getStepIcon = (targetStep) => {
@@ -3,7 +3,7 @@
3
3
  <view class="payVerify-title">小额打款验证</view>
4
4
  <view class="payVerify-desc">平台会向企业提交的银行账户中转入一笔小额资金,收到后请金额将填入下方并提交。</view>
5
5
  <uv-input border="none" fontSize="48rpx" color="#000" type="digit" v-model="amount" :customStyle="inputStyle" />
6
- <view class="payVerify-tip">金额需>0</view>
6
+ <view class="payVerify-tip">金额需大于0</view>
7
7
  <view class="payVerify-btn" @click="submit">提交验证</view>
8
8
  </view>
9
9
  </template>