Thank you for the information provided!
First of all you do not have any single active IP interface, neither routed port nor Vlan-interface, therefore this switch can't reach not only your tftp server, it practically can't reach anything. What you need to do is to connect your PC to a switchport, for example Gig2/0/1, then make Gig2/0/1 access port in Vlan 1 for example:
system-view
interface Gig2/0/1
port link-mode bridge
port link-type access
port access vlan 1
then create a Vlan-interface in Vlan1 and assign it IP address 192.168.0.254 (if tftp server's IP is 192.168.0.100/24):
system-view
interface Vlan1
ip address 192.168.0.254 24
undo shutdown
Now exit to the user-view and try to ping TFTP server from the switch:
ping 192.168.0.100
If PC's firewall doesn't block incoming ICMP echo requests, you will see replies. Then you can proceed to TFTP file transfer.