Merge branch 'main' of http://10.10.14.176:3000/huanghai/YltProject
commit
ba8f3b89e1
@ -0,0 +1,24 @@
|
|||||||
|
import { View, Button } from '@tarojs/components';
|
||||||
|
|
||||||
|
import { test } from '@/services/labor-union';
|
||||||
|
|
||||||
|
|
||||||
|
export const LaborUnion: Taro.FC = () => {
|
||||||
|
|
||||||
|
const bindMemberHandle = async () => {
|
||||||
|
|
||||||
|
const res = await test(
|
||||||
|
{ xm: '张三', xb: '男', yw_id: 1 }
|
||||||
|
);
|
||||||
|
console.log(res);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<View >
|
||||||
|
<Button size='mini' onClick={bindMemberHandle}>按钮</Button>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
LaborUnion.config = {
|
||||||
|
navigationBarTitleText: '工会会员绑定',
|
||||||
|
};
|
@ -0,0 +1,7 @@
|
|||||||
|
mkdir lib
|
||||||
|
cd lib
|
||||||
|
del *.jar /q
|
||||||
|
cd ..
|
||||||
|
mvn -f pom.xml dependency:copy-dependencies -DoutputDirectory=lib
|
||||||
|
|
||||||
|
@echo 黄海完成了!
|
Loading…
Reference in new issue